From 52864671abcebba306d4e73b90db00915ee334a5 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 20:42:46 -0300 Subject: [PATCH 01/16] Initia database and models setup --- backend/.env | 5 ++ backend/.env.example | 5 ++ backend/database/database.go | 47 +++++++++++++ backend/database/migrations/migration.go | 10 +++ backend/database/populate.go | 1 + backend/go.mod | 17 +++++ backend/go.sum | 86 ++++++++++++++++++++++++ backend/models/beer_model.go | 21 ++++++ 8 files changed, 192 insertions(+) create mode 100644 backend/.env create mode 100644 backend/.env.example create mode 100644 backend/database/database.go create mode 100644 backend/database/migrations/migration.go create mode 100644 backend/database/populate.go create mode 100644 backend/go.mod create mode 100644 backend/go.sum create mode 100644 backend/models/beer_model.go diff --git a/backend/.env b/backend/.env new file mode 100644 index 00000000..c883387e --- /dev/null +++ b/backend/.env @@ -0,0 +1,5 @@ +DB_USER=postgres +DB_PASSWORD=root +DB_HOST=localhost +DB_POST=5432 +DB_DATABASE=backend_beers \ No newline at end of file diff --git a/backend/.env.example b/backend/.env.example new file mode 100644 index 00000000..c883387e --- /dev/null +++ b/backend/.env.example @@ -0,0 +1,5 @@ +DB_USER=postgres +DB_PASSWORD=root +DB_HOST=localhost +DB_POST=5432 +DB_DATABASE=backend_beers \ No newline at end of file diff --git a/backend/database/database.go b/backend/database/database.go new file mode 100644 index 00000000..8343cec1 --- /dev/null +++ b/backend/database/database.go @@ -0,0 +1,47 @@ +package database + +import ( + "fmt" + "log" + "os" + "time" + + "github.com/joho/godotenv" + "github.com/ronanzindev/backend-test-two/database/migrations" + "gorm.io/driver/postgres" + "gorm.io/gorm" +) + +var db *gorm.DB + +func readEnvs(key string) string { + godotenv.Load(".env") + return os.Getenv(key) +} + +var ( + DB_USER string = readEnvs("DB_USER") + DB_PASSWORD string = readEnvs("DB_PASSWORD") + DB_HOST string = readEnvs("DB_HOST") + DB_DATABASE string = readEnvs("DB_DATABASE") + DB_POST string = readEnvs("DB_POST") +) + +func StartDB() { + url := fmt.Sprintf("host=%s user=%s password=%s dbname=%s port=%s sslmode=disable TimeZone=America/Sao_Paulo", + DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE, DB_POST) + database, err := gorm.Open(postgres.Open(url), &gorm.Config{SkipDefaultTransaction: true}) + if err != nil { + log.Fatal("error :", err) + } + db = database + config, _ := db.DB() + config.SetMaxIdleConns(10) + config.SetMaxOpenConns(10) + config.SetConnMaxLifetime(time.Hour) + migrations.RunMigrations(db) +} + +func GetDataBase() *gorm.DB { + return db +} diff --git a/backend/database/migrations/migration.go b/backend/database/migrations/migration.go new file mode 100644 index 00000000..03367e25 --- /dev/null +++ b/backend/database/migrations/migration.go @@ -0,0 +1,10 @@ +package migrations + +import ( + "github.com/ronanzindev/backend-test-two/models" + "gorm.io/gorm" +) + +func RunMigrations(db *gorm.DB) { + db.AutoMigrate(models.Beer{}) +} diff --git a/backend/database/populate.go b/backend/database/populate.go new file mode 100644 index 00000000..636bab89 --- /dev/null +++ b/backend/database/populate.go @@ -0,0 +1 @@ +package database diff --git a/backend/go.mod b/backend/go.mod new file mode 100644 index 00000000..d3c80d05 --- /dev/null +++ b/backend/go.mod @@ -0,0 +1,17 @@ +module github.com/ronanzindev/backend-test-two + +go 1.19 + +require ( + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect + github.com/jackc/pgx/v5 v5.2.0 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/joho/godotenv v1.5.1 // indirect + github.com/lib/pq v1.10.7 // indirect + golang.org/x/crypto v0.6.0 // indirect + golang.org/x/text v0.7.0 // indirect + gorm.io/driver/postgres v1.4.7 // indirect + gorm.io/gorm v1.24.5 // indirect +) diff --git a/backend/go.sum b/backend/go.sum new file mode 100644 index 00000000..acb16c0e --- /dev/null +++ b/backend/go.sum @@ -0,0 +1,86 @@ +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= +github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk= +github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= +github.com/jackc/pgx/v5 v5.2.0 h1:NdPpngX0Y6z6XDFKqmFQaE+bCtkqzvQIOt1wvBlAqs8= +github.com/jackc/pgx/v5 v5.2.0/go.mod h1:Ptn7zmohNsWEsdxRawMzk3gaKma2obW+NWTnKa0S4nk= +github.com/jackc/puddle/v2 v2.1.2/go.mod h1:2lpufsF5mRHO6SuZkm0fNYxM6SWHfvyFj62KwNzgels= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= +github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= +github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= +github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= +golang.org/x/crypto v0.6.0 h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc= +golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.3.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/postgres v1.4.7 h1:J06jXZCNq7Pdf7LIPn8tZn9LsWjd81BRSKveKNr0ZfA= +gorm.io/driver/postgres v1.4.7/go.mod h1:UJChCNLFKeBqQRE+HrkFUbKbq9idPXmTOk2u4Wok8S4= +gorm.io/gorm v1.24.2/go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA= +gorm.io/gorm v1.24.5 h1:g6OPREKqqlWq4kh/3MCQbZKImeB9e6Xgc4zD+JgNZGE= +gorm.io/gorm v1.24.5/go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA= diff --git a/backend/models/beer_model.go b/backend/models/beer_model.go new file mode 100644 index 00000000..679c752e --- /dev/null +++ b/backend/models/beer_model.go @@ -0,0 +1,21 @@ +package models + +import ( + "github.com/lib/pq" + "gorm.io/gorm" +) + +type Beer struct { + gorm.Model + Abv float64 `json:"abv" gorm:"type:float"` + Address string `json:"address"` + Category string `json:"category"` + City string `json:"city"` + Coordinates pq.Float64Array `json:"coordinates" gorm:"type:float[]"` + Country string `json:"country"` + Description string `json:"description"` + Ibu int `json:"ibu"` + Name string `json:"name" binding:"required"` + State string `json:"state"` + Website string `json:"website"` +} From 2b1716d7e4cf37fc9160f8de32cc91932fef7449 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 20:43:51 -0300 Subject: [PATCH 02/16] Populate database --- backend/database/populate.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/backend/database/populate.go b/backend/database/populate.go index 636bab89..bfa432be 100644 --- a/backend/database/populate.go +++ b/backend/database/populate.go @@ -1 +1,30 @@ package database + +import ( + "bytes" + "encoding/json" + "fmt" + "log" + "os" + + "github.com/ronanzindev/backend-test-two/models" +) + +func PopulateDB() { + db := GetDataBase() + var beers []models.Beer + err := db.Find(&beers).Error + if err != nil { + fmt.Println(err) + } + if len(beers) == 0 { + byteValue, _ := os.ReadFile("db.json") + dec := json.NewDecoder(bytes.NewReader(byteValue)) + dec.Decode(&beers) + err = db.CreateInBatches(&beers, 1000).Error + if err != nil { + log.Fatal(err) + } + + } +} From 1931618dc72d6c39d3d331c00339cddd126b455c Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 20:51:34 -0300 Subject: [PATCH 03/16] Error handling for controllers - Pagination --- backend/db.json | 1 + backend/go.mod | 17 ++++++++++++ backend/go.sum | 44 ++++++++++++++++++++++++++++++ backend/main.go | 1 + backend/server/routers/router.go | 1 + backend/server/server.go | 0 backend/utils/errors/rest_error.go | 25 +++++++++++++++++ backend/utils/paginate/paginate.go | 30 ++++++++++++++++++++ 8 files changed, 119 insertions(+) create mode 100644 backend/db.json create mode 100644 backend/main.go create mode 100644 backend/server/routers/router.go create mode 100644 backend/server/server.go create mode 100644 backend/utils/errors/rest_error.go create mode 100644 backend/utils/paginate/paginate.go diff --git a/backend/db.json b/backend/db.json new file mode 100644 index 00000000..f1d864cd --- /dev/null +++ b/backend/db.json @@ -0,0 +1 @@ +[{"abv":8.918797384901016,"address":"141 South Main Street","category":"British Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish.","ibu":104,"name":"Stone House Stout","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":2.8163389289395333,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":34,"name":"Klisch","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":3.1895369529300677,"address":"57 South Main Street","category":"North American Ale","city":"Moab","coordinates":[38.5725,-109.551],"country":"United States","ibu":44,"name":"Chestnut Brown Ale","state":"Utah"},{"abv":9.756979587974731,"address":"Porter Tun House","city":"Luton","coordinates":[52.1357,-0.468],"country":"United Kingdom","ibu":108,"name":"Ale","state":"Bedford"},{"abv":1.6456070848030202,"category":"North American Lager","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":70,"name":"Star Big Muddy Brown","state":"Iowa"},{"abv":5.6159248164555144,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":64,"name":"Zephyr Golden Ale","state":"Illinois"},{"abv":4.9000000954,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Wildcat is a popular priced, quality lager introduced in 1993. Conventional brewing processes are used to produce a quality mainstream lager using corn adjunct to deliver a light, dry flavour.","ibu":117,"name":"Labatt Wildcat","state":"Ontario"},{"abv":12.944867817715801,"address":"128 West Main Street","city":"West Dundee","coordinates":[42.0981,-88.2783],"country":"United States","ibu":112,"name":"Belgian Wit","state":"Illinois"},{"abv":12.685915352638062,"address":"3410 Sassafras Street","category":"North American Lager","city":"Pittsburgh","coordinates":[40.4616,-79.9653],"country":"United States","ibu":9,"name":"Black Jack Black and Tan","state":"Pennsylvania"},{"abv":9.37235740947118,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":52,"name":"Sasquatch Stout","state":"Arizona"},{"abv":10,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"We brewed THE VERMONSTER with 110 pounds of malt per barrel and jacked up the pour into a wide mouth thin glass goblet. For an amazing pairing get some Smoked Gouda from Taylor Farm Cheese and a friend!","ibu":103,"name":"The Vermonster","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":5.5,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"Proper Job is an authentic IPA brewed with Cornish spring water and malt made from a blend of malts including Cornish grown Maris Otter barley.","ibu":32,"name":"Proper Job","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":6.5,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":40,"name":"Cerise","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5,"address":"Cnr Turumaha and Herbert St","category":"Other Style","city":"Greymouth","coordinates":[-42.4505,171.207],"country":"New Zealand","description":"Monteith’s Summer Ale is a refreshingly different beer. The opportunity to rediscover some flavour highlights of beer styles enjoyed on summer days past, and bring them back to life.\n\n\nAt the end of last century, in England, Europe and the Americas and in New Zealand, there was still an adherence to brew with barley, wholesome grains, hops and other traditional brewing spices.\n\n\nMonteith’s Summer Ale is a bright gold beer with great body from four different malts. Spiced with a single hop variety and a touch of history - a little Rata honey. Subtle, but enough to make all the difference. The result is a truly refreshing herbal spiced beer brewed for the Summer Season — a splendid thirst quencher.\n\n\nMonteith’s Summer Ale enjoyed ice-cold with a simple range of fruits, perhaps refreshing wedge of orange or lime. Alternatively, match with summer salads and stir-frys to complement the light flavours.","ibu":116,"name":"Monteith's Summer Ale","website":"http://www.monteiths.com/nz/"},{"abv":4.3000001907,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Dark, smooth, delicious. Aromas of worn leather and cool autumn nights. Notes of sweet plum and toasted raisin, hints of coffee and cacao. Lingering tart and refreshing finish. Only available for a few short months. Not to be missed.","ibu":5,"name":"Bam Noire","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.1999998093,"category":"Other Style","country":"United States","description":"Made for Wedding","ibu":47,"name":"MonkeyBoy Ale"},{"abv":5,"address":"910 Division St","category":"German Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"An authentic example of a Bavarian Hefeweizen. “Hefe” means cloudy or yeasty and “weizen” means wheat. This beer is made with mostly wheat and uses a true Hefeweizen yeast that gives it a fruity, banana aroma with just a hint of cloves. The tart finish makes this the perfect summer beer.\n\n\nFood pairings: Almost anything goes well with Hefeweizen but it especially shines when paired with salads and omelets.\n\n\nOG: 12.0 Plato\n\nFG: 2.3 Plato\n\nIBUs: 13\n\nSRM: 3\n\n5.0% abv","ibu":23,"name":"Hefeweizen","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":8,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Maudite has a deep amber-red color with a rocky foam head and an appealing aroma of wild spices and floral hop notes. It is spicy, vinous, and deliciously complex with a crisp hop finish.\n\n\n\nThe robust maltiness and spiciness of our\n\namber-red ale is counterbalanced by an\n\nassertive hop finish, offering a distinctive\n\nflavor that is cognac-like in complexity.","ibu":35,"name":"Maudite","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.5,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A smooth, hoppy brown ale, full-bodied with caramel and chocolate malt flavors.","ibu":52,"name":"Ipswich Nut Brown","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":10,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":29,"name":"Lozen Boer Abt","state":"Oost-Vlaanderen"},{"abv":5.8000001907000005,"address":"621 Front Street","category":"German Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":26,"name":"Hefe-Weizen","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":1.4178982019394726,"address":"430 Old Jackson Highway","category":"North American Ale","city":"Victor","coordinates":[43.5984,-111.108],"country":"United States","ibu":2,"name":"Teton Ale","state":"Idaho","website":"http://www.grandtetonbrewing.com/"},{"abv":7.1999998093,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":9,"name":"Triple Moine","state":"Namur"},{"abv":4.011485319232053,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":45,"name":"Best Bitter","state":"California"},{"abv":2.3624640801390706,"address":"Rua Bahia, 5181","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":90,"name":"Eisenbahn Dourada","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":6.475147662524558,"address":"Rua Bahia, 5181","category":"North American Ale","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":36,"name":"Eisenbahn South American Pale Ale (S.A.P.A.)","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":8,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":36,"name":"Ultrablonde","state":"Hainaut"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":102,"name":"Old Foghorn 2002","state":"California"},{"abv":10.818407193561569,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":81,"name":"Jubel 2000","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":12.570316643721585,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":117,"name":"Alpine Glacier Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.9000000954,"address":"1265 Boston Avenue","category":"British Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":89,"name":"Left Hand Milk Stout","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":12.27439340977537,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":28,"name":"Lizard Lager","state":"Wisconsin"},{"abv":4.9499998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":86,"name":"Thunder Stout","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.659461499740902,"address":"700 North Milwaukee Avenue","category":"German Lager","city":"Wheeling","coordinates":[42.1511,-87.9144],"country":"United States","ibu":31,"name":"Schaumbergfest","state":"Illinois"},{"abv":9.309362192104416,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":58,"name":"5 Czars Imperial Stout","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":11.688131621265468,"address":"1800 North Clybourn Avenue","category":"German Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":82,"name":"Aviator Doppelbock","state":"Illinois"},{"abv":4.1999998093,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors Light is Coors Brewing Company's largest-selling brand and the fourth best-selling beer in the U.S. Introduced in 1978, Coors Light has been a favorite in delivering the ultimate in cold refreshment for more than 25 years. The simple, silver-toned can caught people's attention and the brew became nicknamed the \"Silver Bullet\" as sales climbed.","ibu":60,"name":"Coors Light","state":"Colorado","website":"http://www.coors.com"},{"abv":12.470656784787575,"city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":69,"name":"Lion Lev Export Lager"},{"abv":11.499558844166305,"address":"10-1 Ginza 7-chome, Chuo-ku","category":"North American Lager","city":"Tokyo","country":"Japan","ibu":57,"name":"Draft","state":"Kanto"},{"abv":8.623752237164135,"category":"Irish Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":72,"name":"Pau Hana Porter","state":"Hawaii"},{"abv":7.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":109,"name":"9th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.469156541131191,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":50,"name":"All-American Lager (discontinued)","state":"Nebraska"},{"abv":6.8000001907000005,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":30,"name":"MoJo India Pale Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.546739490876036,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":4,"name":"Alki Ale","state":"Washington"},{"abv":4.3000001907,"address":"611 North Pine","category":"German Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":43,"name":"Hefeweizen","state":"Washington"},{"abv":5.5,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":72,"name":"Green Valley Stone Mill Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.72587297857742,"address":"Kaiser-Ludwig-Platz 1","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":51,"name":"Kloster Dunkel","state":"Bayern"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":34,"name":"Creamy Dark","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":8.1000003815,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":6,"name":"Slaapmutske Triple Nightcap","state":"Oost-Vlaanderen"},{"abv":7.868928034286774,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":4,"name":"Sod Off, Baldrick","state":"Wisconsin"},{"abv":1.9089271071513725,"address":"40 Bowden Square","category":"German Lager","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":97,"name":"Double Ice Bock","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5,"address":"6-8 Romsey Industrial Estate","category":"North American Ale","city":"Romsey","coordinates":[50.9889,-1.4989],"country":"United Kingdom","ibu":38,"name":"Pride of Romsey IPA","state":"Hampshire"},{"abv":9.608715136343228,"address":"PO Box 1068","category":"North American Ale","city":"Belize City","coordinates":[17.497700000000002,-88.1867],"country":"Belize","ibu":4,"name":"Belikin Stout"},{"abv":5,"address":"Lenniksebaan 257","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","description":"A golden hue sets off the wonderful almost champagne like taste.","ibu":19,"name":"Gueuze Cuvée René","state":"Vlaams Brabant"},{"abv":7.1999998093,"address":"Vesterflledvej 100","category":"German Lager","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","ibu":79,"name":"Elephant"},{"abv":5.797854547011877,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":67,"name":"Big Horn Nut Brown Ale","state":"Minnesota"},{"abv":7,"address":"Bergstrae 2","category":"German Lager","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":26,"name":"Doppelbock Dunkel","state":"Bayern"},{"abv":4.3265563150332,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":102,"name":"Brown Ale","state":"California"},{"abv":2.3346922148232707,"address":"800 Vinial Street","category":"German Ale","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","ibu":110,"name":"Weizen","state":"Pennsylvania"},{"abv":5.6799998283,"address":"445 St.Paul Street","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":97,"name":"Dundee Kölsch-Style Ale","state":"New York"},{"abv":8.4099998474,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"A careful blending of select barrels of Flanders Reds and soured Belgian Triples aged in oak for up to 18 months. Then blended with fresh 25° Plato Blond Quadruppel. Hand-bottled, corked and then aged allowing lactic fermentation.","ibu":21,"name":"Cascade Cuvée Du Jongleur","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":6,"address":"4607 Wedgewood Blvd.","category":"Other Style","city":"Fredrick","coordinates":[39.3628,-77.4265],"country":"United States","description":"Our Fall Seasonal, Pumpkin Patch Ale, is the perfect beer for an autumn night. Pumpkin Patch pours a hazy orange with frothy, ivory colored head. The nose immediately conjures images of Grandma baking pumpkin pie with notes of nutmeg, cinnamon and ginger. Medium body and mild carbonation yield a spicy, pumpkin flavor - from the 300 lbs. of pumpkin we use to brew this unique beer.","ibu":52,"name":"Wild Goose Pumpkin Patch","state":"Maryland","website":"http://www.wildgoosebrewery.com/"},{"abv":9.501082297009383,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":63,"name":"Liquid Amber","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":9.3000001907,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"This strong alluring ale is two beers in one. Cracking open a fresh bottle unleashes hops and heat with more than 100 IBUs emanating from three hop varieties and sweet burn of 9.3% ABV. Cellaring the Flying Mouflan in a cool dark place at 50 degrees for a minimum of four months will mellow out the hops and wash away the heat. If you can resist temptation you will be rewarded with two memorable beers in a single bottle.","ibu":107,"name":"Flying Mouflan","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":7.338322068704927,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An English pale ale brewed by Otto's for the Mount Hill Tavern in Harrisburg Pennsylvania.","ibu":88,"name":"Mount Hill Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":14.871208697122208,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This light german style Helles Lager was brewed with a small percentage of beechwood smoked malt. Light and delicate east drinking lager","ibu":21,"name":"Smoked Helles Lager","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":5.5,"address":"75-5629 Kuakini Highway","category":"North American Lager","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":102,"name":"Longboard Lager","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":8,"address":"13351 Highway 101","category":"British Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":50,"name":"Eye of the Hawk","state":"California"},{"abv":6.1999998093,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"India Pale Ales are characterized by intense hop flavor and aroma accompanied by higher alcohol content. This style possesses medium maltiness and body while also being crisp and dry. Citrus flavors and aromas are moderate to very strong.\n\n\nAlaskan IPA is honey gold in color with a fruity, citrus aroma. An enticing blend of hops and our dry hopping process, in which hops are added directly to tanks during fermentation, give this brew a very intense, complex aromatic character with a refreshing hop finish.\n\n\nAlaskan IPA is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from more than 90 inches of rainfall each year.","ibu":54,"name":"Alaskan IPA","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Gold Coast Blonde is light in malt and hops and of course, golden in color. A great choice if you’re looking for true American beer flavor with a bit more malt than a light beer has to offer.","ibu":109,"name":"Gold Coast Blonde Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.9000000954,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Ale","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Norwegian Juleøl can be traced back more that 1000 years. The \"Gulatinglov\", one of the first Norwegian laws written in the 9th century, has a chapter on brewing beer for the midwinter celebration in January. The festivities were held to celebrate the Norse Gods; Odin, Frøy and Njord as well as the \"return\" of the sun.\n\nFurthermore, the tradition was adopted by the Vikings that brought Christianity to the country between 1000 and 1100. They moved the tradition to December in connection with the birth of Jesus. \n\nIn those days a farmer that did not set aside the best crop to produce the beer could lose his house to the king and the church. The law has been changed, but we promise you that we still use the very best of malt, yeast, hops, and pure Norwegian water to produce our Christmas beer.\n\n\nAass Juleøl has won most of the Norwegian Juleøl taste test conducted over time. For those of you that know what \"lutefisk\" is, Aass Juleøl is the perfect choice of beverage to this traditional Norwegian dish.","ibu":99,"name":"Juleøl","website":"http://www.aass.no"},{"abv":0.6588370185635872,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":61,"name":"Piper Down Scottish Ale","state":"Wisconsin"},{"abv":0.7906334592682496,"city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":30,"name":"Daze Scottish Ale","state":"Colorado"},{"abv":4.477849417484469,"address":"313 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":77,"name":"Hinterland Weizen Bier","state":"Wisconsin"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":82,"name":"Harvest Ale 1997","state":"Manchester"},{"abv":5,"category":"German Lager","city":"Böcs","country":"Hungary","ibu":28,"name":"Borsodi","website":"http://www.borsodisorgyar.hu/"},{"abv":5,"address":"540 Clover Lane","category":"German Lager","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A true German-style pilsener, fermented at 43 degrees and cold lagered for eight weeks.","ibu":40,"name":"Pilsener Bier","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5,"address":"Stoopkensstraat 46","city":"Hoegaarden","coordinates":[50.7778,4.8877],"country":"Belgium","description":"Hoegaarden, both unique and very refreshing, is an authentic Belgian wheat beer. In fact, it is the original “Wit” beer! First brewed in 1445, this top-fermented beer is refermented in the bottle or keg. Hoegaarden has a distinctive, cloudy yellow colour and a uniquely refined taste that balances a slight spiciness from a touch of coriander and orange peel.","ibu":6,"name":"Original White Ale","state":"Vlaams Brabant"},{"abv":6.907981028322936,"city":"San Rafael","coordinates":[37.9735,-122.531],"country":"United States","ibu":62,"name":"Ace Fermented Honey Cider","state":"California"},{"abv":8,"address":"Innerleithen EH44 6PW","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":114,"name":"Jacobite Ale","state":"Scotland"},{"abv":7.687938380542053,"address":"1809 Larkspur Landing Circle","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":85,"name":"Hoppy Holidaze","state":"California"},{"abv":12.580475865766042,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":44,"name":"Doubledecker Doppelbock","state":"Illinois"},{"abv":9,"address":"3115 Broad Street","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Deep mahogany and malty, layered hops, figs, raisins, sugar plums, cashews betwixt rum laden truffles.","ibu":14,"name":"Noel de Calabaza","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8,"address":"2051A Stoneman Circle","category":"Belgian and French Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":70,"name":"Imperial Cherry Saison","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A Russett colored brown ale with a thinner but well defined white head, grainy aromas with a touch of caramel flavors.","ibu":28,"name":"Bavarian Dark","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"DOUBLE BROWN 6°\n\nRed brown beer with a smooth gentle aroma, a full flavour and a slightly roasted aftertaste.","ibu":16,"name":"Tongerlo Dubbel Bruin","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":4.6999998093,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This wholesome combination of unfiltered wheat beer and real pomegranate juice makes a smooth refreshing beer with all the goodness of pomegranate. Look for a light body with a slight tart finish and golden straw color.","ibu":60,"name":"Pomegranate Wheat","state":"New York","website":"http://www.saranac.com"},{"abv":4.8000001907000005,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"A traditional European Pilsner light in body and color. This brew possesses mild hoppy flavors and a crisp clean finish. It is made with traditional European hops: Hallertau and Saaz.","ibu":33,"name":"Patriots Pilsner","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":10.352955762239178,"address":"One Busch Place","category":"German Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":26,"name":"Ziegenbock Amber","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"237 Joseph Campau Street","category":"North American Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Atwater Block beers are brewed using traditional German methods to create a distinctly fresh and flavorful character. Our classic Helles (German for Pale) is a crisp lager that is sure to please.","ibu":19,"name":"Hell","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.25,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"Our flagship beer, is amber to red in color with a medium body, slight caramel sweetness, and a balance more towards malt than hops. This beer is a true crowd-pleaser and keeps you coming back for more.","ibu":116,"name":"Manheim Red","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":5.0999999046,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Peroni its unique taste which is refreshing and dry, with a clear-cut, clean character and clarity, achieved through the exclusive brewing process. This ensures that the beer has both a fresh and natural quality. \n\n\nPositioned as ‘Italian style in a bottle’, from presentation to pouring the brand, Peroni has struck a chord with modern urbanites looking for cosmopolitan class. \n\n\nhttp://www.sabmiller.in/brands_peroni.html","ibu":63,"name":"Peroni Nastro Azzurro","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6,"address":"470 Prospect Village Dr.","category":"Other Style","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"We put close to a half a pound of Colorado honey per case in this wheat ale. The honey adds a sweetness and raises the alcohol content slightly. We use Mount hood and hallertau hops.","ibu":4,"name":"Stinger Wild Honey Wheat","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":4.9000000954,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Baron Schwarzbier is a classic German black lager, deep black with ruby and brown highlights. At first the Schwarzbier starts with a slight roasty nose and taste, followed by a faint chocolate-malty body with a very crisp, clean, lagered finish. Lagered for an average of 10-12 weeks to provide a very smooth, easy drinking Schwarzbier with full flavor provided by the dark malts. \n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":52,"name":"Baron Schwarzbier","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"British Ale","city":"Grimstad","country":"Norway","description":"We usually do not make compromises, but this is probably the exception. Norwegians are dead scared of dark beers. This is an attempt to show that there are gentle dark ales. As such Havre Stout is smooth and drinkable.","ibu":98,"name":"Havre Stout","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7.3000001907,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Hades is a Belgian-style strong golden ale brewed with a rare Belgian yeast strain that gives the beer a distinctive spicy flavor and aroma. Noticeable hops and medium malt character make it an extremely well-balanced, crisp ale.","ibu":99,"name":"Hades","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.4000000954,"address":"4120 Main Street","category":"German Lager","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"In strict accordance with the German purity law of 1516, we present to you this annually brewed festbier. Traditionally brewed in March and stored deep in the caves of Germany, this beer was brought to the masses to celebrate in October. It is a Vienna-style lager with a bit more malt and hops making a malty but balanced beverage. Copper-orange in color, it sports a toasty malt backbone that wonderfully compliments itself with many of our menu items.","ibu":24,"name":"Manayunk Lager","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":6.9000000954,"address":"Abbaye de Notre-Dame d'Orval","category":"Belgian and French Ale","city":"Villers-devant-Orval","country":"Belgium","ibu":98,"name":"Orval Trappist Ale","state":"Luxembourg"},{"abv":12,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":114,"name":"Scaldis / Bush Amber 12%","state":"Hainaut"},{"abv":6,"address":"404 South Third Street","category":"Irish Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":16,"name":"Highwater Porter","state":"Washington"},{"abv":14.909208920894228,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":22,"name":"Saison","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":112,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"North American Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":118,"name":"Oatmeal Stout","website":"http://www.youngs.co.uk"},{"abv":7.5,"address":"Krommekeerstraat 21","category":"German Lager","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":35,"name":"Urthel Vlaemse Bock","state":"West-Vlaanderen"},{"abv":5.5999999046,"address":"39176 Argonaut Way","category":"German Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":71,"name":"Hefeweizen","state":"California"},{"abv":5.4000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Historically Great Divide’s flagship beer, DPA’s record speaks for itself. By continually garnering national and international recognition, DPA has risen to become one of the most award-winning English-style pale ales in the world.\n\n\nSporting a brilliant copper hue and an assertive floral hop aroma, DPA is known for its smooth, malty middle, which is expertly complemented with hearty and complex hop flavor. DPA’s extraordinary hop finish is marked by crisp yet moderate hop bitterness. Its well-balanced profile makes DPA the perfect beer to accompany a hearty mountain picnic or a night on the town. For those who seek beers characterized by excitement, flavor and distinction, Denver Pale Ale is the natural choice.","ibu":97,"name":"Denver Pale Ale / DPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":0.4091001033587405,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":70,"name":"Vanilla","state":"Iowa"},{"abv":0.028790474521532827,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":94,"name":"Schlafly Kölsch","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.5,"address":"425 South Melrose Drive","category":"North American Lager","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":33,"name":"California Gold","state":"California"},{"abv":14.664429327091181,"address":"808 West Main Street","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":117,"name":"Chocolate Mint Stout","state":"Wisconsin"},{"abv":5.5,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":97,"name":"Winterfestival","state":"Bayern"},{"abv":5.6999998093,"address":"311 Tenth Street","category":"Other Style","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"This amber-colored, naturally pumpkin flavored ale is brewed only in the autumn and combines the flavor of vine-ripened pumpkin and spices. If you're in the mood for something unique and different to go along with the change of season, autumn is the perfect time to try Blue Moonâ„¢ Pumpkin Ale. Available mid-September through December.","ibu":74,"name":"Harvest Moon Pumpkin","state":"Colorado","website":"http://www.coors.com"},{"abv":5.0999999046,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":60,"name":"Apricot Wheat","state":"California"},{"abv":4.696724066499024,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":79,"name":"Melon Head Red","state":"North Carolina"},{"abv":7.377959323870602,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":92,"name":"Brown","state":"Texas"},{"abv":2.028455403729297,"address":"PO Box 1510","category":"North American Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Golden is a crisp, clean continental lager. Just four ingredients are all it takes.","ibu":16,"name":"Abita Golden","state":"Louisiana","website":"http://www.abita.com/"},{"abv":7.0999999046,"category":"North American Ale","city":"Eugene","country":"United States","ibu":97,"name":"Watershed IPA","state":"Or"},{"abv":7.1999998093,"address":"125B Roberts St","category":"British Ale","city":"Asheville","country":"United States","description":"English Style India Pale Ale, Maris Otter 2-row, Canadian Honey Malt and Belgian Crystal.\nCentennial, Kent Golding, and Cascade are added Five times during the process, including Dry Hopping.\n\nAroma: Earthy, Citrusy, and Resinous\nTasting/Flavor: Orangy and Sugary Apricots\nFinish: Malt Sweetness Balanced by Dry Hops","ibu":73,"name":"Iron Rail IPA","state":"NC","website":"http://wedgebrewing.com/"},{"abv":6.9000000954,"address":"715 Dunn Way","category":"North American Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"75% American Red Ale, 25% Ale Aged in American Oak Barrels. A brash American Red ale, dripping with citrusy Centennial hops, mellowed by a touch of oak. Aromas of toffee, citrus, crushed herbs, vanilla and fresh sawn oak. Complex!","ibu":10,"name":"Loakal Red","state":"California","website":"http://www.thebruery.com/"},{"abv":8.1999998093,"address":"407 Radam, F200","category":"Irish Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Our first barrel project is in kegs and on it’s way to beer bars around Austin. This is a bigger, bolder version of our mainstay Pecan Porter, with a richer finish. Two months on recently emptied Jack Daniels select barrels imparted a wonderful vanilla character from the oak and a pleasant amount of whiskey nose and flavor. All in all, I’m really proud of the hard work and effort put into this beer. Our first attempt at brewing it and our first attempt at managing barrels has paid off for everyone! Seek out this beer, but don’t put it off. There is a very limited number of kegs available and it might go fast…","ibu":67,"name":"(512) Whiskey Barrel Aged Double Pecan Porter","state":"Texas","website":"http://512brewing.com/"},{"abv":8.8999996185,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":95,"name":"Stone 09.09.09 Vertical Epic Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"Irish Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"Our brown porter is brewed with eight different malts to produce a smooth, well balanced, dark beer. A specially roasted barley provides a hint of chocolate. 5.6% ABV","ibu":81,"name":"Puget Brown Porter","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":6,"address":"2 Penhall Road","category":"Irish Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","description":"Whilst we wouldn’t recommend having this at breakfast with your bacon and eggs, our Coffee Beer is made with real coffee and has a caffeine hit to match. The natural flavours of the beans selected and hand roasted by our friends at the Union Coffee Roasters go well with the roast barley in the beer to give a silky-smooth drink with distinct chocolate and vanilla notes. \n\n\nOur first formulation of this beer was the first UK brewed beer to carry the Fairtrade logo, and, although we have reformulated it to create an even better blend of malt and roast coffee flavours, we can no longer get enough coffee in each bottle to qualify for Fairtrade status. However we are still using the same Faitrade Araba Bourbon beans from Rwanda’s Abuhuzamugambi Bakawa Co-operative.\n\n\nAt the Meantime Brewing Co we love flavour, so it wasn’t exactly difficult for us to see how the scents and aromas of coffee and barley would create a perfect match like just like mint and lamb, toffee and banana, peaches and cream, peanut butter and jam. Serve lightly chilled with as many chocolate truffles as your conscience allows.\n\n\nEach serving is equal to one cup of coffee","ibu":11,"name":"Meantime Coffee","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"This beer truly defies style. A portion of the fermentable sugars that make up this beer come from beet sugar. Real beet extract is used which gives the beer a beautiful light red color. It’s body is inviting and the taste is smooth. Hops are barely perceivable and are there to balance out the sweetness from the malt.","ibu":95,"name":"Wacko","state":"Vermont","website":"http://www.magichat.net/"},{"abv":6,"address":"Broughton","category":"North American Ale","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","description":"According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Mary Queen of Scots.\n\n \n\nThis golden coloured ale is brewed with a skilful blend of organically grown hops and malt, and pure Scottish water to the exacting standards required by Soil Association Certification Ltd. of the United Kingdom.\n\n\nThe end result is a light golden coloured, clean tasting beer with an excellent hop aroma and aftertaste.\n\n\nAt 6.0% ABV a premium ale for those who know and care about what they eat and drink.\n\n\nBorder Gold has won several awards, the most recent being a bronze medal in the International Brewing Awards in Munich 2005.","ibu":52,"name":"Border Gold Oranic Ale","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":5,"address":"112 Valley Road","category":"Other Style","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Hoffmann Hefeweizen is our newest offering and is a traditional German wheat beer made from 60% wheat malt and 40% barley malt. Wheat Ales such as this typically have banana and clove flavors but as Dave dislikes clove, he used a special yeast to strengthen the banana flavors. Hefeweizen is a nice, light, crisp summer beer that can be served with lemon or flavored syrups.","ibu":8,"name":"Climax Wheat Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":6.0999999046,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"To catch a bit of soft radiance in each bottle, we wait for fall colors to begin their bright and fleeting glow before brewing this wonderful ale under their autumn fire. Gentle amber malt blend smooth caramel notes, gently lapping against a shore of distant forgotten spice. A beer to sip, contemplate and enjoy.","ibu":27,"name":"Fuego del Otono","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":5.4000000954,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Octoberfest is a med-bodied, copper colored lager. It's rich, malty taste is subtly balanced by Saaz and Tettnang hops. The beer is aged slowly in the tradition of the Octoberfest beers of Munich.","ibu":72,"name":"Saranac Octoberfest","state":"New York","website":"http://www.saranac.com"},{"abv":4.3000001907,"address":"The Goods Store, Station Road","category":"North American Ale","city":"Carlow","coordinates":[52.7196,-6.846],"country":"Ireland","description":"Unlike the image, does not have the creamy head like many Irish stouts (Beamish, Guinness, Murphys) and as a result lighter on the stomach and nice with a meal. Very distinctive taste which may put off those not accustomed to drinking stouts.I would recommend it for the more adventurous pallette.\n\n\nRoast barley comes through in the taste.","ibu":84,"name":"O'Hara's Celtic Stout","website":"http://www.carlowbrewing.com"},{"abv":3.0999999046,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A traditional dry Irish Stout. Very Flavorful while low in calories and alcohol. An easy drinking “session beer” that has a nice caramel flavor an smooth finish.","ibu":37,"name":"Stud Service Stout","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Headbangerz Brown Ale is based on an English brown ale style. Its color is a demonic, dark reddish-brown. This beer is subtly sweet and punctuated with roasty, nutty flavors. The hops take a back seat and simply complement the malt character. Headbangerz Brown Ale is perfect for any Autumn outdoor activities or for relaxing on Summer evenings. Headbangerz Brown Ale is named in honor of Barbarian Chief's, Mike Hiller, hardworking former co-workers – heavy metal freaks and masters of metal fabrication.","ibu":36,"name":"Headbangerz Brown Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":5.6999998093,"category":"North American Ale","city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":10,"name":"Red Coat Ale","state":"Pennsylvania"},{"abv":6.8000001907000005,"address":"17070 Wright Plaza","category":"North American Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":49,"name":"Double IPA","state":"Nebraska"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":46,"name":"Old Stock Ale 2004","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":1.6865198949946092,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":25,"name":"Tip Top Pale Ale","state":"Nebraska"},{"abv":9.5,"address":"9368 Cabot Drive","category":"British Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":46,"name":"Wee Heavy","state":"California","website":"http://alesmith.com/"},{"abv":8.449049743369642,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":108,"name":"Hammerhead Ale","state":"Washington"},{"abv":6,"address":"The Eagle Maltings","category":"British Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":37,"name":"Bah Humbug","state":"Oxford"},{"abv":9.5,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":117,"name":"Nostradamus","state":"Namur"},{"abv":10,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The absolute top quality in the hierarchy of the St. Bernardus beers. It is also the beer with the highest alcohol content (10.50 %).\n\nA dark ivory coloured beer with a high fermentation. \n\n\nThe show piece of the brewery. Thanks to its soft and unconditionally genuine aroma, the beer can be smoothly tasted. The Abt has a very fruity flavour.","ibu":87,"name":"Abt 12","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":6.5,"address":"17070 Wright Plaza","category":"Belgian and French Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":58,"name":"Gueuze-Lambic","state":"Nebraska"},{"abv":12.189155550625443,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":59,"name":"India Pale Ale","state":"Nebraska"},{"abv":10.232222402352823,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":118,"name":"Drop Anchor Steam","state":"Wisconsin"},{"abv":12.053108034187245,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":114,"name":"Pre-Prohibition Lager","state":"Wisconsin"},{"abv":6.5999999046,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Big American Pale Ale with citrusy aroma- a hop lover’s cult beer and Three Floyds’ flagship beer Brewed with Cenntennial, Cascade & Warrior Hops","ibu":94,"name":"Alpha King Pale Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":2.551536404314285,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":55,"name":"Pilsner of El Salvador"},{"abv":9.117045200950905,"address":"Onuma","city":"Onuma","coordinates":[43.0646,141.347],"country":"Japan","ibu":63,"name":"Kolsch","state":"Hokkaido"},{"abv":1.9519496545021342,"address":"149 Steele Street","category":"North American Ale","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":108,"name":"Alligator Ale","state":"Colorado"},{"abv":7,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"11.2oz bottle. Slightly hazy golden color with a white head. Earthy clay, light molasses, and buttered cauliflower aromas. A crisp, frothy entry leads to a dryish medium body of figs, creamy caramel, and roasted carrot flavors. This St. Martin Blonde ale finishes with dried fruit and cashew fade.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":21,"name":"Abbaye de Saint-Martin Blonde","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.1999998093,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":112,"name":"Original","state":"Bayern"},{"abv":7.5,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":12,"name":"Urthel Tonicum Finiboldhus","state":"West-Vlaanderen"},{"abv":9.3227018588805,"address":"100 Industrial Way","category":"North American Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":32,"name":"Speciale Reserve Ale","state":"Maine","website":"http://www.allagash.com/"},{"abv":14.534000762187395,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":23,"name":"Toasted Oats & Molasses Brown Ale","state":"Wisconsin"},{"abv":13.579831027624248,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":111,"name":"Snake Chaser","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":6.756318129637782,"city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":45,"name":"Mankato Gold","state":"Minnesota"},{"abv":10.028725327253165,"category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2904,-76.6122],"country":"United States","description":"An 'American Farmhouse Ale.' It's a Belgian-inspired brew that uses a combination of European malts, hops from New New Zealand and the United States.. and a classic farmhouse yeast to achieve a fruity, yet spicy, melange of flavors and aroma.","ibu":50,"name":"Stateside Saison","state":"Maryland","website":"http://www.stillwaterales.com/"},{"abv":11.899999619,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This kick ass American Barley Wine is all about hops —Nugget, Chinook, Simcoe and Centennial. And, yeah, LoTs of ‘em. OK…there’s a substantial malt base on which these juicy Pacific NW hops lie down and do their dirty work. Maybe that’s too much info…","ibu":22,"name":"Big Slick American Barleywine Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":12.264542551220469,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"It is light with a bit of a citrus flavor. A pretty standard summer seasonal.","ibu":82,"name":"Brooklyn Summer Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":5.5,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Our pale ale is located toward the lighter side of the beer spectrum and we hope it will serve as a stepping stone into the more flavorful world of craft beer. Amber, caramel, fruity, hoppy and bitter.","ibu":96,"name":"Old Nick Pale Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":10.5,"address":"1601 Airport Road","city":"Ukiah","coordinates":[39.1326,-123.201],"country":"United States","ibu":27,"name":"Talon","state":"California"},{"abv":6,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":84,"name":"XX Bitter","state":"West-Vlaanderen"},{"abv":4.6999998093,"address":"515 Jefferson Street SE","category":"North American Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":93,"name":"Blind Pig Dunkelweizen","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":0.5117116925578102,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":17,"name":"Scarlet Fire IPA","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":2.325038188343005,"address":"Hoheneggstrae 41-51","category":"German Ale","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":86,"name":"Hefe Weizen Hell","state":"Baden-Wrttemberg"},{"abv":7.886520166260076,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":14,"name":"Bräustatt Gold","state":"Bayern"},{"abv":5,"address":"Melmerby Green Road","category":"Irish Ale","city":"Melmerby","coordinates":[54.1744,-1.4844],"country":"United Kingdom","ibu":106,"name":"Nightmare","state":"North Yorkshire"},{"abv":4.8000001907000005,"address":"500 Linden Street","category":"Other Style","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"SUNSHINE WHEAT is a great beer for trouncing thirst. Yet, it has a depth of character that inspires a quiet moment’s reflection. Sunshine Wheat swirls in the mouth with ripples of coriander and orange peel tartness, settling nicely into a tranquil sea of apple and honey tones. A filtered wheat beer, Sunshine offers a crisp, refreshing alternative to heavier-bodied heffe-weizens.","ibu":24,"name":"Sunshine Wheat","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":9.024617251302796,"category":"North American Lager","city":"Cincinnati","coordinates":[39.1361,-84.5031],"country":"United States","ibu":49,"name":"Black Honey Ale","state":"Ohio"},{"abv":3.031316532648125,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":87,"name":"Northwoods Lager","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":10.07952086148865,"address":"1535 Pearl Street","category":"North American Ale","city":"Boulder","coordinates":[40.019,-105.275],"country":"United States","ibu":0,"name":"Altmans Alt","state":"Colorado"},{"abv":8.184741850182359,"category":"German Ale","city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":31,"name":"Hefeweissbier","state":"Wisconsin"},{"abv":8.071566791353588,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":39,"name":"How Now","state":"Wisconsin"},{"abv":9.8999996185,"city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":11,"name":"Olde St.Nick","state":"Wisconsin"},{"abv":11.47523934266909,"address":"4301 West Wisconsin","category":"North American Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":16,"name":"Fox Light","state":"Wisconsin"},{"abv":4.9000000954,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":25,"name":"Michelob Honey Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.6999998093,"city":"Barranquilla","coordinates":[10.9639,-74.7964],"country":"Colombia","description":"La mejor cerveza de Colombia.","ibu":110,"name":"Club Colombia","website":"http://www.bavaria.com.co"},{"abv":14.614421550502039,"address":"2380 Larsen Drive","city":"Camino","coordinates":[38.7563,-120.679],"country":"United States","ibu":113,"name":"Best Bitter Ale","state":"California"},{"abv":7.769359915192297,"address":"2323 N Milwaukee Ave","category":"North American Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"An american blonde ale with bursts of fruity aroma and a dry finish.","ibu":63,"name":"Cross of Gold","state":"Illinois","website":"http://revbrew.com/"},{"abv":9.049049823054915,"address":"4301 Leary Way NW","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":50,"name":"Moss Bay Extra","state":"Washington"},{"abv":14.14842311313343,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":102,"name":"Hornet Tail IPA","state":"Florida"},{"abv":2.433590599749974,"category":"German Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":3,"name":"Canary Wheat","state":"South Dakota"},{"abv":10,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Brewed in the style of an American Double IPA in celebration of our 10th anniversary. This beer is golden in color, has medium to full body, intense hop bitterness, flavor and aroma. Ten additions of American hops are made throughout the brewing process.","ibu":18,"name":"Tenth Anniversery Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.8000001907000005,"address":"Römermauer 3","category":"German Lager","city":"Bitburg","coordinates":[49.974,6.5227],"country":"Germany","description":"Bitburger guarantees premium quality and enjoyment. Drawing on almost 200 years of expertise, the full-bodied, light, Bitburger Premium Beer is of course brewed according to the German Purity Law. Its popular, dry-finished, hoppy taste has secured Bitburger Premium Beer position as Germany's no. 1 draught beer.\n\n\n-http://www.bitburger.com/bitburger_beers/bitburger_premium_beer/product_bitburger_premium_beer/index.html","ibu":7,"name":"Premium Beer","state":"Rheinland-Pfalz"},{"abv":6.8499999046,"address":"24 North Pleasant Street","category":"German Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Brewed for August each year to celebrate our Anniversary this strong ales maltiness is balenced by a generous amount of hops","ibu":95,"name":"Olde #8 Anniversary Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":8.261541488239274,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":71,"name":"Aspen Meadow Black and Tan","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":2.1556204438603945,"address":"4301 West Wisconsin","category":"Irish Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":117,"name":"Titan Porter","state":"Wisconsin"},{"abv":7.375304495444146,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":45,"name":"Steam Beer","state":"New Jersey"},{"abv":12.61493619496336,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":7,"name":"Bamberger Schwärzla","state":"Bayern"},{"abv":0.20863749319452674,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":44,"name":"Bitter Woman From Hell Extra IPA","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":2.378658842518523,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":42,"name":"Shawano Gold","state":"Wisconsin"},{"abv":5.464259574233069,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":2,"name":"Autumnal Fire","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":2.9655863806370197,"address":"1327 North 14th Street","category":"Irish Ale","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":54,"name":"Port Washington Old Port Porter","state":"Wisconsin"},{"abv":6.0999999046,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":3,"name":"ESB","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":14,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","ibu":23,"name":"Samichlaus Bier 2003"},{"abv":3.837419291636045,"city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":12,"name":"Gingered Ale","state":"Wisconsin"},{"abv":14.459574207198706,"address":"3832 Hillside Drive","category":"German Lager","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":34,"name":"Frühlingzeit Maibock","state":"Wisconsin"},{"abv":5.4000000954,"address":"Chiswick Lane South","category":"Irish Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":31,"name":"London Porter","state":"London","website":"http://www.fullers.co.uk/"},{"abv":3.3811417644609243,"address":"35 E. First St.","category":"North American Ale","city":"Nederland","coordinates":[39.9619,-105.51],"country":"United States","ibu":118,"name":"Mister Hoppy IPA","state":"Colorado"},{"abv":5.5199999809,"address":"2015 Afond Court","category":"North American Ale","city":"Atlanta","coordinates":[33.9089,-84.3056],"country":"United States","ibu":71,"name":"Pale Ale","state":"Georgia"},{"abv":1.3729110500127795,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":5,"name":"Our Special Ale 1995","state":"California"},{"abv":5.656560148636212,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":90,"name":"Super Natural IPA","state":"Oregon"},{"abv":1.6811327696946765,"address":"2201 Sherman Street","category":"German Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":109,"name":"Doppelbock","state":"Wisconsin"},{"abv":8,"address":"PO Box 1661","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"St. Ides High Gravity Premium Malt Liquor is the brand of choice with the new generation of malt liquor drinkers. With its high quality, high strength flavor, St. Ides compliments the lifestyle of the fast paced, urban, edgy malt liquor drinker of today.","ibu":61,"name":"St Ides","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.4000000954,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Traditional Lager is an iconic American lager famous for its rich amber color and medium-bodied flavor. Brewed with roasted caramel malt for a subtle sweetness and a combination of cluster and cascade hops, this true original promises a well balanced taste with very distinct character. Its exceptional flavor and smooth finish is prevalently enjoyed by consumers with even the most discerning tastes. Our flagship brand, Yuengling Traditional Lager is an American favorite delivering consistent quality and refreshment that never disappoints. In fact, it's so widely known and unique in its class, in some areas you can ask for it simply by the name \"Lager.\";\"0","ibu":21,"name":"Yuengling Lager","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":12.468673457427105,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":45,"name":"Schlafly IPA","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":0.17457042715080195,"address":"275 East Kawili Street","city":"Hilo","coordinates":[19.706,-155.069],"country":"United States","ibu":6,"name":"Beer","state":"Hawaii"},{"abv":10.535552127158638,"category":"North American Lager","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":57,"name":"Poi Dog Wheat","state":"Hawaii"},{"abv":4.9000000954,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"The lightest of FiftyFifty's ales, Base Camp is a thirst quenching delight. Pale straw to light gold in color, this beer has a mild malt flavor combined with light bitterness and hop flavor. This beer finishes dry and is very light and refreshing on the palate. Base Camp is a \"session beer\", meaning you can easily toss back a few in one sitting. So go ahead, pull up a chair and camp out for awhile.","ibu":37,"name":"Base Camp Golden Ale","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":8.274490433597578,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Wheaten Ale","state":"California"},{"abv":0.9117507615685061,"category":"North American Ale","city":"Olathe","coordinates":[38.8814,-94.8191],"country":"United States","ibu":57,"name":"Tornado Ale","state":"Kansas"},{"abv":7.718608767353193,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":51,"name":"Klassic","state":"California"},{"abv":11.457681133956088,"city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":115,"name":"Blacksmith Bitter Ale","state":"Illinois"},{"abv":10.066152317153131,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":5,"name":"Panther Ale","state":"Illinois"},{"abv":11.504905191185822,"address":"12 Old Charlotte Highway","category":"British Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A style of Pale Ale, Black Mountain Bitter will be lightly hopped with traditional British hop varieties to balance the malt sweetness yet encourage it to tend toward the dry side. We recently received our organic certification from Clemson University after undergoing a rigid inspection and two-month compliance process. Although this represents a big step for Highland, the idea of an all organic product is consistent with our corporate ethos and embrace of natural traditional brewing methods.","ibu":29,"name":"Black Mountain Bitter","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":5.882963736180541,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":48,"name":"HopWhore Imperial India Pale Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.1999998093,"address":"229-255 Old Melbourne Road","category":"North American Lager","city":"Little River","coordinates":[-37.968,144.525],"country":"Australia","description":"King Lager is brewed to an all Australian full strength formula in Germany, by the Giessener Brauhaus who have over 100 years of brewing knowledge. Made 100% naturally, King Lager complies with the strict German Purity Law of 1516 resulting in a superior tasting lager of world standing.\n\n\nOnly the highest quality barley malt, hops, water and yeast, have been combined to give King Lager its unique malt character and crisp, distinctive taste.\n\n\nThe sophisticated King Lager packaging reflects the quality of this exceptional, full flavoured beer. The sleek, contoured bottle, stylish 4 pack design and premium labelling makes this lager stand out amongst the best in any environment. \n\n\nKing Lager is full strength with 5.2% alc/vol, 20 beers to a case and 375ml of classic, crisp, clean beer in every bottle.\n\n\nMake your move now to King Lager – it’s world class","ibu":45,"name":"King Lager","state":"Victoria","website":"http://www.australianbrewingcorporation.com/"},{"abv":10.5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"Gulden Draak is a beer in a class of its own. It is a beer that is rich and glowing, so full of its very own characteristic flavour, that it reminds some who try it of chocolate and others of coffee. In 1998 Gulden Draak was crowned “best beer in the world” by the American Tasting Institute! This beer has won many other awards too. Gulden Draak is named for the golden statue at the top of the clock tower of the Belgian city of Gent. The statue was originally given to the city of Constantinople by the Norse King Sigrid Magnusson in 1111, during the crusades; hence the form of a Viking ship that the beast was given. During a later crusade, Boudewijn IX (Count of Flanders and Emperor of Constantinople) took it back to Flanders with him because it was so beautiful. In 1382, the cities of Brugge and Gent did battle for the statue. Gent won.","ibu":33,"name":"Gulden Draak","state":"Oost-Vlaanderen"},{"abv":14.25691335147531,"address":"6901 Konica Drive","category":"German Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Battlefield Bock is a smooth and creamy Bavarian Style Bock Lager. It is brewed with our proprietary blend of Bavarian Dark Roasted Malts giving it a distinct taste with hints of coffee and chocolate. We add Noble Czech Saaz Hops to balance the flavor of this rich full bodied lager. Battlefield Bock is slow cold aged for a minimum of 8 weeks.","ibu":49,"name":"Battlefield Bock","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":4.8000001907000005,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Half-e-Weizen (formerly Mo Ale), was inspired by, and dedicated to, Mo and Dutch Niemi, real people inspiring a real product. Mo was a restaurateur and raconteur whose clam chowder is world-famous; Dutch a leader by example for coastal fisherman. Together their spirit indelibly shapes the daily lives of the Newport, OR waterfront.\n\n\nHalf-e-Weizen is a refreshing, unfiltered fusion of wheat and Northwest Harrington malts, coriander, ginger, and Saaz hops in the Belgium style. Half-e-Weizen is available in the classic 22-ounce bottle and on draft.","ibu":117,"name":"Half-E-Weizen","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"Other Style","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Our Holiday beer is made with real pumpkins, cloves, ginger, all-spice, nutmeg and cinnamon. This light copper colored winter ale will tantalize your taste buds. Pumkin pie in a glass!","ibu":113,"name":"Pumpkin Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":1.9582597784335987,"address":"30 Germania Street","category":"German Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Unfiltered wheat ale, fruity, bright, with a crisp flavor of wheat. Samuel Adams® Hefeweizen beer is a traditional spin on a classic American craft brewing style. The brewers of Samuel Adams® used both malted and unmalted wheat, and two row Pale barley for a clean malty, cereal note. This bright, fruity wheat ale is unfiltered, retaining a natural haze from malt proteins, crisp, bright flavors of wheat, and fresh, fruity ester complexity from our proprietary ale yeast. Accentuated with Noble Spalt-Spalter hops, Samuel Adams® Hefeweizen has an elegant and pleasant bitterness, finishing smooth and clean.","ibu":111,"name":"Samuel Adams Hefeweizen","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":10.210780206959992,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":76,"name":"Summer Bright Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.1999998093,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"For those who enjoy a clean, crisp, refreshing beer this medium copper colored brew is perfect. With its low level of hop bitterness and slightly sweet flavor it is one of our lightest ales. We use the lightest grains with Kent Goldings and Liberty hops. This beer is an excellent choice for the not so brave.","ibu":110,"name":"Golden Treasure","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":6.9000000954,"address":"Heitzerstrae 2","category":"German Lager","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":31,"name":"Asam-Bock","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":5.1999998093,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":88,"name":"Ivanhoe","state":"Oxford"},{"abv":1.9565838646447564,"address":"Ellhofer Strae 2","category":"German Lager","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":72,"name":"Festbier","state":"Bayern"},{"abv":8,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":59,"name":"Super"},{"abv":14.917236952602535,"address":"701 West Glendale Avenue","category":"North American Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":5,"name":"Pale Lager","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":11.273688539230571,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":79,"name":"Premium Pilsener","state":"Bayern"},{"abv":9,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":105,"name":"Urthel Hibernius Quentum Ale","state":"West-Vlaanderen"},{"abv":7.236821895852785,"address":"1327 North 14th Street","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","description":"0","ibu":86,"name":"Triple \\\"H\\\";\"4","state":"Wisconsin"},{"abv":6.1999998093,"address":"2401 Blake St.","category":"German Lager","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","ibu":11,"name":"Heller Hound Bock Beer","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":7,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Our Islander IPA is a powerful West Coast IPA. This beer bites back with an intense hoppy zing and high alcohol content. The Islander IPA is dry hopped with tons of Centennial & Chinook hops and its fruity aroma will win your approval.","ibu":30,"name":"Island Pale Ale (IPA)","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":6.4000000954,"address":"River Street, P.O. Box 276","category":"Irish Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Benchwarmer\" is a very smooth Porter brewed in accordance with the original \"high gravity\" porters of early London. More than 4% chocolate malt, which is the most similar to the brown malts of the early 1700’s, gives \"Benchwarmer\" its dry coffee-like finish. It is fermented with the Ringwood yeast which is an excellent yeast for the brewing of porters. The widely accepted theory of how porter got its name is that it was a very popular beer among the porters who hauled produce and goods around the marketplace of early industrialized London.","ibu":32,"name":"Benchwarmer Porter","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":5.1999998093,"category":"British Ale","country":"United Kingdom","ibu":52,"name":"Wells Bombardier English Bitter","website":"http://www.bombardier.co.uk/bombardier"},{"abv":8,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This Belgian beer is brewed in the style of the Trappist Monks. Belgian Candi Sugar, Pilsen, Aromatic and Caramunich malts are balance by E. Kent Goldings, Mt. Hood and Saaz hops to construct a \"Big Beer\". Traditional White Beer Yeast is used to make this beer have a large mouth-feel and lingering spice notes in the finish.","ibu":69,"name":"Dead Monk Abbey Ale","state":"Michigan"},{"abv":4.5,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":4,"name":"Gold Rush","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":9.055212644030199,"address":"127 South Grove Avenue","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":45,"name":"Vanilla Creme Ale","state":"Illinois"},{"abv":0.8092934581835709,"category":"Other Style","city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":16,"name":"Red Raspberry","state":"Colorado"},{"abv":6.3194120936549805,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":2,"name":"Bandit IPA","state":"Iowa"},{"abv":4.9000000954,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Our light copper pale ale has a delicate malt attribute balanced by an aggressive hop flavor and aroma. Many American micros have developed their own version of this classic English style beer. Our brewers anticipate that you will enjoy their variation. \n\nHikers on the Appalachian Trail are considered \"purist hikers\" if they cover every inch of the trail during the hike. Our brewers refuse to compromise the quality of our products with the \"purist hiker\" in mind.","ibu":5,"name":"Purist Pale Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.1999998093,"address":"Tvaika iela 44","city":"Rga","country":"Latvia","ibu":102,"name":"Luksusa"},{"abv":6.8000001907000005,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Traditionally India Pale Ales, the hoppiest of all pales, were brewed with more alcohol and large quantities of hops in order to survive the lengthy ocean journey from the U.K. to India. Unlike our brewing forefathers, Great Divide enjoys the modern benefits of refrigeration and we don’t have any plans to ship Titan IPA to India. Instead, we brew Titan IPA for hop disciples – independent beer drinkers seeking out robust, flavorful beers characterized by their abundance of hops flavor, aroma and bitterness. As a big, aggressively hopped India Pale Ale, Titan IPA fills this bill – beginning with piney hop aromas and citrus hop flavors, and finishing with a rich, malty sweetness that is carefully balanced with crisp hop bitterness.","ibu":68,"name":"Titan IPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.1999998093,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","description":"OUR FLAGSHIP BEER, the one for which we're known throughout the Puget Sound. Columbus hops impart intense bitterness with flavors of grapefruit and a hint of cedar.","ibu":47,"name":"IPA","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":4.6999998093,"address":"1253 Johnston Street","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":64,"name":"Marina Light Lager","state":"British Columbia"},{"abv":11.313224681874143,"address":"Chemin des Buissons 8","city":"Saignelgier","coordinates":[47.2543,7.0026],"country":"Switzerland","ibu":62,"name":"Cuvée du 7ème"},{"abv":6.4000000954,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":66,"name":"Special London Ale","website":"http://www.youngs.co.uk"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"The latest addition to Baltimore's own Clipper City Brewing Company - Mutiny Fleet is their holiday brew Yule Tide, a Belgian style triple ale, which like the rest of the Mutiny Fleet is distributed in 22 ounce bombers.","ibu":65,"name":"Yule Tide","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.1554810823486372,"address":"551 Clair Road West","category":"North American Lager","city":"Guelph","coordinates":[43.487,-80.2068],"country":"Canada","ibu":95,"name":"Sapporo Premium Beer","state":"Ontario"},{"abv":8.3999996185,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":7,"name":"Vertical Epic 07.07.07","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":73,"name":"Michelob Ultra","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.1999998093,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","description":"DUCHESSE DE BOURGOGNE\n\nfrom Brouwerij Verhaeghe is the traditional Flemish red ale. This refreshing ale is matured in oak casks; smooth with a rich texture and interplay of passion fruit, and chocolate, and a long, dry and acidic finish. After the first and secondary fermentation, the beer goes for maturation into the oak barrels for 18 months. The final product is a blend of younger 8 months old beer with 18 months old beer. The average age of the Duchesse de Bourgogne before being bottled is 12 months.","ibu":86,"name":"Duchesse de Bourgogne","state":"West-Vlaanderen"},{"abv":9.255968450896223,"category":"North American Lager","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":74,"name":"Rock River Lager Beer","state":"Minnesota"},{"abv":12.364218055885921,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":79,"name":"Raspberry Beer","state":"Wisconsin"},{"abv":6.953508684821886,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":31,"name":"White Ale","state":"Antwerpen"},{"abv":13.490935643701793,"address":"2840 Shawano Avenue","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":73,"name":"Light","state":"Wisconsin"},{"abv":9,"category":"British Ale","city":"Waukesha","coordinates":[43.0117,-88.2315],"country":"United States","ibu":76,"name":"Nocturn","state":"Wisconsin"},{"abv":7.4000000954,"address":"Alte Akademie 2","category":"German Lager","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":91,"name":"Korbinian","state":"Bayern"},{"abv":8,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":102,"name":"Double Enghien Bruin","state":"Hainaut"},{"abv":12.266418424046732,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":49,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":5.581570020852081,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":89,"name":"Backpacker IPA","state":"Colorado"},{"abv":12.859169067783865,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":10,"name":"Jamaica Brand Sunset IPA","state":"California"},{"abv":9,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","description":"Our Seasonal Offering. We honor the Harvest & Holidays each year by brewing a traditional Barleywine style ale, using a variety of ingredients. The Label, created by local artist Janis Taylor, is a folksy woodcut based on the tale of John Barleycorn in verse.\n\n\nBrewed in small 10-barrel batches with Certified Organic barley malt, this crimson hued ale has a sweet caramel nose with a zesty spicy, citrus taste. It has a slight hop finish and leaves a warm, tingling sensation on the tongue. A great winter warmer!\n\nStarting Gravity \t1.098\n\nFinish Gravity \t1.020\n\nABV \t9.5\n\nIBU \t96\n\n\n-http://www.madriverbrewing.com/pages/brews/john_barleycorn.html","ibu":63,"name":"John Barleycorn Barleywine Style Ale","state":"California"},{"abv":9,"address":"6 Cliffe High Street","category":"North American Ale","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":29,"name":"A. LeCoq Imperial Extra Double Stout 2000","state":"East Sussex"},{"abv":14.150527778868003,"address":"117 South First Street","category":"Belgian and French Ale","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":71,"name":"Pseudo Lambic Framboise","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":8.4099998474,"address":"701 West Glendale Avenue","category":"Belgian and French Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A Belgian Trappist triple yeast culture balanced with the finest imported pale barley, Belgian aromatic malt and oats, gives this golden ale a fruity bouquet and a light refined taste.","ibu":95,"name":"Sprecher Abbey Triple","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":13.376320226417418,"category":"North American Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":44,"name":"Double Eagle Brown Ale","state":"North Carolina"},{"abv":14.727773431825891,"address":"107 North Lincoln Avenue","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":90,"name":"American Pilsner","state":"Nebraska"},{"abv":8.717049448498905,"city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":6,"name":"Hibernator Winter Ale","state":"California"},{"abv":3.75,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":40,"name":"Atlas Lager"},{"abv":6.5,"address":"PO Box 1661","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"For over 4 decades, Colt 45 Premium Malt Liquor has been the \"class of all malt liquor brands\". With its smooth and distinct flavor and historic affiliation with Billy Dee Williams, it has become an urban American icon. If you're looking for a thick 40, or an ice cold shorty, Colt 45 is the malt liquor that works EVERYTIME!","ibu":49,"name":"Colt 45","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.6999998093,"address":"2401 Blake St.","category":"German Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"In-Heat Wheat Hefeweizen\n\nShe taunts and teases... In-Heat Wheat is our German-style Hefeweizen. She is a full flavor beer, perfect for the more adventurous craft beer drinker. The addition of malted white wheat gives this brew its smooth, full mouthfeel. A proprietary yeast creates intriguing flavors of bananas and cloves.","ibu":79,"name":"In-Heat Wheat","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"Our interpretation of a West Coast IPA is golden, medium-bodied ale that is very hop forward. The use of Cascade, Chinook, Columbus, Centennial and Crystal hops makes this beer a hophead’s dream.","ibu":101,"name":"5 C's IPA","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":9.388772634370538,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":37,"name":"Pilsner (discontinued)","state":"Wisconsin"},{"abv":6.5,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":22,"name":"Rare Vos","state":"New York"},{"abv":9.3000001907,"address":"235 Grandville Avenue SW","category":"British Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"This Old Ale conjures up thoughts of classic sea fairing ports, there local pubs and the weathered fisherman that frequent them. In traditional style Curmudgeon is brewed with an intense focus on the malt bill creating a very strong, rich, malty characteristic and a sweetness indicative of its cousin the barleywine. We are especially proud of the balance in this beer making it deceptively smooth and drinkable at 9.3% alcohol by volume.","ibu":32,"name":"Curmudgeon","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":3.8499999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"\"Lone Star Light mimics its full-bodied counterpart with an award winning premium light taste. This beer retains the complimentary ratio of barley, cereal grains, and hops of its parent brand.\";\"0","ibu":81,"name":"Lone Star Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":5.6999998093,"address":"540 Clover Lane","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A red ale dry hopped with three different hop varieties.","ibu":64,"name":"Dry Hop Red","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5.5,"address":"8938 Krum Ave.","category":"German Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A coppery amber lager that showcases a full bodied, malty flavor that is balanced by a refreshing bitterness derived from fine noble hops.","ibu":103,"name":"Octoberfest Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":7,"address":"8938 Krum Ave.","category":"Other Style","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A rich and powerful beer with tart cherry appeal, make this a fine stout.","ibu":51,"name":"Bell's Cherry Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.6999998093,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Oatmeal Stout. The origins of Oatmeal Stout go back hundreds of years when oats were added to Stouts to promote a healthier image than other beers available during that time period.\n\n\nThe unique blend of the oats and malts in Alaskan Stout produce a balanced, smooth beer with hints of coffee and caramel.\n\n\nAlaskan Stout is made from glacier-fed water and a generous belnd of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the from the more than 90 inches of rainfall Juneau receives each year.","ibu":78,"name":"Alaskan Stout","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.4000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Named one of the World's Ten Best Beers by Wine Spectator Magazine, Ipswich Ale has satisfied discerning craft beer drinkers since 1991. A North Shore classic, Ipswich Ale is a medium-bodied, unfiltered English style pale ale with subtle hoppiness and a smooth malty flavor.","ibu":57,"name":"Ipswich Original Ale","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":7,"address":"21 W. Bay St.","category":"North American Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Like its namesake, this ale is known for the sneak attack. Hop-heads will enjoy its assertive bitterness and huge floral, dry hop aroma.","ibu":82,"name":"Swamp Fox IPA","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":5.800892407463141,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This was the first draught on tap in November 2001. It has developed to a very quaffable ale. the slight sweet malt flavor is balanced with East Kent Golding hops to produce this delicious reddish-amber ale.","ibu":117,"name":"Bube's Red Ale","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.8000001907000005,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A deep amber colored American ale, featuring a rich malty body. Cascade and Willamette hops add a complex hop flavor and aroma. This ale is exceptionally balanced between malty sweetness and delicate hop bitterness.\n\n\nIBU: 32\n\nAlcohol content: 5.8% by volume\n\nHops: Chinook, Willamette and Cascade\n\n\nCalories per 12 oz. 172.5\n\nCarbs per 12 oz. 17.86","ibu":26,"name":"Gaelic Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":7.1999998093,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Here ye, here ye…All hopheads shall herewith rejoice! Terrapin has recruited ye old HOPSECUTIONER to execute the exact hop profile for this killer IPA!","ibu":91,"name":"Hopsecutioner","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8.6000003815,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"This Ale is Brewed in Honor of the 40th Anniversary Release of this Album.","ibu":119,"name":"Ruben & The Jets","state":"California","website":"http://www.lagunitas.com/"},{"abv":4,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Great summer memories are born out of uncomplicated times. We've made that the basis for our summer blonde recipe and kept this ale pure and simple. Relax and enjoy this all natural, light, golden beauty; a seasonal offering from the River Horse Brewing Company.","ibu":80,"name":"Summer Blonde","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":6.75,"address":"215 1/5 Arch St.","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"Pilzilla is a beer that I've been brewing for years. Each year it gets bigger and bigger. Nicknamed \"The beer that took over Tokyo\". It is an unfiltered Keller Bier. Nicley hopped at this point with 9 different kinds of hops at 10 additions and about 6.75 % alc. Each year we will add another variety of hop and bump the alc a bit. This is listed on Beer Advocate as the highest rated Kellerbier in the world. \n\n\nBottle Conditioned and Refermented. \n\n\nThis is not your average pilsner, get it before we drink it all! Prost!!","ibu":17,"name":"PILZILLA","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":7.3000001907,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Our India Pale Ale is brewed in a California IPA style. The beer is generously hopped for bitterness with Magnum hops and finished with fresh Amarillo, Ahtanum and Cascade hops.","ibu":65,"name":"Cobra-Hood IPA","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.6999998093,"address":"165 Patchway Road","category":"Other Style","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Our Light-Bodied, Pleasantly Tart, American-Style Wheat","ibu":93,"name":"Highway 22 Wheat","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":6.5999999046,"address":"312 North Lewis Road","category":"German Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":18,"name":"Helles Bock","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.5,"address":"Douvieweg 2","category":"North American Ale","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":110,"name":"Poperings Hommel Ale","state":"West-Vlaanderen"},{"abv":5.0999999046,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":6,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":5.3000001907,"address":"Camwal Road","category":"Irish Ale","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":48,"name":"Monkey Wrench Dark Ale","state":"North Yorkshire"},{"abv":9.16967869822491,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":114,"name":"India Pale Ale (IPA)","state":"California"},{"abv":8.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A dark ale brewed specially for the Christmas season, with a rich, complex taste of caramel. This is a strong, dark and rather sweet Christmas Beer – just the way we think a Christmas beer should be.","ibu":79,"name":"God Jul - Winter Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9.3999996185,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":72,"name":"Oak Aged Ebenezer","state":"Nebraska"},{"abv":5.1999998093,"address":"Marsstrae 46-48","category":"North American Lager","city":"München","country":"Germany","ibu":93,"name":"Münchner Hell / Premium Lager","state":"Bayern"},{"abv":3.971385383557968,"address":"Indira-Ghandi-Strae 66-69","city":"Berlin","coordinates":[52.5234,13.4114],"country":"Germany","ibu":17,"name":"Original Berliner Weisse","state":"Berlin"},{"abv":8.730059075119325,"address":"57 Hamline Avenue South","category":"North American Lager","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":24,"name":"Kabeelo Lodge Lager","state":"Minnesota"},{"abv":4.4000000954,"address":"600 East Superior Street","category":"North American Lager","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":72,"name":"Lighthouse Ale","state":"Minnesota"},{"abv":8.649993007420115,"address":"905 Yakima Valley Highway","city":"Sunnyside","coordinates":[46.3284,-120.008],"country":"United States","ibu":87,"name":"Roza Reserve","state":"Washington"},{"abv":9.899948521463948,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A brown ale brewed by Otto's for KClinger's Tavern in Hanover Pennsylvania.","ibu":33,"name":"KClinger's Brown Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":5.0999999046,"address":"195 Ottley Drive","category":"North American Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"It's definitely one of the finer American Brown Ales. A deep, copper colored, mild brown ale.\n\n\nSGB is accentuated by a slight nuttiness from its malt character. Designed to be a session beer it has a real smooth finish with a subtle hop character.","ibu":49,"name":"Georgia Brown","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":14.675932395048278,"address":"2195 Old Steese Highway","category":"North American Ale","city":"Fox","coordinates":[64.9583,-147.622],"country":"United States","ibu":98,"name":"Old 55 Pale Ale","state":"Alaska","website":"http://www.ptialaska.net/~gbrady/"},{"abv":5,"address":"2423 Amber St","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"The American poet WaltWhitman once portrayed a sunset over Philadelphia as, \"...a broad tumble of clouds, with much golden haze and profusion of beaming shaft and dazzle.\" Pour yourself a bottle of Walt Wit Belgian White-Style Ale and see what he was talking about. A pinch of spice and a whisper of citrus lend complexity to this fragrant, satisfying ale.","ibu":59,"name":"Walt Wit","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":9.606580721985058,"address":"200 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":66,"name":"Dousman Street Wheat","state":"Wisconsin"},{"abv":2.196586096278934,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":58,"name":"Blonde Ale","state":"Washington","website":"http://www.redhook.com/"},{"abv":6.078885623373203,"address":"18 East 21st Street","category":"German Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":59,"name":"Hefeweizen","state":"Nebraska"},{"abv":7.341385436276603,"address":"105 Edwards Village Boulevard","category":"North American Ale","city":"Edwards","coordinates":[39.6441,-106.596],"country":"United States","ibu":39,"name":"Fly Fisher Red","state":"Colorado"},{"abv":13.772332067887593,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","ibu":91,"name":"Gunslinger Imperial Stout","state":"Arizona"},{"abv":13.935060018117733,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":95,"name":"Cow Palace Scotch Ale 2000","state":"Wisconsin"},{"abv":8.1000003815,"address":"6 Cliffe High Street","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":112,"name":"Elizabethan Ale","state":"East Sussex"},{"abv":1.9419029577839997,"address":"622 Main Street","category":"North American Ale","city":"Lafayette","coordinates":[40.4194,-86.89],"country":"United States","ibu":10,"name":"Black Angus Oatmeal Stout","state":"Indiana"},{"abv":5.915577994727322,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":88,"name":"Old Knucklehead 1992","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":0.9230549952483069,"address":"8113 Fenton St.","category":"North American Ale","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"A smooth and refreshing beer loaded with flavor. Specialty malts balanced with just the right amount of cascade hops give it a roasted taste and beautiful brown color. This drinkable brown ale easily rivals an expensive import.","ibu":82,"name":"Hook & Ladder Backdraft Brown","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":8.8000001907,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Intense and warming, a meal in a bottle.\n\nOne can not help but appreciate Samuel Adams® Double Bock's huge malt character. We use an enormous amount of malt, half a pound per bottle, to brew this intensely rich lager. Its deep brown-ruby color is all made in the kettle - no black malt is used, resulting in a rich sweetness that is free of the rough taste of burnt malt. All that remains is the velvet smooth flavor and mouthfeel of the two row malt. Samuel Adams® Double Bock's intense malt character is balanced with a subtle piney, citrus hop note from the German Noble hops.\n\n\nDue to legal restrictions, Samuel Adams® Double Bock can not be sold in the states of Alabama, Arizona, Georgia, Iowa, Louisiana, Missouri, North Carolina, Ohio, South Carolina, Tennessee, and West Virginia.","ibu":33,"name":"Samuel Adams Double Bock","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.0999999046,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"More cunning than a snake in the bush... Snake Dog India Pale Ale is a Colorado-style IPA, power hopped with specialty hops from the Pacific Northwest. This is the brewery's hop monster, and the citrus fruit aroma will hypnotize the senses of the most hardcore of craft drinkers.","ibu":71,"name":"Snake Dog IPA","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.229820031777495,"address":"999 Samsen Road","city":"Bangkok","coordinates":[13.7783,100.509],"country":"Thailand","ibu":71,"name":"Singha Gold"},{"abv":8.302821988503078,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":35,"name":"Bighorn IPA","state":"Arizona"},{"abv":4.2883704988333635,"city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":44,"name":"Spiced Ale","state":"Washington"},{"abv":5.9000000954,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":50,"name":"Dry-Hopped APA","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.6999998093,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Brilliant golden ale with an inviting citrus fragrance of late added Cascade and Glacier hops. The fine hop and light malt aromas carry through to the palate to give an ale that is full but refreshing, with a clean caramel malt bitter finish.","ibu":11,"name":"Legbiter Ale","state":"County Down","website":"http://slbc.ie/"},{"abv":0.8799376213298105,"address":"511 S. Kalamazoo Ave.","category":"British Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"This beer is made with milk sugar (lactose) which gives this beer a nice creamy mouth feel which mingles with hints of chocolate and roasty flavors.","ibu":104,"name":"Too Cream Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":10,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":119,"name":"3rd Anniversary Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":5,"address":"Industrial Area, Thessaloniki","country":"Greece","ibu":114,"name":"Mythos Hellenic Lager","state":"Sindos","website":"http://www.mythosbrewery.gr/"},{"abv":14.624624642883402,"address":"108 Cabot St.","category":"North American Ale","city":"Holyoke","coordinates":[42.2012,-72.6104],"country":"United States","ibu":112,"name":"Holyoke Dam Ale","state":"Massachusetts"},{"abv":5.0999999046,"address":"14600 East Eleven Mile Road","category":"Other Style","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This German style wheat beer contains about 50% malted wheat and is balanced with Hallertau hops. This beer finishes low in gravity so the final taste is light on the palette and extremely drinkable. This is sure to be a favorite with first time and long time wheat beer drinkers.","ibu":61,"name":"Nagelweiss","state":"Michigan"},{"abv":7.5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":20,"name":"Petrus Gouden Tripel Ale","state":"West-Vlaanderen"},{"abv":6,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":94,"name":"Framboise"},{"abv":13.024064836164838,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":105,"name":"Red Rooster Pale Ale","state":"Nebraska"},{"abv":99.989997864,"address":"Woodbastwick","category":"British Ale","city":"Norwich","coordinates":[52.6842,1.449],"country":"United Kingdom","ibu":58,"name":"Norfolk Nog Old Dark Ale","state":"Norfolk"},{"abv":14.864863691603965,"city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":95,"name":"Full Moon Barley Wine Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":7,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":85,"name":"Nora"},{"abv":7.5,"category":"German Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":108,"name":"Hefeweizen","state":"California"},{"abv":4.5,"address":"357 East Taylor Street","category":"North American Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":92,"name":"Premium Light Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":11.5,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":108,"name":"1100 Wheat Wine","state":"Minnesota"},{"abv":5.25,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light brown medium bodied ale. Smooth, malty and slightly roasted flavor.","ibu":54,"name":"Massatucky Brown","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":9,"address":"1933 Davis Street #177","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":61,"name":"Jolly Roger","state":"California","website":"http://drinkdrakes.com/"},{"abv":5.23309168498991,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":17,"name":"Nut Brown","state":"Illinois"},{"abv":5,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":24,"name":"Traditional Ale","state":"Alberta"},{"abv":3.713633853011089,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":71,"name":"Adler Bräu 1848 Lager","state":"Wisconsin"},{"abv":5.6999998093,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"The first thing you notice when pouring a glass of this seasonal beer is the color. Samuel Adams® Octoberfest has a rich, deep golden amber hue which itself is reflective of the season. Samuel Adams® Octoberfest is a malt lover's dream, masterfully blending together five roasts of barley to create a delicious harmony of sweet flavors including caramel and toffee. The beer is kept from being overly sweet by the elegant bitterness imparted by the German Noble hops. Samuel Adams® Octoberfest provides a wonderful transition from the lighter beers of summer to the winter's heartier brews.","ibu":50,"name":"Samuel Adams OctoberFest","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6,"address":"Rue de Maredsous, 11","category":"North American Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Blonde Ales are one of the fastest growing beer styles in Belgium, France and the UK. Moorgat's Maredsous 6 is an easy drinking Blonde with a balance of graininess and aromatic hop.","ibu":64,"name":"6","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":12.218590030835196,"address":"50 East Washington Street","category":"German Lager","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":70,"name":"Spring Bock","state":"California"},{"abv":1.8159466426504844,"category":"Irish Ale","city":"Emeryville","coordinates":[37.8313,-122.285],"country":"United States","ibu":25,"name":"Porter","state":"California"},{"abv":12.541738334510198,"address":"2195 Old Steese Highway","category":"North American Ale","city":"Fox","coordinates":[64.9583,-147.622],"country":"United States","ibu":78,"name":"Anchorage Ale","state":"Alaska","website":"http://www.ptialaska.net/~gbrady/"},{"abv":9.923883055396326,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":101,"name":"Old Crustacean Barleywine 1996","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.387348349051262,"address":"2001 Second Street","category":"German Lager","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":25,"name":"Märzen","state":"California"},{"abv":6.5,"address":"2944 SE Powell Blvd","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Secession is a Black IPA, or Cacadian Dark Ale. This emerging beer style is characterized by an alliance of North-west hop flavors as formidable as the Cascade Mountain Range and roasted malts as dark as a moonless night. Join the party and uncap a revolution!","ibu":100,"name":"Secession Black India Pale Ale (CDA)","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7.5999999046,"category":"Belgian and French Ale","country":"Belgium","description":"Tournay Black is a bottle conditioned, Belgian stout brewed by Brasserie de Cazeau which is a farm-brewery located in the south of Belgium. It was originally brewed as a winter ale under the name Tournay de Noel, but later became a year-round release. They didn't provide much specific detail about how it was brewed except to say that it is made with water, malts, candi-sugar, hops, and yeast. It is 7.6% ABV with a recommended drinking temperature of +/- 50 degrees. The brewer states that the tasting notes are of, \"roasted malts, coffee, bitter chocolate, earth, and cigar ash.\" Well, I am a prodigious cigar smoker and I can't say that I would want to consume the ash.","ibu":101,"name":"Tournay Black"},{"abv":5.0999999046,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Peroni Nastro Azzurro is an intensely crisp and refreshing lager beer, with\n\nan unmistakable touch of Italian style\n\nhttp://www.sabmiller.in/brands_peroni.html\n\nPeroni Beer, Peroni Lager Beer, Peroni Nastro Azzurro Bee","ibu":33,"name":"Peroni","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":8,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our Summer seasonal, Trade Winds Tripel is a Belgian-style Golden Ale with a Southeast Asian twist. Instead of using candi sugar (typical for such a beer), we use rice in the mash to lighten the body and increase the gravity, and spice with Thai Basil. The result is an aromatic, digestible and complex beer made for a lazy summer evening.","ibu":89,"name":"Trade Winds Tripel","state":"California","website":"http://www.thebruery.com/"},{"abv":8,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"As the days grow shorter and frost becomes snow, our Belgian Freeze winter ale is the perfect remedy to loosen the spirits. This deep amber tonic is brewed with lots of roasted caramel malt for body and warmth to bring in the holidays and see you through the spring.","ibu":112,"name":"Belgian Freeze Winter Ale","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","description":"Building on a classic English style and adding some uniquely Northwest touches, Bhagwan's Best has developed fiercely loyal following wherever it is served. Bursting with local hop flavor, bitterness, and aroma, it is a particular treat when served dry-hopped and cask-conditioned on Big Time's beer engine. O.G. 16 Plato (1.064), alcohol is approximately 5% by weight.","ibu":8,"name":"Bhagwan's Best IPA","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":5.5,"address":"4519 W. Pine Street","category":"North American Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"Duck-Rabbit Amber Ale is a medium bodied beer with a lovely tawny copper or bronze color. This brew emphasizes malt complexity with layered caramel malt flavors. We put a lot of effort into getting this amber ale just right and we're extremely proud of the result!","ibu":3,"name":"Duck-Rabbit Amber Ale","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":2.0242296533585966,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":45,"name":"Capital Rustic Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":4.9000000954,"address":"Tbinger Strae 46","category":"German Lager","city":"Stuttgart","country":"Germany","ibu":5,"name":"CD-Pils","state":"Baden-Wrttemberg"},{"abv":6,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Crafted from the finest ingredients and originally intended for the cask-ale connoisseur, Extra Special Ale is a robust and hearty amber ale with a malt body and aromatic hop finish.","ibu":77,"name":"Yards Extra Special Ale","state":"Pennsylvania"},{"abv":5.5,"address":"91 S Royal Brougham Way","category":"Other Style","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Amber Weizen is left unfiltered for extra flavor and aroma. \n\n\nRich amber in color, Pyramid Amber Weizen features three different kinds of caramel barley malts and nugget hops resulting in an exceptionally smooth and well-balanced beer that follows in the tradition of our flagship style, Pyramid Hefe Weizen.","ibu":62,"name":"Pyramid Amber Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":6.721641974879265,"address":"1321 Celebrity Circle","category":"Other Style","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This brew combines the mild, tartness of a wheat beer with the flavor of real raspberries. The raspberry flavor is not overpowering. It has a wonderful berry aroma, and is a favorite even among those who claim to \"not like beer\".","ibu":38,"name":"Liberty Raspberry Wheat Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5,"address":"701 S. 50th Street","category":"Other Style","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A smooth refreshing American Wheat Ale brewed with fresh ginger. This Summer Session is much more exciting than the one you had to sit through in high school.","ibu":31,"name":"Summer Session","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":6.4000000954,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"This beer will surprise you with a big hop flavor and a toasty sweet aroma. Pours black from the chocolate and de-bitterized black rye malts. This ale is medium bodied and is well flavored with hints of toffee, nutty undertones and a dry crisp finish.","ibu":97,"name":"Founders Black Rye","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.1999998093,"address":"15 Knox Rd.","city":"Bar Harbor","coordinates":[44.3996,-68.334],"country":"United States","description":"A good, clean nutbrown ale with a malty body. This is our most popular ale due to its smooth and malty flavor.\n\n\nWe use a mixture of pale, crystal and black malts in this one, and our primary hop is Target, though we also add some Whitbread Goldings Variation as well.\n\n\nThe Real Ale is best fresh, so fresh in fact, that it's great right out of the bright tank.","ibu":15,"name":"Bar Harbor Real Ale","state":"Maine","website":"http://www.atlanticbrewing.com"},{"abv":8.8000001907,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"An amazing treat for hops lovers.\n\n\nSamuel Adams Hallertau Imperial Pilsner is a celebration of the extraordinary Hallertau Mittelfrueh hop variety. This rare Noble Bavarian hop, considered to be one of the best in the world, is prized for its quality and aromatic characteristics.\n\n\nThe beer, which is a deep golden color with a rich, creamy head, gives off an intense and complex Noble hop aroma unlike any other brew. With the first sip, beer enthusiasts will experience an explosion of hop flavor. The intensity of deep citrus, spicy Noble hop flavor is balanced with the slight sweetness from the malt. Due to the quality of the hops, this beer remains balanced and smoothly drinkable from beginning to end. The lingering \"hop signature\" is an amazing treat for hops lovers.","ibu":90,"name":"Samuel Adams Hallertau Imperial Pilsner","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.762926087738872,"address":"29 Laurier Ouest","city":"Montréal","coordinates":[45.5228,-73.5928],"country":"Canada","ibu":79,"name":"Péché Mortel","state":"Quebec","website":"http://www.dieuduciel.com/"},{"abv":7,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":30,"name":"Andelot Angelique","state":"Oost-Vlaanderen"},{"abv":7.4964334712610095,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":35,"name":"Old Crustacean Barleywine 2005","state":"Oregon","website":"http://www.rogue.com"},{"abv":1.1137903325035525,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":104,"name":"Jolly Roger","state":"Washington"},{"abv":6.5,"address":"7160 Oliver Street","category":"North American Ale","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":92,"name":"Oatmeal Stout","state":"British Columbia"},{"abv":14.55312928799923,"address":"871 Beatty Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":114,"name":"IPA","state":"British Columbia"},{"abv":3.7999999523,"address":"Hillfoots Business Village","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":109,"name":"Bitter and Twisted","state":"Scotland"},{"abv":9.14959111563347,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":31,"name":"Pale Ale","state":"California"},{"abv":4.6999998093,"address":"St Peter's Hall","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":116,"name":"Golden Ale","state":"Suffolk"},{"abv":0.4925686386221817,"address":"2029 Old Peshtigo Road","category":"German Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":78,"name":"Stout (discontinued)","state":"Wisconsin"},{"abv":11.536189652956635,"address":"Burg. van den Heuvelstraat 35","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":10,"name":"Holland Beer"},{"abv":4.54739762806026,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":72,"name":"Premier"},{"abv":0.3975934411617077,"category":"North American Ale","city":"Oak Bluffs","coordinates":[41.4548,-70.565],"country":"United States","ibu":10,"name":"Extra Stout","state":"Massachusetts"},{"abv":10,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":59,"name":"Abbot Pennings Grand Cru","state":"Wisconsin"},{"abv":2.743711512045892,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":105,"name":"Fox Tail Amber Ale","state":"Wisconsin"},{"abv":2.073496291180983,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":17,"name":"Stone of Scone Scotch Ale","state":"Wisconsin"},{"abv":9.21339054337465,"address":"299 Main Street","category":"North American Lager","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":96,"name":"Laughing Ass","state":"Iowa"},{"abv":14.244746949324846,"address":"The Cider Mills","city":"Hereford","coordinates":[42.2626,-71.8023],"country":"United Kingdom","ibu":67,"name":"Woodpecker","state":"Hereford and Worcester"},{"abv":5.5999999046,"address":"15 South Orange Avenue","category":"German Lager","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":110,"name":"Harvest Ale","state":"New Jersey"},{"abv":14.216361452224461,"address":"Durmakker 23","city":"Evergem","coordinates":[51.1007,3.6934],"country":"Belgium","ibu":71,"name":"Bière du Boucanier","state":"Oost-Vlaanderen"},{"abv":6.8000001907000005,"address":"14 Wickliffe Street","city":"Dunedin","coordinates":[-45.872,170.518],"country":"New Zealand","ibu":80,"name":"Taieri George"},{"abv":8.1000003815,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":62,"name":"Mocha Joe","state":"California"},{"abv":10.891389056699373,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":2,"name":"Special Ale","state":"Pennsylvania"},{"abv":14.298671073394374,"category":"North American Ale","city":"Moultonborough","coordinates":[43.7548,-71.3967],"country":"United States","ibu":15,"name":"Lucknow India Pale Ale","state":"New Hampshire"},{"abv":12.515937080610215,"address":"729 Q Street","category":"German Lager","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":55,"name":"Empyrean Oktoberfest","state":"Nebraska"},{"abv":2.8086248106910094,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":20,"name":"Hex Nut Brown Ale","state":"Illinois"},{"abv":14.857785174573472,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":48,"name":"Smooth Oatmeal Stout","state":"Illinois"},{"abv":14.000725942847186,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":45,"name":"Red","state":"Indiana"},{"abv":8.275032208307403,"address":"2400 State Highway 69","category":"Other Style","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":7,"name":"Apple Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":7.849573931962274,"city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":105,"name":"Barbary Coast Brand Gold Rush Style Beer","state":"Minnesota"},{"abv":14.349653182583646,"category":"North American Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":91,"name":"Nut Brown","state":"Wisconsin"},{"abv":9.3000001907,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Merry Monks' Ale is a Belgian style Abby Trippel without limitation. This style was created by Trappist Monks in Belgium over 500 years ago. To be true to the style, Merry Monks' Ale is bottle conditioned. This means we add a bit of sugar and yeast just prior to bottling. This imparts a special effervescence to the beer, a creamier carbonation, and also extends the shelf life. The on-going fermentation inside the bottle will change the character of the beer as it ages, and you'll find it becomes dryer with age. You may want to lay down a few bottles for future evaluation. We suggest storing at cellar temperatures -around 55 degrees F- and away from light.\n\n\nWhen you try this beer you're in for a unique treat. The special effervescence and creaminess are immediately apparent when pouring. The Pilsner malts combined with the Belgian yeast strains yield a remarkable and complex flavor- perhaps you'll note subtle hints of fruit or spice. The flavor is nicely balanced and the finish moderate to dry , begging for the next sip.\n\n\nYou might ask why we go through all this trouble and expense for just a beer, but one taste and you'll know the Merry Monks' Ale (9.3% ABV) will more than complement any meal it accompanies. Enjoyed best around 48 degrees F, it also makes a fine after-dinner drink.","ibu":31,"name":"Merry Monks","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5,"address":"150 Simcoe Street","category":"North American Ale","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"John and Hugh Labatt, grandsons of founder John K. Labatt, launched Labatt 50 in 1950 to commemorate 50 years of partnership. The first light-tasting ale introduced in Canada, Labatt 50 was Canada’s best-selling beer until 1979 when, with the increasing popularity of lagers, it was surpassed by Labatt Blue. Labatt 50 is fermented using a special ale yeast, in use at Labatt since 1933. Specially-selected North American hops and a good balance of dryness, complemented by a fruity taste, provide Labatt 50 with all the distinguishing features of a true ale.","ibu":81,"name":"Labatt 50","state":"Ontario"},{"abv":5.5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Extra Dry was the first national launch of a dry beer in Canada. Labatt Extra Dry is mashed longer than regular beers to leave less carbohydrate in the finished product, giving a lighter flavour with little aftertaste.","ibu":79,"name":"Labatt Extra Dry","state":"Ontario"},{"abv":3.742244629553928,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":54,"name":"Albino Rhino (discontinued)","state":"Alberta"},{"abv":12.258593476060717,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":84,"name":"Bock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":1.4010005733408004,"category":"North American Lager","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Haymarket Pilsner","state":"Illinois"},{"abv":9.700650654735973,"category":"North American Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":87,"name":"Golden Hawk Wheat Beer","state":"Iowa"},{"abv":10,"address":"600 Brea Mall","category":"Belgian and French Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":53,"name":"BJ's Annual Grand Cru","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5,"address":"196 Alps Road","category":"Other Style","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Terrapin Beer Company was started by two guys who love big, bold beers. We are known for using a ton of flavorful ingredients and for pushing the envelope with the brews we create.\n\n\nWe have also been known to take pleasure in hiking, biking, kayaking, and just plain having fun in the great outdoors. When we get hot and sweaty even hopheads like us want nothing more than to enjoy a beer that is crisp and refreshing.\n\n\nWhich is why we created the perfect session beer – the Terrapin Golden Ale.","ibu":59,"name":"Terrapin Golden Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A commemorative brew styled after the Sebewaing Brewing Company's signature beer. The Sebewaing Brewing Company brewed from 1880 until 1965. This brew was commissioned for the town of Sebewaing's 150th anniversary celebration.","ibu":95,"name":"Sebewaing Beer","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7,"address":"pastoor de katerstraat 24","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"copper -coloured complex tasting ale with a soft smokey taste combined with some caramel-malt to give it a long lasting chocolate-like aftertaste","ibu":30,"name":"Bravoure","website":"http://www.dedochtervandekorenaar.be"},{"abv":8.5,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"As spring emerges, Golden Fleece Maibock captures center stage. This fine lager is a pleasurable reward for enduring the doldrums of Erie Pennsylvania’s harsh Lake-Effect ice and snowstorms. Celebrate the transition into spring! Golden Fleece Maibock’s deep golden color leads into a sweet malty flavor with a light hop finish. Maibock says, “RAM IT” to winter with 8.5% alcohol by volume – just enough to take the chill off your day.","ibu":119,"name":"Golden Fleece Maibock","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Brown Ale is brewed with American malt and hops, and traditional ale yeast. Look for a sweet, chocolaty taste, with balanced bitterness resulting in a full flavored but smoothly drinkable beer.","ibu":23,"name":"Saranac Brown Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.25,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light gold in color, slightly malty and hoppy, with a mild flowery hop finish.","ibu":17,"name":"North Pleasant Pale Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":20,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A bigger, bolder version of our Raison D'Etre.\n\n\nThis is a bulbous, brown ale brewed with a bunch of malt, brown sugar and raisins.\n\n\nIn case you care... the average 12 oz. serving has approximately 425 calories.","ibu":88,"name":"Raison D'Extra","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.1999998093,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","ibu":64,"name":"Keystone Light","state":"Colorado","website":"http://www.coors.com"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","description":"Often called “mild” if it is on draft, brown ale is a walnut-colored specialty of the North of England. A festive-occasion beer, brown ale is one of the oldest English brewing styles, mentioned in literature in the 16th century. Beers brewed at the old brewery have a round, nutty flavor because of the Yorkshire square system of fermentation.","ibu":47,"name":"Nut Brown Ale","state":"North Yorkshire"},{"abv":6.044219746650433,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":82,"name":"Luna Sea Amber","state":"Nebraska"},{"abv":1.6131293200332741,"address":"1525 St. Charles Avenue","category":"North American Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":23,"name":"Category 5 Strong Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":6.001928446739555,"address":"Dobroovsk 130","category":"German Lager","city":"Nchod","country":"Czech Republic","ibu":101,"name":"Primátor Blonde Bock Beer"},{"abv":6.6999998093,"address":"803 SE School Street","category":"North American Ale","city":"Enterprise","coordinates":[45.419200000000004,-117.272],"country":"United States","ibu":106,"name":"IPA","state":"Oregon"},{"abv":5.4000000954,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"A rich, malty beer made with classic American hops for a full and complex flavor. Very smooth in aroma and palate. The caramel overtones leave a nice finish.","ibu":25,"name":"Calico Jack Amber Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":3.421965103643748,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":71,"name":"Kristall Weizen","state":"Baden-Wrttemberg"},{"abv":6.615493837564389,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":3,"name":"Kristall-Weizen","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":11,"name":"Dunkel"},{"abv":5.1999998093,"address":"One Busch Place","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":77,"name":"Spring Heat Spiced Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":66,"name":"White Christmas","state":"California","website":"http://www.moylans.com/"},{"abv":9.25,"address":"925 Cherry Street SE","category":"Belgian and French Ale","city":"Grand Rapids","country":"United States","description":"A classic golden ale, with subtle esters of banana and bubblegum. This beer pours with a creamy head and ends with a sweetness of light Belgian candi sugars. Our brewmaster aged this ale for an extended period to round out the flavors. A great traditional Belgian brew.","ibu":39,"name":"Vivant Tripel","state":"MI","website":"http://breweryvivant.com"},{"abv":4.1999998093,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"This is a light bodied mildly hoppy ale brewed with a 2-row malted barley, Crystal, and a special Vienna malted barley. Golding and Cascade hops are used to provide the balanced palate for this fine session beer. 4.2% ABV","ibu":53,"name":"Pinnacle Peak Pale Ale","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":5.6999998093,"address":"715 Dunn Way","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or “black wit”, if you will. This dark but surprisingly light bodied beer is very drinkable while still having character and complexity. Chamomile is added for its floral aroma, while the coriander and citrus peel give the characteristics of a traditional witbier.","ibu":25,"name":"Black Orchard","state":"California","website":"http://www.thebruery.com/"},{"abv":11,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"A Jahva-Choklat hybrid.","ibu":95,"name":"Imperial Mokah Blended Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.5,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"The copper-colored body and generous foam\n\nhead of this amber ale tantalize the eyes but\n\nit's the complex flavor of Seigneuriale that\n\ndelivers a pleasant surprise. It is slightly\n\nsweet, malty and spicy, but a distinctive hop\n\ncharacter and notes of apricot brandy give\n\nSeigneuriale a truly unique character. \n\n\nWe recommending pairing it with carved ham,\n\napricot-glazed duck or squab, Thai shrimp\n\ncurry or a holiday fruit cake.","ibu":42,"name":"Seigneuriale","state":"Quebec","website":"http://www.unibroue.com"},{"abv":6.129277793612528,"category":"North American Ale","city":"Portland","coordinates":[43.6615,-70.2553],"country":"United States","description":"Below-average but drinkable IPA, cheaply priced (~$1/bottle), and available at Trader Joe's.","ibu":78,"name":"Kennebunkport IPA","state":"Maine"},{"abv":6.3000001907,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Our IPA is an unfiltered cross between an English and American IPA, with a strong, dry bitterness balanced with a slight malty sweetness. A mixture of first-rate U.S. and Belgian malts, combined with English roasted barley and highly hopped with Cascade and Warrior hops make our IPA a brewery favorite.","ibu":12,"name":"Ipswich IPA","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":8.893050797145227,"address":"2605 South Stoughton Road","category":"North American Ale","city":"Madison","coordinates":[43.0598,-89.3085],"country":"United States","ibu":115,"name":"Altbier","state":"Wisconsin"},{"abv":7.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":50,"name":"Ruination IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":7.5,"address":"Bridge Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":2,"name":"Empire India Pale Ale","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":4.4000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":119,"name":"Levitation Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9.815983422846571,"address":"980 NE Fourth Street","category":"Irish Ale","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":70,"name":"Dundee Porter","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":11.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":77,"name":"Doggie Claws 2004","state":"Oregon"},{"abv":5.759617683511641,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":51,"name":"Adler Bräu Holiday Ale","state":"Wisconsin"},{"abv":4.8460281646085415,"category":"North American Lager","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":37,"name":"Lighthouse Amber Lager","state":"Wisconsin"},{"abv":1.9276779538211763,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":101,"name":"Symposium Eisbock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.880819185950267,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":31,"name":"Stonehenge Stout","state":"Colorado"},{"abv":9.399919173911911,"address":"149 Steele Street","category":"North American Ale","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":77,"name":"Thoroughbred Red","state":"Colorado"},{"abv":4.9000000954,"address":"2522 Fairway Park Drive","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A true German-style Kölsch. Originally brewed in Cologne, this beer is light yet has a sweet malty body that is balanced by a complex, citrus hop character. Multiple additions of German Hallertauer hops are used to achieve this delicate flavor. We use a special Kölsch yeast, an ale yeast that ferments at lager temperatures, to yield the slightly fruity, clean flavor of this beer. Fancy Lawnmower Beer is a world class brew yet light enough to be enjoyed by Texans after strenuous activities, like mowing the lawn.\n\n\nSaint Arnold Fancy Lawnmower Beer is best consumed at 35-45° Fahrenheit.","ibu":41,"name":"Fancy Lawnmower Beer","state":"Texas","website":"http://www.saintarnold.com"},{"abv":9.971728073708054,"address":"895 Bolger Court","category":"North American Lager","city":"Fenton","coordinates":[38.5405,-90.4607],"country":"United States","ibu":55,"name":"Beer","state":"Missouri"},{"abv":4.0999999046,"address":"639 Conner Street","category":"Irish Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":23,"name":"Rust Belt Porter","state":"Indiana"},{"abv":9.156259217982214,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":108,"name":"Schlafly Hefeweizen","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":0.6350934478017867,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":49,"name":"Stout","state":"South Carolina"},{"abv":5.0999999046,"address":"4120 Main Street","category":"British Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"A true English session ale brewed in the pale ale style using ye olde techniques of yesteryear. Specially crafted to inspire you and your thirstiest mates barstool conversations. Light copper in colour. This pint is quite malty with just enough East Kent hops for a nice, earthy hoppiness. Naturally cask conditioned, this may be served a little cold for a true Brit but is a \n\ncomplimentary double nod to one of the 1st beer styles. Cheers mate!","ibu":64,"name":"Brilliant Barstool","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":9.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":78,"name":"Avec Les Bons Voeux","state":"Hainaut"},{"abv":8,"address":"Brusselse Steenweg 282","city":"Melle","country":"Belgium","ibu":3,"name":"Duinen Dubbel","state":"Oost-Vlaanderen"},{"abv":13.252218666823389,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":23,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":13.38244844811127,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":73,"name":"English Ale","state":"Suffolk"},{"abv":9.463154555154038,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":103,"name":"Prairie Pale","state":"Kansas"},{"abv":4.5,"address":"390 Capistrano Road","category":"German Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":99,"name":"Sandy Beach Blonde Hefeweizen","state":"California"},{"abv":9.5,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":58,"name":"Organic Barley Wine Ale 2005","state":"California"},{"abv":5.6999998093,"address":"Franz-Brombach-Strae 1-20","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":76,"name":"Oktoberfest Weizen","state":"Bayern"},{"abv":5,"address":"155 Mata Way Suite 104","category":"North American Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Because everyone needs a friend. It seems only natural that with San Diego being one of the closest cities to the Mexican Border that you would find a beer like Amigo. Brewed in the San Diego Lager style, this all malt lager is a refreshing way to start or finish a drinking session. The product of a true lager fermentation, this beer is crisp and lighter in body than most ales of similar strength making it a friendly choice for any occasion.\n\n\nMalts- Pilsner and Two Row\n\nHops- German Magnum and Czech Saaz\n\nYeast- White Labs German Lager \n\n\nOriginal Gravity- 1.048\n\nTerminal Gravity- 1.010\n\n5.0% ABV\n\n\nDraft- Available in Southern California and Arizona","ibu":14,"name":"Amigo Lager","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.1000003815,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"With a huge, Pacific Northwest hop aroma & character upfront, Storm King subsides into massive, roast malt complexity. More flavor than mere words can adequately describe. Rich and substantial, it will warm your heart.","ibu":46,"name":"Storm King Imperial Stout","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.40104101885131,"address":"471 Kalamath Street","category":"North American Lager","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":114,"name":"Mountain Wheat","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":0.7312989820825477,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":77,"name":"Porter","state":"California"},{"abv":5.064257867447464,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":14,"name":"Alexander Alt","state":"California"},{"abv":9.320516116065551,"address":"249 North Redwood Highway","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":81,"name":"Light","state":"Oregon"},{"abv":7.102597408334189,"address":"426 St.Peter Street","category":"North American Lager","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":87,"name":"Honey Wheat","state":"Minnesota"},{"abv":0.7285507291186455,"address":"2201 Sherman Street","category":"German Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":50,"name":"Schwarzbier","state":"Wisconsin"},{"abv":12.166908322683428,"address":"392 George Street","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":67,"name":"Golden Blonde","state":"New Jersey"},{"abv":13.92469432381623,"address":"PO Box 271","category":"German Lager","city":"Manila","coordinates":[14.5833,120.967],"country":"Philippines","ibu":41,"name":"Dark Lager"},{"abv":12.142405771195936,"city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":41,"name":"Pils","state":"Nordrhein-Westfalen"},{"abv":0.45789408433629664,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":18,"name":"Goldenshine","state":"Wisconsin"},{"abv":11.339419655897059,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":104,"name":"Poorter","state":"Antwerpen"},{"abv":11.490919195525958,"address":"14250 Sweetwater Lane","category":"Irish Ale","city":"Centreville","coordinates":[38.8289,-77.4393],"country":"United States","ibu":90,"name":"Flying Armadillo Porter","state":"Virginia"},{"abv":14.898550559590781,"address":"3929 Shelbyville Rd.","category":"North American Ale","city":"Louisville","coordinates":[38.253,-85.654],"country":"United States","ibu":47,"name":"Altbier","state":"Kentucky","website":"http://www.bbcbrew.com"},{"abv":4.19073606646139,"address":"1208 14th Avenue","category":"North American Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":90,"name":"Berghoff Genuine Dark","state":"Wisconsin"},{"abv":5.3000001907,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Heaps of hops give this pale lager a bracing, herbal bite over layers of soft and smooth malt flavor. This refreshing combination of tastes makes Prima a classy quencher in the tradition of the great pilsners of Europe. Dry and delightful, this is an elegant beer.","ibu":85,"name":"Prima Pils","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.9000000954,"address":"91 S Royal Brougham Way","category":"British Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"A rich, full-bodied winter warmer crafted in the British tradition of holiday beers. This deep mahogany colored brew balances complex fruit flavors with a refreshingly smooth texture, making Snow Cap a highly drinkable and desirable cold weather companion.","ibu":67,"name":"Snow Cap","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":1.2007256705383473,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":113,"name":"Stout","state":"California"},{"abv":8.233358362036185,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":15,"name":"Nut Brown Ale","state":"North Carolina"},{"abv":2.951294794582476,"address":"1800 North Clybourn Avenue","category":"Irish Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":8,"name":"Porter","state":"Illinois"},{"abv":10.59151766427036,"address":"200 North Tenth Street","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":57,"name":"Tallgrass Prairie Gold","state":"Iowa"},{"abv":6.1999998093,"address":"111 Marble Ave NW","category":"North American Ale","city":"Albuquerque","coordinates":[35.0928,-106.647],"country":"United States","description":"Congratulations! By drinking Marble Brewery India Pale Ale, you show exceptionally good taste. Our obsession with quality and attention to detail ensures that every bottle will meet your high expectations. The Columbus, Amarillo and Centennial hops lend a fragrant citrus aroma and snappy hop character. We think you will agree that this is one rock solid beer.","ibu":62,"name":"Marble India Pale Ale","state":"New Mexico","website":"http://marblebrewery.com/"},{"abv":4.8000001907000005,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"Named after the little birds that fly by the brewery looking for grain after the weather turns cold, this was originally to be a Fall/Winter seasonal. Clearly we underestimated the market for this smooth and malty brown ale, and we have decided to keep it for year round enjoyment.","ibu":57,"name":"Brown Bird Brown Ale","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":6.8000001907000005,"address":"545 Turner Drive","category":"North American Ale","city":"Durango","country":"United States","ibu":28,"name":"Modus Hoperandi","state":"Colorado","website":"http://www.skabrewing.com/"},{"abv":6.5,"address":"Rue de Panneries 17","category":"North American Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Amber copper color with a beige head.\n\nCaramel malt aromas reminiscent of vanilla, along with toffee, butterscotch and ripe fruits. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nHazy amber to brown coloured beer, with a fluffy off-white head. Nice aroma of spices, yeast and oak. The alcohol subtle. Flavour is moderately spicy and slightly fruity, with balanced hops. \n\nThis beer is certified organic.","ibu":64,"name":"Brasserie de Brunehaut Bio Bière Ambrée (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":1.0120930741796785,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":105,"name":"Ponderosa IPA","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.9000000954,"address":"110 Barley Park Lane","category":"North American Ale","city":"Mooresville","coordinates":[35.6231,-80.8011],"country":"United States","description":"This brew is a favorite for those who love hops! This medium copper-colored ale is dry hopped for a strong hop nose with medium malt overtones and hint of caramel that blend for one great tasting beer!","ibu":29,"name":"Cottonwood Endo India Pale Ale","state":"North Carolina","website":"http://www.carolinabeer.com/"},{"abv":8.55462076908086,"address":"2 Sagamore Street","category":"British Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Cooper's Cave Pale Ale is an English Pale Ale throughout.It is a full bodied light colored ale with evenly pronounced hop bitterness. The grain bill consists of two English Pale Malts and an English Crystal Malt. The brewer's favorite...need we say more.","ibu":100,"name":"Cooper's Cave Pale Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":4.9000000954,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":118,"name":"Anchor Steam","state":"California"},{"abv":11.711131254879435,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":53,"name":"Tecate","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":4.5,"address":"Stoke Lacy HR7 4HG","city":"Stoke Lacy","coordinates":[52.1496,-2.5507],"country":"United Kingdom","ibu":71,"name":"Butty Bach","state":"Hereford and Worcester"},{"abv":10.5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Topped by a sumptuous head of foam, La Terrible possesses a fruity aroma enriched with notes of roasted malt and Madeira. Its long lasting flavour is both elegant and full bodied.\n\n\nLa Terrible is a dark brown beer on lees and is part of a collection of exotic and refined Unibroue beers brewed using 100% natural raw materials. It may be drunk as an aperitif or as an after dinner digestive. It is equally a perfect accompaniment to the above-mentioned dishes or a pleasant alternative to coffee.","ibu":92,"name":"Terrible","state":"Quebec","website":"http://www.unibroue.com"},{"abv":12.123168547959116,"address":"St. Jakobstrasse 37","city":"Sankt-Gallen","coordinates":[47.4301,9.3794],"country":"Switzerland","ibu":24,"name":"St. Galler Landbier"},{"abv":10.791985955961142,"address":"Dominikanerstrae 6","category":"North American Lager","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":66,"name":"Aecht Schlenkerla Rauchbier Weizen","state":"Bayern"},{"abv":6,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":102,"name":"Oatmeal Stout","state":"California"},{"abv":11.482670694501763,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":117,"name":"Summer Common","state":"Nebraska"},{"abv":5.5,"address":"1705 Mariposa Street","category":"German Lager","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":64,"name":"Bock","state":"California"},{"abv":6.5,"address":"2880 Wilderness Place","category":"British Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":6,"name":"Cold Hop","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":12.500941345599992,"address":"1900-B East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","ibu":91,"name":"Chocolate Stout","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":8.862365647028255,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":40,"name":"Red","state":"Wisconsin"},{"abv":4.406902617202712,"address":"336 Ruth Carney Drive","city":"Windsor","coordinates":[43.513,-72.4015],"country":"United States","ibu":36,"name":"ESB","state":"Vermont","website":"http://www.harpoonbrewery.com/"},{"abv":5.4000000954,"address":"Taikos aleja 1","city":"Panevys","country":"Lithuania","ibu":105,"name":"Export"},{"abv":4,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":31,"name":"Unicorn Amber Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":8,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"A true leader in the hop-wars of the west coast, Pliny the Elder hits you over the head with hoppy bitterness and manages to smooth the rough edges out enough to become an enjoyable brew.","ibu":78,"name":"Pliny the Elder","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":9.243537578218211,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":101,"name":"Hemp Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":0.5663756982677437,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":80,"name":"Railyard Ale","state":"Iowa"},{"abv":7.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Our latest release in the V Series of bottle conditioned, Belgian-inspired ales is heady with an earthy, aromatic hop start. Involving hops from the Czech Republic, Germany and England, this flavorful ale slides into flavors of honey and mildly tart fruit. Leaving a refreshing impression of dryness, this is a quenching, invigorating ale, despite it substantial strength at 7.5% abv.","ibu":79,"name":"V-Saison","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.8000001907000005,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Perfectly balanced, this authentic version of a German helles-style lager satisfies gloriously. Lean, German malts and fine European hops offer subtle harmony.","ibu":89,"name":"Victory Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":0.7863922071765994,"address":"5417 Trumpeter Way","category":"North American Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"In Montana, many classic memories are made right after someone says, “Hold my beer and watch this.” These bold, assertive moments deserve a bold, assertive beer – Big Sky IPA. A distinct hop presence and malty backbone will leave you refreshed and ready for your moment of glory. Hang on tight and enjoy the ride.","ibu":100,"name":"IPA","state":"Montana"},{"abv":13.918935611211728,"address":"901 Gilman Street","category":"British Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":11,"name":"Snow Cap Ale","state":"California"},{"abv":5.0999999046,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":2,"name":"Amber Ale","state":"Washington"},{"abv":9.88979443734303,"address":"Hlinky 12","city":"Brno","coordinates":[49.1911,16.5918],"country":"Czech Republic","ibu":33,"name":"Czech Premium Lager"},{"abv":10,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":118,"name":"15","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.3000001907,"address":"1253 Johnston Street","category":"North American Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":56,"name":"Cartwright Pale Ale","state":"British Columbia"},{"abv":3.8504432797097876,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":91,"name":"Brotherhood Black & Tan","state":"British Columbia"},{"abv":4,"address":"Unit 1-B, Blk. A, Edf. Ind. Fei Tong","category":"North American Lager","city":"Macao","coordinates":[19.7219,-101.225],"country":"Macao","ibu":113,"name":"Lager"},{"abv":8.679037461161506,"address":"519 Seabright Avenue #107","category":"North American Lager","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":112,"name":"Brew Ribbon","state":"California"},{"abv":4.086229042146252,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":26,"name":"Irish Red","state":"Nebraska"},{"abv":3.1412286703385686,"address":"Stadtplatz 14","category":"German Ale","city":"Grieskirchen","coordinates":[48.2351,13.8292],"country":"Austria","ibu":10,"name":"Jörger Weiße Hell"},{"abv":5.138116677744586,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":59,"name":"Chapeau Fraises Lambic","state":"Vlaams Brabant"},{"abv":13,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Brewed in honor of the 1000th batch at our original Clybourn brewpub. A liquid as dark and dense as a black hole with thick foam the color of a bourbon barrel. The nose is an intense mix of charred oak, chocolate, vanilla, caramel and smoke. One sip has more flavor than your average case of beer. A great cigar beer.","ibu":50,"name":"Bourbon County Stout","state":"Illinois"},{"abv":5.2001836412747675,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":36,"name":"1916 Irish Stout","state":"Wisconsin"},{"abv":13.940348155570824,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":4,"name":"Regia Extra"},{"abv":9.332161111300922,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":84,"name":"Royal Arms IPA","state":"Colorado"},{"abv":5.141773894902805,"city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":79,"name":"Kenosha Gold","state":"Wisconsin"},{"abv":6.545240796710706,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":95,"name":"Red Lager","state":"Michigan"},{"abv":10.082603569664636,"category":"German Ale","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":42,"name":"Kristall Weiss","state":"Colorado"},{"abv":8.59051012038115,"address":"Little Telpits Farm, Woodcock Lane","category":"North American Ale","city":"Maidstone","coordinates":[51.2047,0.6813],"country":"United Kingdom","ibu":35,"name":"Whitstable Oyster Stout","state":"Kent"},{"abv":2.2537832360742858,"address":"1722 South Fremont Drive (2375 West)","city":"Salt Lake City","coordinates":[40.7326,-111.954],"country":"United States","ibu":32,"name":"Gelande Amber Lager","state":"Utah","website":"http://www.uintabrewing.com/"},{"abv":5.210754242664151,"address":"138 Nassau Street","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":62,"name":"Winter Wonder","state":"New Jersey"},{"abv":4.9000000954,"address":"Knallhtte","city":"Baunatal","coordinates":[51.2615,9.4494],"country":"Germany","ibu":27,"name":"Luxus Pils","state":"Hessen"},{"abv":12.544860661274337,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":58,"name":"2nd Street Amber","state":"Wisconsin"},{"abv":0.3696882109733224,"address":"110 Wisconsin Dells Parkway South","category":"German Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":53,"name":"Blonde Bock","state":"Wisconsin"},{"abv":9,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":102,"name":"Tripel Reserve","state":"Maine","website":"http://www.allagash.com/"},{"abv":7.1999998093,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":66,"name":"Grand Cru","state":"Maine","website":"http://www.allagash.com/"},{"abv":10.645915665062923,"address":"316 Main Street","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":84,"name":"Off KIL Ter Scottish Ale","state":"Iowa"},{"abv":10.92829612828491,"address":"79 North Eleventh Street","category":"Other Style","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"A seasonal winter beer from Brooklyn","ibu":19,"name":"Winter Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":10,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","description":"A bourbon barrel aged Imperial Stout infused with coffee.","ibu":59,"name":"Black Xantus","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.1999998093,"address":"103 West Michigan Avenue","category":"British Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"Somewhat of a cousin to Barleywine, Big Dick’s is a classic English-style Olde Ale. Sweet and full-bodied malt flavors are complemented by a fragrant but mild hop bitterness. Sweet, bready malt aromas combine with rich flavors of dark fruit, brown sugar, caramel, and sweet nuts. A beer for keeping, Big Dick’s Olde Ale will age gracefully, while fruity flavors continue to develop and bitterness will subside.\n\n\nThis is not only a BIG beer, it is a Well-Endowed Ale! We took a traditional English-style Ale and made it our own. Delightful on its own or as a digestif with a full-bodied cigar, Big Dick’s is also big enough to stand up to many boldly-flavored foods.","ibu":20,"name":"Big Dick's Olde Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":3.615383997425705,"address":"101 Oak Street","category":"German Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"This unfiltered wheat ale has very low bitterness. A Bavarian hefeweizen yeast is used which imparts a banana and clove aroma.","ibu":37,"name":"Standing Stone Hefeweizen","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":5.6999998093,"address":"4519 W. Pine Street","category":"British Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Milk Stout is a traditional full-bodied stout brewed with lactose (milk sugar). The subtle sweetness imparted by the lactose balances the sharpness of the highly roasted grains which give this delicious beer its black color.","ibu":42,"name":"Duck-Rabbit Milk Stout","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":3.639090382634552,"address":"339 Fairground Rd","category":"Irish Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"Our Porter has a deep dark color and a light creamy head. The aroma and flavor lingers of burnt grains and roasted coffe. We hope you enjoy this special brew.","ibu":88,"name":"Potbelly Porter","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":5.9000000954,"address":"2201 Arapahoe Street","category":"Irish Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"St. Bridget, a legendary Irish saint, created a sensation by turning her bathwater into beer. What better way to celebrate her worthy miracle than with our zymurgistic tribute to her feat: St. Bridget’s Porter. St. Bridget’s is a smooth and elegant brown porter. Brimming with coffee and chocolate characteristics from dark barley malts, St. Bridget’s is carefully hopped to provide the perfect complement to its malty robustness. This beer is a “must have” beer for all porter lovers.\n\n\nPrepare yourself for a religious experience","ibu":109,"name":"St. Bridget's Porter","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Making Jerry proud with an amber ale that's slightly malty and very tasty.","ibu":115,"name":"Grateful Red","state":"Michigan"},{"abv":3.449964308373765,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This red is a rich, malty, ruby-colored ale with a smooth finish.","ibu":21,"name":"Station 33 Firehouse Red","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":11,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":118,"name":"Schlafly Barleywine","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":3.880768988199547,"address":"1100 New York Ave, NW","category":"German Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","ibu":111,"name":"St. Adrian's Alt","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":10.800000191,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Aged Barleywine Ale infused with the copper glow of more than 1,000 setting suns. This exceptional offering has infinite body... a big, sweet malty tumult followed by a long, balanced, hop symphony.","ibu":22,"name":"Chaotic Chemistry","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.069584738345355,"address":"2051A Stoneman Circle","category":"Irish Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":28,"name":"Raspberry Porter","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Wild Blue is brewed with a blend of German hops from the Hallertau region in Bavaria and classic Aroma hops from the Willamette Valley in the Pacific Northwest. A combination of two- and six-row barley malt was also chosen specifically for this recipe. Beer lovers will also appreciate this specialty fruit-infused lager's striking burgundy color, ripe blueberry aroma and its ability to stand up to the strongest of foods.","ibu":105,"name":"Wild Blue Blueberry Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.0999999046,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":33,"name":"Lindener Spezial","state":"Niedersachsen"},{"abv":3.9634378038917797,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":10,"name":"Raspberry Ginger Mead","state":"Wisconsin"},{"abv":11.632800103048057,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":97,"name":"Eldridge Grade White Knuckle Ale","state":"California"},{"abv":8.869628183224894,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":94,"name":"Taverner Nut Brown Ale","state":"Wisconsin"},{"abv":8.188735915070083,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":10,"name":"Wilsteraner Altbier","state":"Wisconsin"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"Four types of malted barley, including a specially roasted Belgium barley make up the grain bill. Centennial, Sterling, and Amarillo hops provide the big hoppy flavor. Double dry-hopped, once with raw Centennial hops and once with raw Amarillo hops present this beer's huge hop aroma.","ibu":33,"name":"Point Defiance IPA","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":13.471057618485162,"address":"2711 West Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":104,"name":"Sir Duluth Oatmeal Stout","state":"Minnesota"},{"abv":10.57235778096916,"category":"North American Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":37,"name":"Southport Amber","state":"Wisconsin"},{"abv":10.966764684062586,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":43,"name":"Whitetail Ale","state":"Wisconsin"},{"abv":8.1999998093,"address":"1401 Miner Street","category":"German Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"High Gravity Butt Head Doppelbock Lager is brewed with a generous amount of roasted malts producing caramel sweetness and rich mouthfeel. Why Butt Head? Try one. You'll enjoy \"big brew\" flavor with the intensity of a \"head butting\" Bighorn Ram!","ibu":34,"name":"Butthead Doppelbock","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.5,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"Iron City has been the ‘Burgh’s signature beer since 1861. This premium lager has become a proud tradition of the city and its people. Just try to imagine a Pittsburgh football, baseball or hockey game without an ice cold Iron.\n\n\nWe still brew Iron City fresh daily – but now, instead of delivering it to Pittsburgh neighborhoods in horse-drawn buggies, we deliver it to your favorite hangouts. You can get an Iron at national restaurant chains, upscale eateries, and – of course – your favorite local bar. You can also find it at more than 330 regional beer distributors. Because Iron City is brewed locally, it goes from the brewery to you within a matter of days. You won’t find a fresher beer anywhere in Pittsburgh!","ibu":86,"name":"Iron City","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"When the loveable \"hopheads\" at Humpy's Great Alaskan Alehouse requested a winter version of alehouse favorite Sockeye Red IPA, our brewers instinctively spawned CoHoHo Imperial IPA.\n\n\nCoHoHo begins with generous measures of pale two-row and specialty malts along with spirit-boosters like maple syrup, brown sugar and honey. Hefty doses of Cascade, Centennial and Simcoe hops beautifully balance that outrageous malt bill and heighten the festive character of this exuberant beer.","ibu":97,"name":"CoHoHo Imperial IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Blind Pig IPA was originally brewed by Vinnie at Blind Pig Brewing Co. in Temecula CA. Inspired by the original Blind Pig IPA, this beer is loaded with hop character but only has 6.0% ABV.","ibu":24,"name":"Blind Pig IPA","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.6999998093,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Reflective of the traditional German style, Stoudt's Pils is delicately dry with firm bitterness. This crispness of Saaz hops and a dry malt finish make the Pilsener an excellent aperitif.","ibu":92,"name":"Stoudt's Pils","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4,"address":"800 Vinial St.","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Munich and various roasted malts give it a very malty, rich flavor with a hint of burnt flavor. 100% imported Hallertau hops, moderate bitterness and aroma.","ibu":103,"name":"Penn Dark","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":12.024053207437737,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":118,"name":"HefeWeizen","state":"California"},{"abv":14.28092329442227,"category":"Other Style","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":10,"name":"Apricot","state":"North Carolina"},{"abv":8.829103623146644,"address":"6863 Lundy's Lane","category":"British Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":117,"name":"Old Jack","state":"Ontario"},{"abv":5.635596420763252,"address":"906 Washington Street","category":"North American Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":109,"name":"Gray Whale","state":"California"},{"abv":13.789348783004069,"category":"British Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":37,"name":"Wee Heavy","state":"California"},{"abv":2.9152599257201395,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":44,"name":"Brown Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":5.5999999046,"address":"2105 N. Atherton St.","category":"German Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A well hopped medium bodied lager brewed in the Czech style of pilseners. \n\nThis beer displays the distinct flavor and aroma of saaz hops.","ibu":117,"name":"Pilsener Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.719512520321416,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Our American Ale is a favorite everywhere - an amber ale with a wonderful balance of caramel sweetness and hop flavor. The aroma has a slight note of citrus and rock candy. There is not an imported Ale on the market that tastes this fresh!","ibu":35,"name":"Circket Hill American Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":5.6999998093,"category":"North American Ale","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":73,"name":"Tap Room No. 21 Amber Ale","state":"Wisconsin","website":"http://www.taproom21.com/"},{"abv":9.5,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Fermented with the legendary Ardennes strain of Belgian yeast, 10.10.10 is a Belgian Strong Pale Ale brewed with pale malt and triticale (a cross of wheat and rye), hopped with German Perle hops, and steeped with chamomile during the whirlpool stage. In secondary fermentation, we added a juice blend of Muscat, Gewurztraminer, and Sauvignon Blanc grape varieties.","ibu":71,"name":"Vertical Epic 10.10.10","state":"California","website":"http://www.stonebrew.com/"},{"abv":5,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","description":"The name Vigneronne Cantillon was given in 1987. This name reminds us that, while it belongs to the beer patrimony, the spontaneous fermentation, the ageing in the barrels for several years and the addition of grapes make it a distant cousin of certain white wines.\n\n\nIn spite of its success, the Vigneronne represents less than 5% of the total production of the Cantillon brewery. In order to obtain grapes which are as mature as possible, we buy them at the end of the season. Every year, 1000 kilos of white italian grapes are delivered at the Cantillon brewery in the beginning of October.","ibu":95,"name":"Vigneronne","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":6.0999999046,"address":"491 Ontario Street","category":"German Lager","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Although it’s named after our most famous weather event, this beer has nothing in common with the harsh bite of winter. In fact it’s smooth slightly chocolaty flavor helps you forget Jack Frost altogether. German pale and Munich malts form the base flavors with hints of chocolate and caramel. Very soft, floral German hops ease the finish into dryness. Available on draft and in bottles from November to March.","ibu":1,"name":"Blizzard Bock","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":7,"address":"1214 East Cary St","category":"Belgian and French Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"This recipe is meant to replicate a Belgian Abbey-style ale. Tart from the Belgian yeast but malty and sweet from the addition of rock candy sugar. Reddish brown in color.","ibu":75,"name":"Richbrau Abbey-Style Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.5,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":88,"name":"Phoenix Pale Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5.4000000954,"address":"603 East Brewery Street","category":"German Ale","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":26,"name":"Shiner Hefeweizen","state":"Texas","website":"http://www.shiner.com"},{"abv":9.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A hop lover’s dream! Mango and peach aromas with a crisp citrus finish.","ibu":87,"name":"Dreadnaught Imperial IPA","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":8,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":37,"name":"Goudenband 2002","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":6.359254284044833,"address":"4120 Main Street","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","ibu":106,"name":"Slam Dunkel","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":5.8000001907000005,"address":"2401 Blake St.","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Proving the French may actually know something we don't... Garde Dog is a traditional French Biere de Garde or \"beer for keeping\". This classic farmhouse ale was brewed in March for drinking during the spring and summer months. With it's toasted aroma and spicy, malty sweetness Garde Dog will liberate you from the winter doldrum.","ibu":25,"name":"Garde Dog","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":4.5,"address":"Lierput 1","category":"Belgian and French Ale","city":"Kobbegem","coordinates":[50.9098,4.2505],"country":"Belgium","ibu":90,"name":"Mort Subite Gueuze Lambic","state":"Vlaams Brabant"},{"abv":1.5270659652775687,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":114,"name":"Pale","state":"California"},{"abv":11.610179996277882,"category":"North American Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":73,"name":"Amber","state":"California"},{"abv":7.732964026258951,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":79,"name":"Schlitz","state":"Florida"},{"abv":14.967423287534373,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":84,"name":"Hex Nut Brown Ale","state":"Illinois"},{"abv":1.5639350347161851,"city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":26,"name":"Dunkelweisse","state":"Iowa"},{"abv":0.7990078254765554,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":71,"name":"Pointer Brown Ale","state":"Iowa"},{"abv":8.5,"address":"1680-F East Waterloo Rd.","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"American hops and Belgian abbey beer flavors intermingle to create a spicy and assertive beer style all their own. Citrusy character from select hops dominate this assertive Double I.P.A., complimented by a unique Belgian flavor to add complexity and ultimate beer satisfaction. The result is a flavor combination that’s a whirlwind of taste sensations.","ibu":36,"name":"Hop Master's Abbey Belgian-style Double IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.0999999046,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In honor of Oktoberfest, we give you Scratch #23-2009, Kellar Fest. This unfiltered lager features all German malts and noble hops. Fermented with the Augustinerbrau yeast strain, Kellar Fest is a blend of Bohemian Pils, Munich and Vienna malts. The Magnum hops provide a crisp bitterness and the Hallertau noble hops impart a slight earthy taste. Kellar Fest finishes crisp and dry with hints of fruit. Grab a lamb handle and savor this Kellar Fest.","ibu":2,"name":"Scratch #23 2009 Kellar Fest","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.758205623536993,"address":"1321 Celebrity Circle","category":"Other Style","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This light ale is an American interpretation of a German classic. It's not filtered and has a pleasantly tart flavor. Served with a lemon wedge.","ibu":113,"name":"Liberty Unfiltered Wheat Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5.25,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Sundog is an amber ale as deep as the copper glow of a Lake Michigan sunset. Its biscuit malt give Sundog a toasty character and a subtle malty sweetness. Sundog brings out the best in grilled foods, caramelized onions, nutty cheese, barbecue, or your favorite pizza.","ibu":101,"name":"Sundog","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":9.29738189149518,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Bube's rendition of this classic style is made with fine 2-row malted barley and West Coast hops. A wonderful malt finish with a delicate citrus aroma, reminiscent of its Old-World cousin.","ibu":63,"name":"Bube's India Pale Ale (IPA)","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.8000001907000005,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A simple well-made Classic American Lager brewed with only choice ingredients. It is extremely mellow refreshingly smooth, glass after glass.","ibu":83,"name":"Saranac Lager","state":"New York","website":"http://www.saranac.com"},{"abv":4.8000001907000005,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A smooth and creamy medium-bodied stout with soft malty notes and dry finish.","ibu":6,"name":"Ohio City Oatmeal Stout","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5.5,"address":"514 South Eleventh Street","category":"British Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"A Silver Medal winner at the 2005 Great \n\nAmerican Beer Festival in the Bitter category, our \n\nExtra Special Bitter (ESB) is a medium-bodied ale \n\nhighly hopped and loaded with flavor.","ibu":4,"name":"Firehouse ESB","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.679344200241583,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","ibu":8,"name":"1084 Barleywine","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":5.5,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":70,"name":"Red Ale","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":9.317063501775827,"address":"13300 Bothell-Everett Highway #304","category":"North American Lager","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":63,"name":"Wheat Beer","state":"Washington"},{"abv":6,"address":"Mendoza","category":"North American Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":67,"name":"Rubia"},{"abv":0.10942545609335386,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":85,"name":"St. Paul Triple","state":"Antwerpen"},{"abv":5.3000001907,"address":"30 Germania Street","category":"German Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"For our take on the classic hefeweizen style our search for unique ingredients led us to the Eureka and Lisbon varieties of lemon grown in three different regions of California. These particular lemons added the perfect balance of citrus tartness and sweetness to accent the taste of the beer. The spiciness of the Hallertau Mittelfruh and Spalt Spalter hops balance out the slightly sweet character of our brewery’s own signature wheat malt, resulting in a crisp and refreshing wheat beer with a subtle lemon aroma and flavor.","ibu":83,"name":"Samuel Adams Coastal Wheat","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.52885282759223,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":118,"name":"Hinterland Packerland Pilsner","state":"Wisconsin"},{"abv":9.834388833218156,"city":"Horsham","coordinates":[51.0638,-0.327],"country":"United Kingdom","ibu":9,"name":"Worthington White Shield","state":"West Sussex"},{"abv":1.3271126287737012,"address":"1809 Larkspur Landing Circle","category":"Irish Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":74,"name":"Point Reyes Porter","state":"California"},{"abv":10.007204309811202,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":117,"name":"Whitetail Ale","state":"Michigan"},{"abv":3.881257617631496,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":58,"name":"Scotch Ale","state":"Scotland"},{"abv":9.856305811458636,"address":"1860 Schell Road","category":"German Ale","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":44,"name":"Weizen","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":1.456688465975059,"address":"1800 North Clybourn Avenue","category":"German Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":7,"name":"Oktoberfest","state":"Illinois"},{"abv":1.3525541565895371,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":9,"name":"Hacker-Pschorr Weisse","website":"http://www.paulaner.com/"},{"abv":5,"address":"Chelsea Piers, Pier 59","category":"North American Ale","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":90,"name":"Sunset Red Ale","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":6.404848139029569,"address":"Chelsea Piers, Pier 59","category":"Other Style","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":13,"name":"Blueberry Wheat","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":14.262253995523398,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":12,"name":"Scottish Ale","state":"Wisconsin"},{"abv":8.446575644318187,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":9,"name":"Dark","state":"Bremen"},{"abv":13.724660788024789,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":107,"name":"William Capen Bitter Ale","state":"Wisconsin"},{"abv":5.0999999046,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Hold onto your beer mugs, because this medium-bodied beer has been overwhelmed with hop additions. Brewed as an American pale ale, it's a celebration of American hop varieties: Cascade, Crystal, Centennial and Chinook. You won't be disappointed.","ibu":110,"name":"Ironbound Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4.522288747765995,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Wheat is a lager, not ale, and contains a generous amount of wheat which produces a clean, simple flavor.","ibu":65,"name":"Wheat","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"American style double IPA, full bodied malt flavor supports a ridiculous amount of hops, giving it pronounced bitterness and overwhelming hop flavor and aroma. Made with 5 pounds of hops per barrel.","ibu":89,"name":"Kryptonite Imperial IPA","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6.5,"address":"445 St.Paul Street","category":"Irish Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"More and more we’re becoming a nation of milquetoasts. And nowhere is that more evident than in our beer—puny liquids without calories, carbs, or cojones. \n\n\nBut it needn’t be that way, my friend! Sure, we don’t want to make a living shoveling coal or washing clothes on a rock. But we can recapture the more robust spirit of a time gone by.\n\n\nDundee Porter is a throwback to a different era—when times were tough and so were the people. They drank big beers, slapped each other on the back, and toasted the good life—even though they only saw it from a distance. \n\n\nWith Dundee Porter, you can get a taste of it.\n\n\nBig and malty flavor from aromatic dark-roasted grains balanced by a subtle hint of hops. Deep color and rich caramel flavor.","ibu":53,"name":"Dundee Porter","state":"New York"},{"abv":3.9031787857304066,"address":"3301-B East Fifth Street","category":"North American Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"A delicious example of the \"neo-classical\" American beer style. It has a beautiful copper color and is topped with a thick rich head. With a hint of ale fruitiness in the nose, Pale Ale starts out malty, finishes dry and has plenty of Cascade hops in between. It is sure to satisfy the most discerning ale aficionados.","ibu":117,"name":"Live Oak Pale Ale","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":14.187677410447042,"ibu":116,"name":"07/22/10 08:00 PM"},{"abv":5.349278251561116,"address":"302 N. Plum St.","category":"Belgian and French Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","ibu":68,"name":"Lancaster Limited Triple","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":9.5,"address":"701 Galveston Ave","category":"Other Style","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"This is a special edition of Rahr's Winter Warmer. This fine English ale has been aged in freshly emptied Kentucky oak whisky barrels. The barrel aging has given this already big ale a beautiful whiskey nose along with notes of vanilla and oak. A perfect ale for sipping around a winter fire.","ibu":61,"name":"Bourbon Barrel Aged Winter Warmer","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":6.9000000954,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":64,"name":"Stone Cali-Belgique","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.347080999705607,"address":"Piazza V Luglio, 15","category":"British Ale","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":88,"name":"Noël"},{"abv":10,"address":"515 Jefferson Street SE","category":"British Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":104,"name":"Old Woody 2005","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.5999999046,"address":"1524 West Marine View Drive","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":110,"name":"Homeport Blonde","state":"Washington"},{"abv":5.5999999046,"address":"Doktor-Waibel-Strae 2","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":61,"name":"Spezial"},{"abv":8.5,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":37,"name":"Ondineke Oilsjtersen Tripel","state":"Oost-Vlaanderen"},{"abv":6.6999998093,"address":"2380 Larsen Drive","city":"Camino","coordinates":[38.7563,-120.679],"country":"United States","ibu":108,"name":"Farm House Ale","state":"California"},{"abv":12.493556378565643,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":13,"name":"Oatmeal Stout","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":14.765383385275483,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":97,"name":"Cream Ale","state":"Wisconsin"},{"abv":5.064726071846608,"address":"7791 Egg Harbor Road","category":"Irish Ale","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":83,"name":"Peninsula Porter","state":"Wisconsin"},{"abv":5.847079716159449,"category":"North American Lager","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":97,"name":"Wild Boar Wild Wheat","state":"Iowa"},{"abv":12.841895286250766,"address":"4301 West Wisconsin","category":"North American Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":108,"name":"Rye","state":"Wisconsin"},{"abv":5.0753417751218945,"category":"North American Lager","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":42,"name":"The Yank Cream Ale","state":"Wisconsin"},{"abv":8.214384175300161,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":36,"name":"Platte Valley Pale Ale","state":"Colorado"},{"abv":12.640898993357077,"address":"7665 US Highway 2","city":"Iron River","coordinates":[47.3812,-94.6669],"country":"United States","ibu":31,"name":"Dry Mead","state":"Wisconsin"},{"abv":7.9000000954,"address":"800 Paxton Street","category":"German Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Red and white wheat combined with darker malts add body to this hazy, unfiltered ale. Fermented with the same yeast as DreamWeaver Wheat replicating the pepper, clove and all-spice flavors found in our year-round beer.","ibu":68,"name":"Scratch #7 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.1999998093,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"The opaque blackness and beige-colored\n\nfoam mousse of Chambly Noire belie its light,\n\nrefreshing body and clean, long finish,\n\nfeaturing hints of roasted coffee beans, toast\n\nand toffee. \n\n\nWe recommend pairing it with grilled salmon,\n\nsteak or tuna au poivre, smoked meats,\n\ncoffee-crusted rack of lamb, or chocolate\n\nespresso flan.","ibu":38,"name":"Chambly Noire","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8.5,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":78,"name":"Abbey Dubbel","state":"New York"},{"abv":5.0999999046,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":69,"name":"Rodenbach","state":"West-Vlaanderen"},{"abv":10.076319908585795,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A blonde ale that is very light in color and body with no bitterness. A thirst quenching, American light-bodied blonde ale.","ibu":87,"name":"Airship Light","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":10,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A biting, bitter, tongue bruiser of an ale. With a name like Hopslam, what did you expect?","ibu":5,"name":"Hopslam Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6.1999998093,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Hops Infusion is loaded with piney, citrusy notes, much hops complexity, and a strong foundation of malt underneath it all.. Glowing a deep amber color, Hops Infusion is brewed with seven types of hops. Simcoe, Magnum, Cascade, Liberty, Saaz, Fuggles and E. Kent Goldings give this beer the complexity that's so interesting. Our brewers intention on Hops Infusion was to create a complexity of hops flavor and aromas, not found in any other beer.\n\n\nOriginally developed for our BrewPub (no longer open), Hops Infusion was ahead of its time in 1998, but eventually became over shadowed by plethora of entries from other brewers in the India Pale Ale category, with everyone pushing the envelope on hops content more and more. So, in late 2005 we redesigned this beer with an entirely new recipe and new packaging as well. The results are unmistakable, Hops Infusion is clearly a leading IPA once again.\n\n\nWe brew Hops Infusion (6.2% ABV, 1.068 OG) all year 'round. So if your local beer store doesn't have it, tell 'em to get moving!","ibu":64,"name":"Hops Infusion","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":11.100000381,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"At Weyerbacher, we prefer to brew things true to European style guidelines. Consequently our barley wine is on the malty side, yet not overly sweet. Notes of date or perhaps fig on the palate follow a pleasurably malty aroma to your taste buds. The finish is warm and fruity, and begs for the next sip.\n\n\nEnjoy Blithering Idiot in a brandy snifter or wine glass, preferably in front of the fire, or accompanying a literary classic. This is the finest life has to offer and should be treated as such. Moments of reflection make all the toil worthwhile, and Blithering Idiot is for moments like these. Share it with your family over the holiday dinner. Lay a few down, aging only helps a barley wine develop more class. At 11.1 % ABV (alcohol by volume) this fine ale will keep for years. Our expected maximum shelf-life is 2 to 3 years. Although it might see a decade, beyond the 3rd year most barley-wines have a tendency to decrease in complexity, so don't wait too long","ibu":59,"name":"Blithering Idiot","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":3.1600000858,"address":"303 Sorg Street","city":"St. Mary's","coordinates":[41.4277,-78.5539],"country":"United States","ibu":41,"name":"Straub Light","state":"Pennsylvania","website":"http://www.straubbeer.com/index.htm"},{"abv":4.6999998093,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Blue is the best-selling Canadian beer in the world. Introduced in 1951 as Labatt Pilsener, it was named for the colour of its label by fans of the Winnipeg Blue Bombers football team. Blue was the first brand in Canada with a twist-off cap and won the silver medal in the International Lager category at the 1998 Brewing Industry International Awards. Labatt Blue, brewed using specially selected aromatic hops, is a well-balanced, fully matured, full-flavoured beer with a fruity character and a slightly sweet aftertaste.","ibu":59,"name":"Labatt Blue","state":"Ontario"},{"abv":8.6999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Our Barley Wine is dark red in color and has an original gravity of 1.120 (24 Plato). The malt complexity of this classic ale style is incredible.\n\n\nThe Broad Street Market is located just blocks from the Appalachian Brewing Company. This indoor farmers market was built in 1863 and is one of the oldest continuously operating farmers markets in the United States. The beautiful brick façade and natural wood doors are typical of the structures in Downtown Harrisburg; including our own building.","ibu":22,"name":"Broad Street Barleywine","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":7.16178346872616,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":96,"name":"Over The Line Stout","state":"California"},{"abv":13.433050545462372,"category":"North American Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":109,"name":"Moonset Lager","state":"Hawaii"},{"abv":7.3000001907,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":41,"name":"Atta Boy IPA","state":"California"},{"abv":12.816486232023758,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":12,"name":"Weizenberry","state":"California"},{"abv":6.478126121754293,"address":"901 Gilman Street","category":"German Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":0,"name":"Oktoberfest","state":"California"},{"abv":7.569279105123322,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":30,"name":"Wicked Winter Brew","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":2.1785437862354406,"category":"North American Lager","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":41,"name":"Summer Wheat","state":"California"},{"abv":6.4000000954,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Pours a spectacular crimson red with a creamy tan head. Brewed with four varieties of Belgian caramel malts imparting a sweet richness. Red's Rye is impressively balanced with its hop bitterness and huge citrus bouquet achieved from the immense amarillo dry hop. The generous amount of malted rye used accentuates a spicy crisp finish.","ibu":75,"name":"Founders Red's Rye","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":13.882669837489122,"address":"426 St.Peter Street","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":106,"name":"Capitol ESB","state":"Minnesota"},{"abv":8.79060750865463,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":53,"name":"Winter SkÃ¥l","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":14.635232364949545,"address":"1413 Fifth Avenue","category":"North American Ale","city":"Moline","coordinates":[41.5059,-90.5171],"country":"United States","ibu":34,"name":"Pale Ale","state":"Illinois"},{"abv":6,"address":"11197 Brockway Road","category":"British Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"Everyone has their price. For some, it's measured in dollars per hour, for others it's powder days. For those that have the gift of passion for the dark side, it's measured in pints of Oatmeal Stout. Another one of FiftyFifty's seasonals, the Roundabout Oatmeal Stout is brown to black in color and nearly opaque. It has a velvet like mouthfeel, moderate hints of dark dried fruit, espresso beans and Dark Chocolate... and just a hint of hop bitterness. The addition of Flaked Oats gives this brew its wonderful creamy texture. Roundabout Oatmeal Stout is one of a series of Stouts that FiftyFifty Brewing Co. will produce during the course of the year. Enjoy!","ibu":61,"name":"Roundabout Oatmeal Stout","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":9.0611578998876,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":104,"name":"Big Easy Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8.8000001907,"address":"1280 North McDowell Boulevard","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":63,"name":"The Hairy Eyeball","state":"California","website":"http://www.lagunitas.com/"},{"abv":3.2258420663881724,"address":"146 Snelling Avenue North","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":13,"name":"Cork Brown Ale","state":"Minnesota"},{"abv":6.3000001907,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":28,"name":"Buffalo Gold","state":"Colorado"},{"abv":5.5999999046,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","ibu":106,"name":"Superhop Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":6.03014565995046,"category":"Irish Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":42,"name":"Burntwood Black Ale","state":"Wisconsin"},{"abv":4.681275138977549,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":108,"name":"Mad Badger Barley Wine","state":"Wisconsin"},{"abv":10.590147961659198,"city":"Nagoya","coordinates":[35.1814,136.906],"country":"Japan","ibu":2,"name":"Beer Works Ale Golden","state":"Chubu"},{"abv":6.5,"address":"1012 North California Street","category":"North American Ale","city":"Socorro","coordinates":[34.0701,-106.893],"country":"United States","ibu":102,"name":"Pick Axe IPA","state":"New Mexico"},{"abv":13.673908578375112,"address":"905 Yakima Valley Highway","city":"Sunnyside","coordinates":[46.3284,-120.008],"country":"United States","ibu":103,"name":"Extra Special Bitter","state":"Washington"},{"abv":5.5999999046,"address":"50 North Airport Parkway","category":"Irish Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":80,"name":"Snake Pit Porter","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":0.38428544596548875,"address":"103 West Michigan Avenue","category":"Irish Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":38,"name":"London Porter","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":6.321716880793584,"address":"5417 Trumpeter Way","category":"North American Lager","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Summer Honey is a full-flavored summer seasonal ale. Brewed with a unique, balanced blend of spices, Northwest Hops, and Montana honey. Summer Honey is brewed during the early days of spring and released around the first of May each year. Light colored, light bodied, and very drinkable, Summer Honey sacrifices nothing to create a flavorful beer that can be enjoyed during the height of the Summer. Available April through September","ibu":28,"name":"Summer Honey Seasonal Ale","state":"Montana"},{"abv":3.2524778698314574,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":19,"name":"Sunset Red","state":"California"},{"abv":5.5999999046,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":0,"name":"Acme California Brown Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":0.4150856967211536,"address":"580 North Nimitz Highway","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":86,"name":"S-Team","state":"Hawaii"},{"abv":11.711489406144374,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":39,"name":"Winterhook Robust Winter Ale 1993","state":"Washington","website":"http://www.redhook.com/"},{"abv":10.994353037506091,"category":"German Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":78,"name":"Helles Honey Bock","state":"Iowa"},{"abv":9,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"Belgian and French Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Features the intense aroma of fresh-picked, slow ripened Northwest apricots warmed by the summer sun. Based on a Belgian Tripel, this beer went through 16 months lactic fermentation and aging in French oak wine barrels.","ibu":46,"name":"Cascade Apricot Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":9.431961875970327,"address":"1025 Owen Street","category":"Other Style","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":75,"name":"Bitter Woman in the Rye","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.5,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Old Slugger\" is a hearty Pale Ale, copper in color, crisp malty fullness on the front of the palate and lingering hop bitterness on the back with a dry finish. It is brewed with four barley malts, including two-row English pale and crystal malts, balanced with Mt. Hood, Cascade and Fuggle hops, and fermented in open vessels by Ringwood Yeast, a true top-fermenting ale yeast. \"Old Slugger\" is the flagship beer of the Cooperstown Brewing Company and was first brewed in July 1995 and bottled in November 1995.","ibu":119,"name":"Old Slugger Pale Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":8.5,"address":"3804 S.W 30th Ave","category":"Belgian and French Ale","city":"Fort Lauderdale","coordinates":[26.0745,-80.1806],"country":"United States","ibu":58,"name":"Holy Mackerel Special Golden Ale","state":"Florida","website":"http://holymackerelbeers.com/"},{"abv":8,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A neo-traditional Rye Bok brewed to commerate the 375th Anniversary of the First Town in the First State.","ibu":48,"name":"Zwaanend,ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.8000001907000005,"address":"1634 18th Street","category":"Other Style","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Anunfiltered wheat beer, weiss beer is a bavarian tradition. Our version is immensely refreshing and authentic, delivering the classic weiss aromas of clove and banana. A two-time Great American Beer Festival Medal winner in the German Style Wheat Ale category.","ibu":73,"name":"Wixa Weiss","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":6.3000001907,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","description":"Hofbräu brews a rich, full-bodied beer which goes down ideally with traditional Bavarian cuisine. With its deliciously bitter taste and alcoholic content of 6.3% volume, Hofbräu Oktoberfestbier is as special as the Beer Festival itself.\n\n\nType: Bottom-fermented, light festive beer","ibu":95,"name":"Hofbräu Oktoberfestbier","state":"Bayern"},{"abv":6.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"ach and every fall, we experience a coastal experience in San Diego known as the \"Super High Tide.\" This happens later in the Fall Season when the tidal swings reach a range of about 8 feet in difference between low and high tides. When this happens, there are days when the tide just gets too high and flattens out the surf. The lineups shut down and surfers are left to wait until the High Tide recedes.\n\n\nWhile waiting for the tides to shift in your favor, might we suggest a High Tide IPA? Brewed only once each year to coincide with the Hop Harvest in Yakima Washington, High Tide IPA is made with 180 lbs of Fresh Hops per batch that are plucked from the vines and sent straight to our brewery. We skip the whole drying and processing stage which means the hops are ultra fresh and full of flavors we can't normally get. Like grapes, Hops are only harvested one time each year and as such, we make what we can when we get them.","ibu":102,"name":"High Tide IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":3.33398823771852,"address":"1321 Celebrity Circle","category":"North American Lager","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This beer is an all-malt lager, brewed with a subtle blend of German hops. Cool fermentation, followed by extended aging, produces a delicate and mild flavor.","ibu":88,"name":"Miss Liberty Lager","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":7.0999999046,"address":"2105 N. Atherton St.","category":"German Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A south German style wheat ale. This beer is served traditionally cloudy due to the suspended yeast (hefe=yeast). Strong spicy clove flavors and light banana esters are characteristics of a different yeast strain we are trying.","ibu":19,"name":"Otto's Hefeweizen","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":11.800000191,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A big, bold ale brewed in the style of classic barleywines. Served lightly carbonated through the handpump at cellar temperature.","ibu":49,"name":"Old Fugget","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.5,"city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":60,"name":"Achel Trappist Extra","website":"http://www.achelsekluis.org/"},{"abv":2.534425983994686,"ibu":11},{"abv":4.6999998093,"address":"Route 4 & 100A","category":"Belgian and French Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Our Belgian White Ale is modeled after the original Belgian Witbiers brewed in monasteries during the early 14th century. The soft notes of citrus and spice are topped with a light, fluffy head that finishes clean and crisp. This all natural ale is our latest seasonal brew, perfect for lounging lake-side or celebrating at trail's end.","ibu":1,"name":"Belgian White","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":5.5,"address":"Brouwerslaan 1","category":"Other Style","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Premium Weizen is the main wheat beer made by Grolsch.\n\nIt is made according to the German Reinheitsgebot (\"German Beer Purity Law\"), meaning that it is made exclusively with (wheat)malt, water, hoppes and barley.","ibu":92,"name":"Grolsch Premium Weizen","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":11.710285997583629,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An American style wheat beer and an Issaquah Brewhouse origina. Light in color and body and served with a lemon, Bullfrog is crisp, refreshing and goes down easy. Take a flying leap!\n\n\nBullfrog Ale took the Silver Medal at the 2004 Great American Beer Festival in the American Wheat category.","ibu":69,"name":"Issaquah Bullfrog Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"2439 Amber Street","category":"Irish Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"By George, I think we've got it.\n\n\nDays of debate and deliberation at Independence Hall were often followed by nights of debate and deliberation (and a few libations) at the City Tavern, where our forefathers would gather to exchange revolutionary ideas.\n\n\nRich and warming with a deep garnet hue, the molasses-based Tavern Porterâ„¢ reflects Washington's admiration of Philadelphia-style porters and follows a recipe Washington used himself, when brewing beer to satisfy his thirsty field officers.\n\n\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.\n\n\nHistorical note: Our new brewery is located just blocks away from the site of Robert Hair's brewery, where Washington's favorite Philadelphia Porter was crafted.","ibu":90,"name":"General Washington Tavern Porter","state":"Pennsylvania"},{"abv":5,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"HotShot ESB is an easy-drinking and remarkably smooth Extra Special Bitter, brewed in the classic-English style. More assertively hopped than ordinary bitters, light copper-colored HotShot showcases clean hop flavors, balanced by its slightly fruity nose and light-caramel malt character.\n\n\nWhile HotShot is one of Great Divide’s easiest-drinking and lower alcohol beers, its complex flavor profile makes it the perfect session beer for craft beer lovers.","ibu":53,"name":"Hot Shot ESB","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":10,"name":"Warm Welcome Nut Browned Ale","state":"Oxford"},{"abv":13.106306897863751,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":92,"name":"Red Sled Winter Ale","state":"Nebraska"},{"abv":5,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":71,"name":"X Extra Pale Ale","state":"California","website":"http://alesmith.com/"},{"abv":1.6164053510337872,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":105,"name":"Old Rip Oatmeal Stout","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":4.380525769568963,"address":"Florhofstrasse 13","category":"North American Lager","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":90,"name":"Single-Malt-Bier"},{"abv":7.3000001907,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":103,"name":"Manchester Star Ale","state":"Manchester"},{"abv":5.8000001907000005,"address":"39176 Argonaut Way","category":"Irish Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":102,"name":"Penalty Shot Porter","state":"California"},{"abv":0.7303818479017177,"address":"3945 Second Street South","category":"North American Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":115,"name":"Victory Lager","state":"Minnesota"},{"abv":6.461773312330765,"address":"426 St.Peter Street","category":"British Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":112,"name":"Old Bastard","state":"Minnesota"},{"abv":7.942523668506513,"category":"North American Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":92,"name":"Amber","state":"New Jersey"},{"abv":7.3000001907,"address":"Jszbernyi t 7-11","category":"German Lager","city":"Budapest","coordinates":[47.4921,19.1422],"country":"Hungary","ibu":112,"name":"Bak"},{"abv":10.58767290196032,"category":"North American Ale","city":"Idaho Falls","coordinates":[43.4666,-112.034],"country":"United States","ibu":65,"name":"Dr. Hops Amber Ale","state":"Idaho"},{"abv":14.850825255864859,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":17,"name":"Fuggles IPA","state":"Maine","website":"http://www.shipyard.com/"},{"abv":14.39773682812251,"category":"North American Ale","city":"Michigan City","coordinates":[41.7075,-86.895],"country":"United States","ibu":6,"name":"Salmon Tail Pale Ale","state":"Indiana"},{"abv":11.41861342958616,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":30,"name":"Red Trolley Ale","state":"California"},{"abv":5,"address":"1001 16th Street #A-100","category":"German Lager","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":19,"name":"Rocktoberfest","state":"Colorado"},{"abv":1.7013162043128427,"address":"316 Main Street","category":"North American Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":95,"name":"Long Face Amber","state":"Iowa"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"The extensive distance between two breweries on the West Coast – 3767 miles – is bridged by this collaboration beer. Brewers Gabe Fletcher of Midnight Sun Brewing Company [Anchorage, AK] and Colby Chandler of Ballast Point Brewing Company [San Diego, CA] designed and brewed an exciting representation of their passions: hops, Belgian yeast, oak aging and Brettanomyces. \n\n\nJust prior to the Great Alaska Beer & Barley Wine Fest in JAN 2009, Gabe and Colby brewed a West Coast-worthy IPA at Midnight Sun Brewing Company. This hop-centric beer became the jumping-off point for other intense flavors. During its course to completion, 3767 was affected by three different yeast strains--including Brettanomyces, aged for several months in French oak Cabernet Sauvignon barrels, and then bottle- and keg-conditioned. \n\nThe plan is for 3767 to hit Anchorage, Seattle, Portland, San Francisco and San Diego in NOV 2009 for a West Coast Toast. Here’s to the collaborative spirit readily found in our brewing industry. Clink!","ibu":12,"name":"3767 Belgian-style IPA with Brett","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":1,"name":"Mojo Risin' Double IPA","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":1.220288966091464,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":13,"name":"Timmermans lambicus Blanche","website":"http://www.anthonymartin.be/"},{"abv":9,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":98,"name":"Shark Attack Double Red Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":10.08189908068549,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":106,"name":"HefeWeizen","state":"California"},{"abv":11.724065948023657,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":60,"name":"Brown Bear Brown Ale","state":"California"},{"abv":4.6999998093,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":38,"name":"Helles Golden Lager","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":10,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":84,"name":"Leviathan 2004","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":7.1999998093,"address":"Viale Venezia 9","category":"German Lager","city":"Udine","coordinates":[46.0597,13.2269],"country":"Italy","ibu":4,"name":"La Rossa"},{"abv":8.5,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":95,"name":"Tatonka Stout","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5.5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":36,"name":"Petrus Oud Bruin","state":"West-Vlaanderen"},{"abv":8.3999996185,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":41,"name":"Maximus Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":4.6999998093,"address":"Gallowgate","category":"North American Ale","city":"Newcastle-upon-Tyne","coordinates":[40.8918,-76.7975],"country":"United Kingdom","ibu":30,"name":"Newcastle Brown Ale","state":"Northumberland"},{"abv":6.390345696078159,"address":"4301 West Wisconsin","category":"German Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":56,"name":"Foxtoberfest","state":"Wisconsin"},{"abv":5.864000716645464,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":109,"name":"Helles","state":"Wisconsin"},{"abv":4.399596288777806,"address":"220 North Randall Road","category":"North American Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":88,"name":"American Cream Ale","state":"Illinois"},{"abv":12.791066038484248,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":3,"name":"Schlafly ESB","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.9000000954,"address":"3525 Liberty Avenue","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"When the British introduced draught pale ale to America, the Pipe Organ Pale Ale is what they had intended. It is truly British in character. Brewed with pale ale malt and a touch of caramel malt, it has a light copper color and subtle body. The maltiness is carefully balanced with only the best English hops - East Kent Goldings. Although this beer has a fair amount of hops, the caramel maltiness perfectly balances its profile.","ibu":109,"name":"Pipe Organ Pale Ale","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":7.430896169540234,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":90,"name":"Old Scratch Barleywine 1997","state":"Wisconsin"},{"abv":6.207525614881302,"address":"61 Bridge Street","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":116,"name":"ESB","state":"New Jersey"},{"abv":4.439619887869486,"address":"23 White Deer Plaza","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":99,"name":"Gold","state":"New Jersey"},{"abv":3.9000000954000003,"address":"Brauhausplatz 1","category":"German Lager","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":52,"name":"Black Abbot / Schwarzer Abt","state":"Brandenburg"},{"abv":0.5535678701724445,"address":"Einsteinstrae 42","city":"Mnchen","coordinates":[48.1355,11.6009],"country":"Germany","ibu":111,"name":"Helles Naturtrub","state":"Bayern"},{"abv":2.9265748392770563,"address":"2617 Water Street","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":59,"name":"White Bière","state":"Wisconsin"},{"abv":13.040075977549439,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":106,"name":"Black Forest","state":"Louisiana"},{"abv":8.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":49,"name":"Vintage Ale 1999","state":"London","website":"http://www.fullers.co.uk/"},{"abv":1.7223573609144172,"address":"1800 West Fulton Street","category":"German Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":56,"name":"Oktoberfest","state":"Illinois"},{"abv":9,"address":"rue du Castel, 19","city":"Irchonwelz","coordinates":[50.620400000000004,3.7592],"country":"Belgium","ibu":50,"name":"Gouyasse / Goliath","state":"Hainaut"},{"abv":11.587444874077269,"address":"57 Hamline Avenue South","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":56,"name":"Gunflint Gold Ale","state":"Minnesota"},{"abv":9.691168769808916,"address":"7050 Monterey Street","category":"North American Ale","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":2,"name":"Desperado Pale Ale","state":"California"},{"abv":12.445760574560946,"city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":86,"name":"Equinox E.S.B.","state":"Illinois"},{"abv":4.6999998093,"address":"302 N. Plum St.","category":"Other Style","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Just in time for summer, this American wheat lager style beer with the subtle suggestion of real, fresh strawberries, is the perfect pint of true refreshment. Light and crisp, our Strawberry Wheat is a \"must try\" for fruit and beer lovers alike.","ibu":36,"name":"Lancaster Strawberry Wheat","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":2.072052710073704,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":83,"name":"Thomas Kemper Porter","state":"California"},{"abv":4.448638469259478,"address":"1875 South Bascom Avenue #700","category":"North American Lager","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":72,"name":"Pilsner","state":"California"},{"abv":1.7038797608434708,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":115,"name":"Triple Treat","state":"Wisconsin"},{"abv":5,"address":"5080 Rue St-Ambroise","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":116,"name":"St-Ambroise Pale Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":0.421644204099918,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":55,"name":"Rainbow Trout Stout","state":"Colorado"},{"abv":4.687374243524337,"address":"4057 Erie Street","category":"Irish Ale","city":"Willoughby","coordinates":[41.6416,-81.4066],"country":"United States","ibu":107,"name":"Wenceslas","state":"Ohio"},{"abv":7.983820645687052,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":102,"name":"Enkel Biter","state":"Wisconsin"},{"abv":8,"address":"Kerkstraat 92","category":"Belgian and French Ale","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","description":"LOOK:\n\nTripel Karmeliet is a very refi ned and complex golden-to-bronze brew with a fantastic creamy head. These characteristics derive not only from the grains used but also from restrained hopping with Styrians and the fruity nature (banana and vanilla) of the house yeast.\n\n\nSMELL:\n\nVery refined and complex. Hints of vanilla mixed with citrus aromas.\n\n\nTASTE:\n\nTripel Karmeliet has not only the lightness and freshness of wheat, but also the creaminess of oats together with a spicy lemony almost quinine\n\ndryness.","ibu":44,"name":"Triple Karmeliet","state":"Oost-Vlaanderen"},{"abv":6.550097627499016,"address":"23 Commerce Street","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":18,"name":"American Blonde","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":10.05958728399482,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":23,"name":"Biloxi Light","state":"Mississippi"},{"abv":5.5,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Launched in March 1995, Raftman is a beer with a coral sheen that is slightly robust. It contains 5.5 percent alcohol and combines the character of whisky malt with the smooth flavours of choice yeast. It has a subtle and exceptional bouquet that creates a persistent smooth feel. Raftman complements fish, smoked meat and spicy dishes. .\n\n\nIt is brewed to commemorate the legendary courage of the forest workers These hard working men knew when to settle their differences and share their joie de vivre with a beer and a whisky.","ibu":105,"name":"Raftman","state":"Quebec","website":"http://www.unibroue.com"},{"abv":11.380707969170897,"address":"529 Grant St. Suite B","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":9,"name":"Dierdorfer Gold","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.9000000954,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","description":"From the Goose Island website:\n\n\n\"Our IPA recalls a time when ales shipped from England to India were highly hopped to preserve their distinct taste during the long journey. The result, quite simply a hop lover's dream. And this classic ale adds a fruity aroma, set off by a dry malt middle, to ensure that the long hop finish is one you'll remember.\";\"0","ibu":11,"name":"Goose Island IPA","state":"Illinois"},{"abv":10,"category":"Belgian and French Ale","city":"Breendonk","coordinates":[51.0442,4.3257],"country":"Belgium","description":"In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\n\n\n \n\n\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\n\n\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \n\n\nAbout Maredsous\n\n\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\n\n\"These beers have long been my favourites. Above all the 10° is an especially tasty beer.\";\"0","ibu":99,"name":"Maredsous 10 Tripple"},{"abv":6.3000001907,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our India Pale Ale is a full-bodied, golden-colored ale that is exceptionally refreshing. The “Double” refers to the beer’s huge hop character and malt base that give this beer its great complexity.","ibu":25,"name":"India Pale Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.8000001907000005,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"History states that the first Oktoberfest was on October 12, 1810: For the commemoration of the marriage between Crown Prince Ludwig and Princess Therese of Saxe-Hildburghausen. Keeping up with Erie Brewing’s German brewing influence, our brewer creates Fallenbock, a classic Oktoberfest lager that is a harmonious marriage of classic malts and hops that has a wonderful clean and crisp flavor to celebrate Autumn and Oktoberfest.","ibu":71,"name":"Fallenbock","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":7.0999999046,"address":"545 Canal Street","category":"North American Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Wickedly tasty red ale packed with a full aroma from dry hopping and a massive hop flavor. Specially brewed with all European malts and West Coast whole flower hops. The result is a rich ruby red color; lacy collar and a feast of hop aroma and flavor.","ibu":23,"name":"Hedonism Ale","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":8.3000001907,"address":"100 Industrial Way","category":"Belgian and French Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":115,"name":"Allagash Fluxus 09","state":"Maine","website":"http://www.allagash.com/"},{"abv":9.5,"address":"22 Park Place","category":"German Lager","city":"Butler","coordinates":[41.0016,-74.3403],"country":"United States","description":"Also referred to as a Doppelbock, this is the strongest beer made by High Point. Rich creamy head with bouquet of wheat malt, black current, clove, and apple. Deep full flavors of caramel and chocolate malt balance with hops for a smooth warming character. The finish is smooth and malty leading to a subtle alcohol and dark caramel finish. The wonderful balance of this beer provides a complex profile that hides the 9.5% alcohol content. The perfect companion for a cold winter night.","ibu":14,"name":"Ramstein Winter Wheat","state":"New Jersey","website":"http://www.ramsteinbeer.com/"},{"abv":10.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":47,"name":"Behemoth Barley Wine","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":7,"address":"2519 Main St.","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"Brewed to give the stout a smoother, almost slick, mouthfeel with a nice finish of coffee provided by Cumberland Coffee and Tea Company. Dark malts are used to give this beer a very complex roast flavor. Lower bittering rates ~30 IBU’s helps put the flavor highlighting the maltiness, and roasted malt. ABV is coming in around 7% on this one!","ibu":68,"name":"Planet Bean Coffee Stout","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Our Black Cat Stout is brewed using a blend of Chocolate, Carafa, Crystal and Munich malts. A small amount of wheat and oatmeal are added to give the beer body and mouth feel. Small amounts of roasted malts are added to give the beer a dry \n\ncoffee finish.","ibu":62,"name":"Black Cat Stout","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.5,"address":"2713 El Paseo Lane","category":"Belgian and French Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","ibu":57,"name":"Abbey Extra","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":3.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"This ale is the product of brewing with a selection of barley and wheat malt, and with no added sugar. This traditional brewing approach provides the smooth malt character which is balanced by a triple hopping of the brew with Pride of Ringwood and Saaz hops. The brew has fermented similarly to its stablemates Pale and Sparkling Ale, with the customary secondary fermentation in the bottle and can.","ibu":25,"name":"Coopers Mild Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.1999998093,"address":"Rue de l'Abbaye 8","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"Yellowish-brown colour, with a more pronounced aroma, more fruits and a slight amount of Demi-Sec. This variety constitutes the largest proportion of production.","ibu":99,"name":"Rochefort 8","state":"Namur"},{"abv":14.02814757274012,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":63,"name":"Oak Stout","state":"Washington"},{"abv":9.210130361482774,"address":"300 West Fourth Street","category":"North American Ale","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":32,"name":"Hopluia","state":"Nebraska"},{"abv":14.48591024181651,"address":"Brenplatz 7","category":"German Ale","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":30,"name":"See-Weizen Bio-Hefeweizen","state":"Baden-Wrttemberg"},{"abv":6.8000001907000005,"address":"2804 13th Street","category":"British Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":97,"name":"Cow Palace Scotch Ale","state":"Nebraska"},{"abv":10,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","ibu":117,"name":"Delirium Noël","state":"Oost-Vlaanderen"},{"abv":6.397422222536892,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":33,"name":"Belgian Tripel","state":"California"},{"abv":6.659628359073237,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":106,"name":"Steelie Brown Ale","state":"Washington"},{"abv":5.5999999046,"address":"175 Bloor Street East","category":"Belgian and French Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","description":"This full-bodied ale is brewed with roasted malts and a hint of Dark Belgian sugar for a perfectly balanced taste.","ibu":18,"name":"Full Moon Winter Ale","state":"Ontario"},{"abv":6.016452350490113,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":32,"name":"Bière de Mars","state":"Luxembourg"},{"abv":4.8000001907000005,"address":"Wielandstrae 14-16","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2292,6.7925],"country":"Germany","ibu":22,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":13.160845571192741,"address":"1080 West San Marcos Boulevard","category":"British Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":62,"name":"Old English Ale","state":"California"},{"abv":13.780431098974159,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":79,"name":"Tripel Vision","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.5,"address":"20, rue d'Houdeng","city":"Le Roeulx","coordinates":[50.5018,4.1086],"country":"Belgium","ibu":80,"name":"Brune / Bruin","state":"Hainaut"},{"abv":2.915223542096955,"address":"620 South Madison Street","category":"North American Lager","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":83,"name":"Light Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4,"address":"1213 Veshecco Drive","category":"Belgian and French Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Hot, Hazy summer days call for a craft beer that refreshes. Have no fear – Sunshine Wit is here! Sunshine Wit is a refreshingly smart-assed ale that will satisfy, especially when the mercury is rising. Add a slice of orange for an extra blast of flavor! Sunshine Wit is a “white ale” or “wit” – a hazy yellow wheat beer with a subtle citrus flavor and remarkable drinkability at 4.0% alcohol by volume. Let sunshine wit help you chill out on the hottest, humid, heat-stricken days of summer.","ibu":6,"name":"Sunshie Wit","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":12.953636064536111,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":61,"name":"Silver Cream","state":"Wisconsin"},{"abv":8.547218119330038,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":73,"name":"Honey Lager","state":"Nebraska"},{"abv":12.618262267567733,"category":"German Ale","city":"Sanctuary Cove","coordinates":[-27.8539,153.359],"country":"Australia","ibu":119,"name":"Golden Harvest Weizenbier","state":"Queensland"},{"abv":13.007494334431986,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":12,"name":"1845 Celebration Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":5.570675003331223,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":90,"name":"5th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.8000001907000005,"address":"639 Conner Street","category":"North American Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":43,"name":"Blind Tiger Pale Ale","state":"Indiana"},{"abv":1.8506422821641633,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":51,"name":"Schlafly Pilsner","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":2.7831048035526464,"address":"4301 West Wisconsin","category":"German Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":23,"name":"Winnebago Wheat","state":"Wisconsin"},{"abv":11.436448961734015,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":28,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":12.960956713199264,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":32,"name":"Thomas Kemper Porter","state":"California"},{"abv":9.681704721592258,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":96,"name":"Black Hawk Stout","state":"California"},{"abv":7.730934976510632,"address":"2920 North Henderson Ave","category":"North American Lager","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":10,"name":"Golden Wheat","state":"Texas"},{"abv":12.229570315207829,"category":"North American Lager","city":"Rose City","coordinates":[44.4214,-84.1167],"country":"United States","ibu":29,"name":"Amber Lager","state":"Michigan"},{"abv":4.9000000954,"address":"Brauerei-Diebels-Strae 1","category":"North American Ale","city":"Issum","coordinates":[51.5331,6.4213000000000005],"country":"Germany","ibu":86,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":6,"address":"3178-B Bladensburg Rd. NE","category":"North American Ale","city":"Washington","country":"United States","description":"The Public","ibu":21,"name":"The Public","state":"DC","website":"http://www.dcbrau.com/"},{"abv":3.3092869787338253,"address":"One Busch Place","category":"Irish Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Born of Irish tradition, this all-malt ale uses kilned and toasted malts to produce its all-natural, signature red shade. A beer with exceptional balance, Irish Red displays an initial sweetness that fades to a clean, dry finish.","ibu":59,"name":"Michelob Irish Red","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"(512) India Pale Ale is a big, aggressively dry-hopped American IPA with smooth bitterness (~65 IBU) balanced by medium maltiness. Organic 2-row malted barley, loads of hops, and great Austin water create an ale with apricot and vanilla aromatics that lure you in for more.","ibu":59,"name":"(512) IPA","state":"Texas","website":"http://512brewing.com/"},{"abv":4.6999998093,"address":"12 Old Charlotte Highway","category":"Other Style","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"An invigorating wheat beer with 100% organic grains, a hint of rye and the tang and hue of organic hibiscus, this refreshing brew is as cool as the breeze that blows down from Mount Mitchell to Cattail Peak. Enjoy this delicious creation when the hottest summer day demands the best of the Blue Ridge.","ibu":96,"name":"Cattail Peak","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":10,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Chicken Killer Barley Wine is the revolutionary beer that will someday define America's unique Barley Wine style. It is brewed with twice the ingredients of the Santa Fe Brewing Company's other beers, and only half the usual amount of liquid is extracted from these ingredients. This makes one substantial beer. At over ten percent alcohol, Chicken Killer is actually as substantial as wine, but this is not to say that it is difficult to drink. On the contrary; be careful with this one. The flavors of the beer are at first as overwhelming as the intense Santa Fe sun. But in the same way our sun gives us the unrivaled brilliant colors of Santa Fe, the potency of Chicken Killer gives us the remarkable spectrum of flavors that can be found in no other beer, in no other city. If you did not have the opportunity to try last year's vintage, come try this year's!","ibu":65,"name":"Chicken Killer Barley Wine","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":3.5,"address":"209 Lakeside Avenue","category":"Other Style","city":"Coeur d'Alene","coordinates":[47.6745,-116.784],"country":"United States","ibu":44,"name":"Huckleberry Ale","state":"Idaho","website":"http://www.cdabrewing.com/"},{"abv":7.5,"address":"9750 Indiana Parkway","category":"Irish Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":67,"name":"Alpha Klaus Xmas Porter","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6.75,"address":"215 1/5 Arch St.","category":"Other Style","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This Wheat ale is made with a little Voodoo Twist. We use our house Belgian Ale yeast and add the average unmalted wheat, wheat, barley,raw oats, malted rye and just add more of each. Hopped evenly and spiced with coriander, bitter and sweet orange peel, juniper berries, 12 varieties of peppercorns,lemon grass and caraway. About 6.75% alc by vol. \n\n\nBottle Conditioned and Refermented. NOT A WIT BIER!!! Just stuff we like in beer that goes great with food. \n\n\nThis beer is to be the answer to those hot summer days. Blows away carbonated water!!!!!","ibu":115,"name":"White Magick of the Sun","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":8.5,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"Barley Wine Style Ale is a big beer made with six different malts (Pale Ale, Crystal, Caramunich, Wheat, Chocolate and Roasted Barley) and balanced with a very full hop charge of Summit, Challenger and Fuggles hops. It is a deep reddish brown color with a complex fruity nose, a very full body, and an interesting balance between grains and hops which ends with a pleasing dry taste. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit.","ibu":55,"name":"Pugsley's Signature Series Barley Wine Style Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.5,"address":"2804 13th Street","category":"German Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":62,"name":"Tin Lizzie Hefeweizen","state":"Nebraska"},{"abv":4.5999999046,"address":"2804 13th Street","category":"Irish Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":44,"name":"Princess of Darkness Porter","state":"Nebraska"},{"abv":4.141040444889757,"address":"35-C West Sunset Way","category":"North American Ale","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":83,"name":"Frosty Frog","state":"Washington"},{"abv":4.6999998093,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":19,"name":"Cypress Honey Lager","state":"British Columbia"},{"abv":3.2680782512313944,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":96,"name":"Nut Brown Ale","state":"British Columbia"},{"abv":5.0999999046,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":62,"name":"Ur-Pils"},{"abv":11.085080813963746,"address":"Zornedinger Strae 2","category":"German Ale","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":87,"name":"Ur-Weisse","state":"Bayern"},{"abv":7.5,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The flavour of this beer is pleasantly soft and is characterized by a delicate bitterness where the balance between malt and hop is based upon a fruity orange taste with a straight fresh after taste (7.5% alcohol content)","ibu":103,"name":"Watou Tripel","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":4.9000000954,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Velvety black and perfectly opaque, our bottled Dry Stout is the somewhat livelier companion to our popular draught version of this enduring style. This surprisingly smooth, drinkable beer is a delightful harmony of smoky roasted flavors and tangy, coffee-like notes.","ibu":50,"name":"Boulevard Dry Stout","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5.5999999046,"address":"39176 Argonaut Way","category":"North American Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":111,"name":"Grid Iron Amber Ale","state":"California"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":25,"name":"Flemish Primitive Wild Ale (Spoon Whacker)","state":"Oost-Vlaanderen"},{"abv":4.4000000954,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":12,"name":"Silk Lady","state":"Washington"},{"abv":14.268860112355096,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":47,"name":"Brunette Nut Brown Ale","state":"Nebraska"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our take on a classic summer ale. A toast to weeds, rays, and summer haze. A light, crisp ale for mowing lawns, hitting lazy fly balls, and communing with nature, Hocus Pocus is offered up as a summer sacrifice to clodless days.\n\n\nIts malty sweetness finishes tart and crisp and is best apprediated with a wedge of orange.","ibu":7,"name":"Hocus Pocus","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.465561481324226,"address":"800 LaSalle Plaza","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":94,"name":"St. Paul Pilsner","state":"Minnesota"},{"abv":4.5999999046,"address":"33 Main Street","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":2,"name":"Cappa Cappa Crusher","state":"New Jersey"},{"abv":3.8434220923720375,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":20,"name":"Hard Times Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":2.597626430307197,"address":"Einsteinstrae 42","category":"German Lager","city":"Mnchen","coordinates":[48.1355,11.6009],"country":"Germany","ibu":67,"name":"Unimator","state":"Bayern"},{"abv":7.261499035714685,"address":"Augsburgerstrae 41","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":90,"name":"König Ludwig Dunkel","state":"Bayern"},{"abv":14.800897276911616,"address":"Lichtenfelser Strae 9","category":"German Ale","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":19,"name":"Kapuziner Weißbier","state":"Bayern"},{"abv":9.14485399001074,"address":"Taipei","category":"North American Lager","city":"Taipei","coordinates":[25.026,121.472],"country":"Taiwan, Province of China","ibu":47,"name":"Beer"},{"abv":8.616888864880682,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":64,"name":"XXXXX Stout","state":"Washington"},{"abv":1.2691479412820383,"address":"617 Fourth Street","category":"North American Lager","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":59,"name":"Hefeweizen","state":"California","website":"http://www.lostcoast.com/"},{"abv":6.789439977885486,"address":"16 East Route 66","category":"Irish Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":51,"name":"Blackbird Porter","state":"Arizona"},{"abv":0.12370529633249694,"city":"Kulmbach","coordinates":[50.1077,11.453],"country":"Germany","ibu":55,"name":"Original Pils","state":"Bayern"},{"abv":0.5297224720434357,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":35,"name":"Capital Maibock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":2.728802922338586,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":9,"name":"Hopping Turtle Pale Ale","state":"Wisconsin"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Genuine Honey Lager was introduced in 2005 in response to consumer demand for honey lagers. Labatt Genuine Honey uses genuine, all-natural, 100% Canadian honey to give consumers a softer, smoother taste. This naturally-aged lager is brewed to the same uncompromising standards applied to every Labatt beer. Genuine Honey Lager is the real thing!","ibu":40,"name":"Genuine Honey Lager","state":"Ontario"},{"abv":9.516771193436096,"address":"PO Box 316","category":"Irish Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":93,"name":"4868 Dark Wheat","state":"California"},{"abv":5.1999998093,"category":"Other Style","country":"United Kingdom","description":"A silky, crisp, and rich amber-colored ale with a fluffy head and strong banana note on the nose.","ibu":66,"name":"Wells Banana Bread Beer","website":"http://www.bombardier.co.uk/bombardier"},{"abv":6,"address":"High Street","category":"Other Style","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":96,"name":"Winter Welcome 2008-2009","state":"North Yorkshire"},{"abv":5.8000001907000005,"address":"Vesterflledvej 100","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","description":"Original Dark Lager is brewed according to J.C. Jacobsen's original recipe. The colour is chestnut. It has a Hersbrucker hiop aroma while the floor malted Munich malt adds a caramel character. The carbonisation is gentle and the hop bitterness is soft. Enjoy at 6-8C.","ibu":98,"name":"Jacobsen Dark Lager"},{"abv":5.6999998093,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Orchard White is an unfiltered, bottle conditioned Belgian-style witbier. This hazy, straw yellow beer is spiced with coriander, citrus peel and lavender added to the boil and whirlpool. A spicy, fruity yeast strain is used to add complexity, and rolled oats are added for a silky texture.","ibu":85,"name":"Orchard White","state":"California","website":"http://www.thebruery.com/"},{"abv":4.5,"address":"80 LAMBERT LANE","category":"British Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"It's been with us from the start and hasn't changed since that first brew way back in 1996. Ample quantities of caramel malt give this English ale a soft copper hue and the colorful addition of carapils malt adds a slight sweetness you might mistake for honey.","ibu":30,"name":"River Horse Special Ale","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":8,"address":"339 Fairground Rd","category":"Belgian and French Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"The Dubbel is a nice brown creamy sweet, malty and strong ale. It is a traditional Belgian dubbel ale with a secondary fermentation. This complex ale has many flavor characteristics. At 8% abv you will notice a slight alcohol warmth at the finish .","ibu":8,"name":"Eislin Dubbel","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":6,"address":"140 North Third Street","category":"Other Style","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This Belgian style pumpkin ale was inspired by the legendary midnight ride of Ichabod Crane. It is a Belgian style ale complimented by a light touch of pumpkin and spice. Fresh toasted pumpkins are added in the mash with the grains adding a touch of the season to the brew. The complex fruitiness and dryness of the yeast is enhanced by the addition of sugars during fermantation. The beer is lightly spiced with pumpkin spice, all spice, and brown sugar. The pale and toasted malts used, provide a pie crust taste and smell in the beer as the higher alcohol's produced round out the finish.","ibu":4,"name":"Ichabod's Midnight Ride","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":7.844195257839369,"address":"140 North Third Street","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"0","ibu":58,"name":"Lovitz Lager \\\"Watermelon Lager\\\";\"8","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":5,"category":"Belgian and French Ale","city":"Tournai","coordinates":[50.6059,3.3884],"country":"Belgium","description":"The Daas Organic Witte is very well received by women beer drinkers; it is a naturally cloudy Belgian wheat beer. Its fruity blend of subtle citrus (baked oranges) and spice (coriander) flavors compliment its crispy dry and bitter hop finish.","ibu":57,"name":"Daas Organic Witte","website":"http://www.daasbeer.com/"},{"abv":5.3000001907,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Sun Dog is an unfiltered beer, with a naturally cloudy appearance and fuller texture which allows it to stand up to spicy foods like Thai noodle salads and Cuban sandwiches. The beer is best served in a tall, wide-mouthed glass which opens up the aromas of the beer and showcases its beautiful long-lasting head of white foam.","ibu":100,"name":"Sun Dog Amber Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":12,"name":"Alena","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":6,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Black Diamond Bock is a rich, malty brew, made with traditional German malts and hops and fermented with a lager yeast. Aged for months for a rich but smooth malty taste. A nice reward for enduring your winter months.","ibu":23,"name":"Saranac Black Diamond Bock","state":"New York","website":"http://www.saranac.com"},{"abv":5,"category":"British Ale","country":"United Kingdom","ibu":31,"name":"Duchy Originals Organic English Ale"},{"abv":5.1999998093,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A German style Pilsner, pale gold in color, medium bodied with a malty aroma and a crisp hop bitterness (100% Sterling hops). Uber Pils is brewed with three Great Western and two Weyermann malts, Czech Pils Yeast and Free Range Coastal Waters. UberFest Pils is available in the classic Rogue 22-ounce bottle and kegs, from late autumn through early spring. No Chemicals, Additives, or Preservatives","ibu":112,"name":"Über Pilsner","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Weldspatter IPA is not your typical India Pale Ale. First of all, it isn’t as aggressively hopped as many other American versions. Second, it isn’t quite as pale. Balance is a lovely thing in beers and Weldspatter IPA achieves balance without compromising hop presence. The hop flavor and aroma abound, but the bitterness is held in check to give our IPA a pleasant malt character as well.","ibu":83,"name":"Weldspatter IPA","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":8,"address":"152 Avenue St Simond","city":"Aix les Bains","coordinates":[45.7075,5.9153],"country":"France","ibu":93,"name":"Yeti"},{"abv":10.199999809,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"By far the biggest dog in the yard... Horn Dog Barley Wine is a dark and malty English-style Barely Wine that is aged for a minimum of three months before being packaged. Like a fine wine, this beer will only get better with age when stored at optimum conditions.","ibu":15,"name":"Horn Dog","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.6999998093,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"Fish Tale Organic India Pale Ale is a medium-bodied beer with a rich golden color. The organic pale and crystal malts lay down a firm malt body. This provides the backbone for an assertive hop profile featuring organic Pacific Gem. The moment the Mighty Fish Brewers sampled this pungent and resinous New Zealand hop, they knew it would be perfect for their Organic I.P.A. The result: A Cascadian treasure.","ibu":48,"name":"Organic India Pale Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.8834245498579705,"address":"13300 Bothell-Everett Highway #304","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":93,"name":"Golden","state":"Washington"},{"abv":12.245452367429003,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":99,"name":"Lager","state":"British Columbia"},{"abv":5,"address":"Oberdorferstrae 9","category":"German Ale","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":47,"name":"Weizen"},{"abv":9.313137028681512,"address":"39176 Argonaut Way","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":31,"name":"Red Ale","state":"California"},{"abv":8,"address":"15 Rowland Way","category":"British Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":43,"name":"Kilt Lifter Scottish Ale","state":"California","website":"http://www.moylans.com/"},{"abv":11.03562694982872,"address":"33180 Cape Kiwanda Drive","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","ibu":3,"name":"Bridal Ale 2005","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":7.456711545382543,"address":"7791 Egg Harbor Road","category":"Other Style","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":69,"name":"Door County Cherry Wheat","state":"Wisconsin"},{"abv":4.9000000954,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","ibu":70,"name":"Columbus Pils","website":"http://www.stieglbrauerei.at/"},{"abv":9.821479707553655,"category":"Irish Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":117,"name":"Railroad Street Porter","state":"Wisconsin"},{"abv":0.7196508647816413,"category":"North American Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":32,"name":"Transcendental Wheat Beer","state":"Wisconsin"},{"abv":0.5808150254220845,"address":"2100 Casino Drive","city":"Laughlin","coordinates":[35.1584,-114.573],"country":"United States","ibu":33,"name":"Colorado Belle Dark","state":"Nevada"},{"abv":4.784469232773433,"category":"North American Lager","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":56,"name":"Smoked Porter","state":"Illinois"},{"abv":4.9000000954,"address":"Inagh","city":"Ennis","coordinates":[32.3293,-96.6253],"country":"Ireland","ibu":58,"name":"Red Biddy / Real Biddy"},{"abv":9.110960348853304,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","ibu":84,"name":"Echte Kriek","state":"West-Vlaanderen"},{"abv":5,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":104,"name":"Pale Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":13.46952829749715,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":4,"name":"Clearview Light","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":7,"address":"ul. Bolesawa Chrobrego 26","category":"German Lager","city":"Namysłów","country":"Poland","ibu":112,"name":"Rycerskie"},{"abv":6,"category":"Irish Ale","city":"Rochester","coordinates":[43.161,-77.6109],"country":"United States","ibu":74,"name":"Ironhead Porter Old No. 3","state":"New York"},{"abv":8.393152983889522,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"This Wit beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing.","ibu":34,"name":"Satsuma Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":1.8555408583803112,"address":"300 West Fourth Street","category":"North American Lager","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":26,"name":"Cortland Wheat","state":"Nebraska"},{"abv":11.897016371604911,"category":"North American Lager","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":9,"name":"Icemaster","state":"Wisconsin"},{"abv":5,"address":"50 North Airport Parkway","category":"Other Style","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":76,"name":"Razz-Wheat","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":9.284950654646124,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":118,"name":"Chapeau Tropical Lambic","state":"Vlaams Brabant"},{"abv":8.284925874346747,"address":"161 Duke Street","category":"North American Lager","city":"Glasgow","coordinates":[55.8593,-4.2324],"country":"United Kingdom","ibu":36,"name":"Lager","state":"Scotland"},{"abv":0.9785016417935133,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":42,"name":"Capital Munich Dark","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":11.86626283726126,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":113,"name":"Nitro Pale","state":"Wisconsin"},{"abv":13.473434941770758,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":104,"name":"Moll Dubh Irish Ale","state":"Wisconsin"},{"abv":0.19730777232505714,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":47,"name":"White Fathers Witbier","state":"Wisconsin"},{"abv":6,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":66,"name":"Blanche des Honnelles","state":"Hainaut"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced nationally in 1982, Bud Light is brewed using a blend of domestic and imported hops as well as a combination of barley malts and rice. It contains more malt and hops by ratio of ingredients than Budweiser, which gives the brew a distinctively clean and crisp taste.","ibu":115,"name":"Bud Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.126195817719632,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":35,"name":"Meyer ESB","state":"California"},{"abv":11.20186796470929,"address":"249 North Redwood Highway","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":99,"name":"ESB","state":"Oregon"},{"abv":5.4000000954,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":32,"name":"Extra Pale Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":4.5,"address":"Oostrozebekestraat 43","category":"Belgian and French Ale","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":62,"name":"St. Louis Gueuze","state":"West-Vlaanderen"},{"abv":14.515191619394388,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":113,"name":"Windy City Pilsner","state":"Illinois"},{"abv":7.1999998093,"address":"231 San Saba Court","category":"British Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Our winter seasonal is inspired by the great ales of the UK but brewed with a distinctively American attitude. English crystal malt gives Phoenixx its subtle toffee and caramel notes, but this ale is about hops. The blend of English hops, highlighted by its namesake, Phoenix, yields a complex hop character that dominates this special brew.","ibu":113,"name":"Phoenixx Double ESB","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":8.5,"address":"3924 West Spruce Street Suite A","category":"British Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Big Sound Scotch Ale is dedicated to our good buddy Gino, the most punk rock bagpiper you'll ever meet, and the rest of the men and women of Tampa Bay Pipes and Drums. Brown in color, Big Sound has huge notes of dark sweet toffee with underlying mild notes of coffee in the aroma. The flavor starts with a slight note of cherry and then opens into a Goliath of a malt character with notes of dark sweet toffee, slight hints of coffee and mild notes of toasted bread in the finish. Big Sound Scotch Ale pairs well with Haggis, Highland Games, Huge Heads and Enormous Pillows and of course Bagpipe music.","ibu":79,"name":"Big Sound Scotch Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":8,"address":"Guido Gezellelaan 49","category":"Belgian and French Ale","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","description":"Gouden Carolus Hopsinjoor completes the taste pallet of the gamma Carolus-beers. \n\n\n\"Hopsinjoor\" is a wordplay to for one thing the several hops which were used, and on the other hand the typical character of Mechelen of Gouden Carolus: the figure \"opsinjoor\" is intertwined with the history of Mechelen. \n\n\n4 types of hops are used: Golding, Spalt, Hallertau and Saaz. These hops were fractioned at several times in the cooking process in order to keep a maximum of aroma.\n\n\nRegarding to taste we can say that the beer has a gentle, but nevertheless bitter aftertaste. Gold-yellow colour. Hoppy aroma.","ibu":115,"name":"Gouden Carolus Hopsinjoor","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5.8000001907000005,"address":"16 Tobey Road","category":"German Lager","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Originally brewed to celebrate the beginning of the German brewing season and the 1810 wedding of crown prince Ludwig of Bavaria and his bride-to-be, princess Therese of Saxon-Hildburghausen. This amber beer was brewed in March (\"Marzenbier\") and left to age in cool lagering caves during the heat of the summer. Our rich and satisfying Bavarian-style OctoberFest comes from a special blend of imported German malts that creates a full-bodied brew and stresses a malty flavor and lingering aroma. Gently hopped and delicately balanced, its true-to-style, slow fermentation and long, cold maturation produces a luxuriously smooth, award-winning brew.","ibu":45,"name":"Hooker Oktoberfest","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":5.8000001907000005,"address":"33180 Cape Kiwanda Drive","category":"North American Ale","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","description":"Our American Brown Ale has a dark brown color, with a balanced aroma of roasted malts and Northwest-grown hops. The sweetness of the ale and crystal malts blend beautifully with the assertive flavors of Cascade and Mt. Hood hops. A brew to be savored.\n\n\nThis beer originated as a prize-winning homebrew many years ago. When Darron, the Head Brewer, began designing the beers for the Pelican Pub and Brewery, he adapted his old 5 gallon homebrew recipe to his new 15 bbl (465 gallon) brewery. It was well worth the effort, for not only has the Doryman's Dark Ale been a perennial favorite here at the Pelican Pub, but it has garnered prestigious professional awards.","ibu":63,"name":"Doryman's Dark Ale","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":4.9000000954,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Foster's® Lager is a uniquely Australian beer, brewed with the finest sun-dried malted barley, the purest water, and Foster's® own specially bred 'Pride of Ringwood' hops imported directly from Australia to give the beer an authentic flavor. Foster's® Lager Beer has always been at the forefront of brewing technology and the Foster's® Lager brewed today is the result of over a century of attention of the brewing art. Quality has been the strength of Foster's® since its earliest days and remains a paramount concern at every stage of the beer's journey from brewery to consumer. Foster's® crisp, clean flavour won it immediate international acclaim when it was first brewed in Melbourne in 1888. Today, more than one hundred years later, it is still recognized as one of the world's best beers.","ibu":10,"name":"Foster's Lager Beer","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":7.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":91,"name":"Helios","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":8.8999996185,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Enjoy the ‘twilight’ for the bright and brassy hops!","ibu":14,"name":"Yakima Twilight","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.595216373623831,"address":"701 Galveston Ave","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","ibu":29,"name":"Pecker Wrecker","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":7.1999998093,"address":"Viale Venezia 9","category":"German Lager","city":"Udine","coordinates":[46.0597,13.2269],"country":"Italy","description":"Birra Moretti La Rossa is a double boch beer produced using high quality 100% malted barley, giving it a rich sweet taste and an intense fragrance of roasted malt. The amber color that characterizes the beer, comes from the kind of malt used in the recipe (malt is dried, roasted barley). Another key ingredient is hops, the variety used is particularly aromatic, giving a characteristic bitter aftertaste and a delicate fragrance to the beer. The Master Brewers advise a service temperature between 10° and 12° C.","ibu":112,"name":"Birra Moretti La Rossa"},{"abv":4.1999998093,"address":"PO Box 271","city":"Manila","coordinates":[14.5833,120.967],"country":"Philippines","ibu":1,"name":"San Miguel 1516"},{"abv":3.2184306621862016,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Dark Amber Ale","ibu":99,"name":"Sharkbite Red","state":"California","website":"http://www.portbrewing.com/"},{"abv":6,"address":"529 Grant St. Suite B","category":"German Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A traditional old world German Oktoberfest made with German grains, yeast and hops.","ibu":114,"name":"Barktoberfest","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":11.542495840173322,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":85,"name":"Solar Flare Summer Ale","state":"Nebraska"},{"abv":5.5,"address":"50 North Airport Parkway","category":"North American Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":72,"name":"Gnaw Bone Pale Ale","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":6.062919484578591,"address":"Bolkerstrae 41-47","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2261,6.7745],"country":"Germany","ibu":82,"name":"Altbier","state":"Nordrhein-Westfalen"},{"abv":12.06065045213114,"address":"3560 Oakwood Mall Drive","category":"Irish Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":80,"name":"Poplar Porter","state":"Wisconsin"},{"abv":11.339359272226762,"address":"1327 North 14th Street","category":"German Lager","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":44,"name":"Maslifter Oktoberfest","state":"Wisconsin"},{"abv":8.690356761764646,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":70,"name":"Oude Kriek","state":"Vlaams Brabant"},{"abv":3.89064524260635,"category":"German Lager","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":38,"name":"Adler Bräu Doppel Bock Beer","state":"Wisconsin"},{"abv":13.126517888251234,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":59,"name":"Ding Ding Double IPA","state":"California"},{"abv":0.6504332389622036,"address":"24 Lake Mary Road","category":"North American Ale","city":"Mammoth Lakes","coordinates":[37.6484,-118.983],"country":"United States","ibu":35,"name":"Amber","state":"California"},{"abv":5.9784424099796984,"address":"1004 South Olde Oneida","category":"Irish Ale","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":29,"name":"Masterpiece Porter","state":"Wisconsin"},{"abv":8,"address":"Nieuwbaan 92","city":"Merchtem-Peizegem","coordinates":[50.985,4.2226],"country":"Belgium","ibu":50,"name":"Satan Red","state":"Vlaams Brabant"},{"abv":6,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":16,"name":"Jenlain St Druon de Sebourg"},{"abv":6.6999998093,"address":"1201 First Avenue South","category":"North American Ale","city":"Seattle","country":"United States","ibu":86,"name":"Thunder Head IPA","state":"Washington"},{"abv":6.8000001907000005,"address":"390 Capistrano Road","category":"German Lager","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":19,"name":"Illuminator Doppelbock","state":"California"},{"abv":8.6999998093,"address":"901 SW Simpson Avenue","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":21,"name":"Bond Street 19th Anniversary","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.663343891488996,"address":"417 North Broadway","category":"North American Ale","city":"Red Lodge","coordinates":[45.1913,-109.247],"country":"United States","ibu":62,"name":"Bent Nail IPA","state":"Montana"},{"abv":6,"address":"800 East Lincoln Avenue","category":"Other Style","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Ever been in a warm, cozy cabin and had a secret desire to get snowed in? To celebrate the winter season, we offer our Isolation Ale - a traditional winter brew made with premium malts imported from England. It's just one of the reasons Isolation Ale stands alone.","ibu":21,"name":"Isolation Ale","state":"Colorado"},{"abv":9.989445250787355,"address":"75-5629 Kuakini Highway","category":"Other Style","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","description":"Wailua is Hawaiian for two fresh water streams mingling. This was just the inspiration we needed for our Limited Release wheat ale brewed with tropical passion Fruit. A refreshing citrusy, sun-colored ale with the cool taste of Hawaii.","ibu":26,"name":"Wailua","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":5,"address":"905 Line Street","category":"German Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"A Brewer's Select Series, Golf is a fest-weisse hybrid or 'Festeweizen.' It will weigh in at 5.0% and is made with Munich, Wheat, and CaraVienna malts and Spalt hops.","ibu":81,"name":"Golf","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8,"address":"196 Alps Road","category":"British Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Terrapin Midnight Project Brew Two 2009. Sometime around midnight in a city nobody can agree on, the idea for Terrapin and Left Hand to brew a collaboration beer was born. Depth Charge is the second in the series of one-time releases between the two breweries. Be wary of the calm before the storm. This creamy, deeply delicious milk stout will seduce you into submission while the explosion of hand roasted gourmet espresso will blow you into next week. We Shall Drink in the breweries. We Shall Drink in the pubs, We Shall Drink the the comfort of our homes. We Shall Never Surrender.","ibu":119,"name":"Terrapin Midnight Project Depth Charge Espresso Milk Stout","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8.8000001907,"address":"No-254, Colombo Road","city":"Colombo","coordinates":[38.7548,-9.1883],"country":"Sri Lanka","description":"Lion Imperial Lager, from Sri Lanka, is brewed using the finest natural ingredients - delivering a rich smooth taste and refreshment. Enjoy its bite.","ibu":115,"name":"Imperial Premium Malt Pilsner","website":"http://www.lionbeer.com/"},{"abv":4.702795292179856,"address":"10983 Hills Road","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Kölsch style beer is a golden-blonde ale that is our version of Cologne's native style. Soft, subtle maltiness and a clean finish make it a great thirst-quencher. Kölsch pairs well with spicy foods, or by itself. Enjoy with friends and in good health. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":12,"name":"Round Barn Kölsch Style","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":6.6999998093,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"This Farmhouse Ale traces its roots to the small rustic breweries of Southern Belgium. The word Saison comes to us from the French language and it means Season. Lightly spiced with Organic Ginger, Orange Peels, Black Pepper and Grains of Paradise, this brew promises to quench your thirst on the hottest Southern California days or wherever your travels may take you. Available in 750 ml bottles and on draft at select inspired locations.","ibu":38,"name":"Red Barn Ale","state":"California","website":"http://www.lostabbey.com/"},{"abv":4.5,"address":"3115 Broad Street","category":"Other Style","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Ruddy golden, with yeast driven esters of banana, spicy clove, and nutmeg all wrapped up with a generous dose of rapscillion delight.","ibu":102,"name":"Weizen Bam Bière","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":5.25,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A kölsch-style beer, Full Circle is a refreshing celebration of our brewery’s belief in balance. The soft, well-rounded malt character, light hop profile and crisp finish bring us back around to the familiar tastes of classic, thirst-quenching beer. We recommend Full Circle with fish and just about anything from the grill.","ibu":98,"name":"Full Circle","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":6.5,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"TONGERLO CHRISTMAS 6,5°\n\nCopper-coloured beer of pure spring barley, with a touch of vanilla in the aroma, a fruity and complex flavour and a smooth aftertaste.","ibu":62,"name":"Tongerlo Christmas","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":6.928579295122974,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Pale Ale is a golden amber brew, made with Cascade hops from the Yakima Valley. Adding Cascades during conditioning captures the rich aroma of the hop, and completes the clean, well-balanced flavor of our American pale ale. Crisp, refreshing, exotically aromatic, and available all year.","ibu":69,"name":"Pale Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A Northwest Style IPA. Nice Balance of Malt and Hops, not too extreme in either direction. 2 Ingredients: Maris Otter Malt, Amarillo Hops.","ibu":6,"name":"Hoppy Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our Holiday Offering\n\nIn pre-christian times, the Celebration of darkness and light was marked with great halls filled with smoke & mirrors. Guilded goblets brimming with seasonal brews were lifted to lips, speaking a language no longer known. \n\nCenturies pass.\n\n\nThe winter wind finds its way through heavy wood doors. There is a solemn business of monks to be done. But also brewing, a season of celebration is about to begin....\n\nMore years pass.\n\nThe modern age. \n\nThe present connects the past through the brewer's art and a new beer is born.\n\nFeast of Fools... \n\nA perfect dessert beer brewed exclusively for the holiday season. Hand bottled, champagne corked. \n\nOur inky, rich, black stout, with the addition of raspberries.","ibu":90,"name":"Feast of Fools","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Amber Colored lager with a nice caramel malt flavor backed by a nice dose of Imported Hersbrucker Hops for a nice easy drinking lager.","ibu":41,"name":"Fegley's Amber Lager","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":3.8564641538519115,"address":"200 Dousman Street","category":"Irish Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":4,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":1.8217625825174422,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":17,"name":"Caber Tossed","state":"California"},{"abv":12,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":76,"name":"Malheur Black Chocolate 2003","state":"Oost-Vlaanderen"},{"abv":4.7300000191,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":35,"name":"Redwing","state":"Colorado"},{"abv":5.314462843843989,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":14,"name":"Frozen Tundra","state":"Wisconsin"},{"abv":5.400529328287414,"address":"701 West Glendale Avenue","category":"Other Style","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":105,"name":"Anniversary Ale","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":6.8000001907000005,"address":"Pramons gatv 12","category":"Irish Ale","city":"Utena","country":"Lithuania","ibu":68,"name":"Porter"},{"abv":4.103092325945314,"address":"Hartington","city":"Buxton","coordinates":[53.1407,-1.8084],"country":"United Kingdom","ibu":44,"name":"Old Izaak","state":"Derby"},{"abv":10.986336177381311,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":58,"name":"Winterfest","state":"South Carolina"},{"abv":9.079025480164425,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":20,"name":"Pioneer Black River Red","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":6.9000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"An \"India Pale Ale\" by definition is highly hopped and high in alcohol (ours is 6.9% alc./vol.).\n\n\nMedium Bodied Refreshing Ale\n\nLight-medium malt character with a heavy dose of over the top hops! Two full weeks of \"dry hopping\" give this beer its abundant hop aroma and crisp hop flavor.","ibu":78,"name":"Stone IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.6999998093,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":86,"name":"Zephyrus Pilsner","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":5.227348839917962,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":87,"name":"Mad Scow Stout","state":"British Columbia"},{"abv":7.5,"address":"Mendoza","category":"North American Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":103,"name":"Cerveza Diablo"},{"abv":4.9000000954,"address":"Papenstrae 4-7","category":"German Lager","city":"Einbeck","coordinates":[51.8162,9.8643],"country":"Germany","ibu":33,"name":"Schwarzbier / Dunkel","state":"Niedersachsen"},{"abv":5.0999999046,"address":"2201 Arapahoe Street","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Looking for something a little different? Brewed with rice and barley malts, Samurai is an easy drinking, unfiltered ale that changes the status quo for unfiltered beers. The addition of rice gives Samurai a slightly fruity, crisp, refreshing and clean taste. This is definitely not your everyday unfiltered beer.","ibu":44,"name":"Samurai","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"With only 88 calories per 341 ml bottle, Labatt Sterling is a light, refreshing beer with 1/3 less calories than regular beers. In other words, it's a great tasting beer...that won't slow you down.","ibu":34,"name":"Labatt Sterling","state":"Ontario"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Crystal was introduced to Ontario in the late 1800s as one of the first lagers brewed by Labatt. World-renowned Saaz hops are used to give this beer a clean, almost sweet taste which nicely balances the fuller body, higher bitterness and richer taste typically associated with traditional lagers.","ibu":46,"name":"Labatt Crystal","state":"Ontario"},{"abv":5,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","description":"Molson beers are imported directly from Canada. Crystal-clear, pure Canadian water, the finest Canadian prairie grains and select European hops give Molson a brewing heritage that dates back to 1786.\n\n\nMolson Canadian is Molson Brewing Company's flagship brand. Starting with crystal clear water, malted barley and the finest hops, Molson Canadian is slowly fermented to produce a smooth, refreshing beer with a genuine taste. Clean and clear, crisp and cold, Molson Canadian is a classic lager.","ibu":92,"name":"Molson Canadian","state":"Ontario"},{"abv":5.4000000954,"address":"310 Mill Creek Avenue","category":"North American Ale","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"One of our distinct classic beers brewed since 1829, Yuengling Lord Chesterfield Ale has as much rich heritage as it does flavor and appeal. Crafted in a unique two-stage European brewing style for enhanced bitterness, it utilizes both conventional kettle hopping and dry hopping after fermentation resulting in a dry sharp finish. Brewed with select hops, its distinct robust flavor is derived from a delicate combination of sweet maltiness and lingering herbal bitterness. Lord Chesterfield Ale's bright gold color is complemented by a lightly laced foam head and fragrant zesty aroma. This fine Ale compares with the very best crafty-style beers. It pairs flawlessly with many foods including seafood dishes and fine cheeses.","ibu":14,"name":"Lord Chesterfield Ale","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":7.841348936446579,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":83,"name":"Stout","state":"North Carolina"},{"abv":6.5,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"The cornerstone of our Harvest series is the beer that started the modern-day fresh hop ale phenomenon in America, our original Harvest Ale. \n\n\nCreated in 1996, Harvest Ale features Cascade and Centennial hops from the Yakima Valley in Eastern Washington. These hops are harvested and shipped as “wet” un-dried hops—the same day they are picked—to our brewery in Chico where our brewers eagerly wait to get them into the brew kettle while their oils and resins are still at their peak.","ibu":50,"name":"Harvest Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":17,"name":"Bigfoot 1996","state":"California","website":"http://www.sierranevada.com/"},{"abv":5,"address":"Ringhofferova 1","city":"Velk Popovice","coordinates":[49.9225,14.6361],"country":"Czech Republic","ibu":83,"name":"Kozel Premium"},{"abv":4.753837788977688,"address":"309 Court Avenue","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":18,"name":"ESB","state":"Iowa"},{"abv":5.5999999046,"address":"279 Springfield Avenue","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":19,"name":"Pacific Coast Ale","state":"New Jersey"},{"abv":8.053234425808428,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":89,"name":"Edelstoff","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":11.393749753408418,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":117,"name":"Zwickel","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":4.9000000954,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":102,"name":"Pilsener","state":"Niedersachsen"},{"abv":8.7761015210372,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":119,"name":"Steinworthy Oktoberfest","state":"Wisconsin"},{"abv":12.637282885582033,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":67,"name":"Blonde Ale","state":"Wisconsin"},{"abv":14.937616577766441,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":60,"name":"Pale Ale","state":"Wisconsin"},{"abv":6,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"ndia Pale Ale is a style of beer that was developed in England during the period of the British Empire. It is derived from bitter ales but contains even more alcohol and hops. This helped preserve the beer on its long sea journey around Cape Hope to India.\n\n\nBritish troops returning from India brought their love of this beer back with them so breweries began brewing it for the home market as well. Sadly, the style had mostly died out in England by the late twentieth century.\n\n\nAmerican home brewers began to brew I.P.A. because of their love for the intense hoppiness of the style. In time American I.P.A.s became much more aggressively bitter and hoppy than their historical predecessors.\n\n\nBig Eye I.P.A. is our version of this wonderful style. American Centennial hops are used exclusively to bitter, flavor, finish, and dry hop the Big Eye. Its full hop flavor is guaranteed to please the palate of the true hop head.","ibu":42,"name":"Big Eye IPA","state":"California","website":"http://www.ballastpoint.com/"},{"abv":11.895060806513056,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":85,"name":"Stuft Pizza Torrey Pines IPA","state":"California"},{"abv":3.7161976767346183,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":79,"name":"Dunkles","state":"Wisconsin"},{"abv":3.5183892896703517,"address":"105 South Second Street","category":"German Lager","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":107,"name":"Rye Bock","state":"Wisconsin"},{"abv":9.53338282201211,"address":"467 North High Street","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":63,"name":"J. Scott Francis ESB","state":"Ohio"},{"abv":3.006623767115685,"category":"Other Style","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":52,"name":"Rambling Raspberry Ale","state":"Missouri"},{"abv":13.71276952151719,"city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":38,"name":"Pirates Pilsner","state":"Ohio"},{"abv":8.701360506789449,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":1,"name":"Trolleycar Stout","state":"Wisconsin"},{"abv":4.884711640710535,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":57,"name":"Panama Limited Red Ale","state":"Illinois"},{"abv":5.101495773608641,"address":"BP 896","city":"Lom","coordinates":[32.3906,-93.3739],"country":"Togo","ibu":24,"name":"Ngoma Awooyo Special"},{"abv":8,"category":"British Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":41,"name":"Double Eagle \\\"High-Test\\\" Scotch Ale","state":"North Carolina"},{"abv":10.224248548046788,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":97,"name":"Celebration Ale 1992","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.224229834692208,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":89,"name":"ESB","state":"Illinois"},{"abv":4,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":88,"name":"Master Brew Bitter","state":"Kent"},{"abv":7.5,"address":"214 Spanish Town","category":"North American Ale","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":110,"name":"Dragon Stout"},{"abv":1.7312464226541746,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":102,"name":"Pine Tar Stout","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5,"address":"10450-L Friars Road","category":"Belgian and French Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","description":"Abbey ale with hints of bubble gum flavor.","ibu":59,"name":"Dubble Fantasy","state":"California"},{"abv":6.1999998093,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"A hops showcase in aroma, flavor and bitterness. We used the delightful Amarillo hop as the most prominent choice.","ibu":62,"name":"Richbrau India Pale Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":13.902448534915838,"address":"2 Sagamore Street","category":"Irish Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Cooper's Cave Ale Company's flagship ale is an Irish Red Ale. Three English Malts and one Belgian Munich Malt make up the grain bill. It is a full bodied Red Ale packed with flavor, blended with American Nugget hops for bitterness and East Kent Golding for flavor and aroma. This ale has turned the heads of many \"dyed in the wool\" American lager drinkers.","ibu":97,"name":"Radeau Red Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"At the Southern Tier Brewing Company, vigorously hopped beer is our standard and inspiration. We continue a commitment to innovation with our most aggressive offering yet. Unearthly is a manifestation of the brewer’s craft; skillfully balancing art and the forces of nature to produce a divine liquid. Delicately pour a taste into a fluted glass. Smell the enchanting aromas of the hops waft forward as your first sip divulges this beer’s fervent soul. To underestimate Unearthly is to trifle with the mysteries of the universe, so please consume wisely.","ibu":76,"name":"Unearthly Imperial India Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":9.1999998093,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Our Anniversary Ale this year stems from 2 pilot beers that were brewed by members of Team Stone. The first was Jeremy Moynier’s incredibly delicious Oatmeal Stout, and the second was Jake Ratzke’s amazing homebrewed Imperial Stout that had authentic Oaxacan chocolate added to the boil. We loved both beers so much that we decided to combine the recipes to make this year’s Anniversary offering: Stone 12th Anniversary Bitter Chocolate Oatmeal Stout. This beer pours deep black with a rich brown head of foam. The aroma is dominated by roast malt and cocoa. Upon tasting, the cocoa (we used unsweetened, unprocessed cacao sourced through our friends at Chuao Chocolatier) really comes through with a deep chocolate flavor and a long lasting bitter finish. The roasted grains used add coffee and licorice accents. It is a thick beer, but not sweet, with the addition of oatmeal in the mash providing a rich, silky mouthfeel that adds to the creamy texture.","ibu":26,"name":"Stone 12 Anniversery Bitter Chocolate Oatmeal Stout","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.5,"address":"1213 Veshecco Drive","category":"North American Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"The view from Oliver Perry Monument across Lake Erie’s historic Misery Bay provides a constant reminder of the hardships endured during the Battle of Lake Erie. Misery Bay IPA is brewed as a tribute to Misery Bay and Graveyard Pond, final resting place for many brave sailors and soldiers. Misery Bay IPA offers a complex malt profile loaded with American hops at 75 IBU’s, and finishes at 6.5 % alcohol by volume.","ibu":108,"name":"Misery Bay IPA","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.9000000954,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An american IPA brewed with a blend of 3 base malts and a multitude of hops.","ibu":1,"name":"Heathen","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.6999998093,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Our holiday ale. This I.D.A., India Dark Ale, is crisp, bitter and overflowing with the aroma of spruce. Perfect for the holidays.","ibu":0,"name":"El Jefe","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":10,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"Belgian-Style Quadrupel Ale","ibu":48,"name":"Reverend, The","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":6,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"An assertively hopped American Pale Ale with citrusy and piney Cascade hops.","ibu":88,"name":"Burning River Pale Ale","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":7.1999998093,"address":"Route 4 & 100A","category":"Belgian and French Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"This malty, full-bodied double alt is also know as \"Stickebier\" - German slang for \"secret brew\". Double Bag was originally offered only in our brewery taproom as a special treat to our visitors.","ibu":37,"name":"Double Bag Ale","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":5.5,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Honey Cream Ale is fermented warm like traditional cream ales but features an added twist--wildflower honey from Oregon. Honey imparts a dry, refreshing character to the beer because it ferments almost completely. The honey comes from a beekeeper in Blodgett, a tiny town 20 miles east of Newport.\n\n\nRogues Honey Cream Ale is a light, smooth, medium bodied ale, with a creamy head, hints of honey and a crisp light finish. Brewed with two-row Harrington, Klages and Munich malts and Crystal hops. Discontined for distribution in late 2005, available on tap only at Rogue Ales Public Houses.","ibu":9,"name":"Honey Cream Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"A golden wheat beer brewed with the finest North American malted barley and wheat. It's then lightly hopped with the choicest European varieties. The smooth, crisp golden wheat beer is then finished with a hint of rasberry. Enjoy this beer any time of the year.","ibu":29,"name":"Raspberry Wheat","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":115,"name":"Wild Salmon Pale Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":1.3166153187041874,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":94,"name":"Blonde Ale","state":"British Columbia"},{"abv":11.671011450950742,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":57,"name":"Dry Stout","state":"British Columbia"},{"abv":10.249081104111946,"address":"Marktstrae 12","city":"Buttenheim","coordinates":[49.802,11.0324],"country":"Germany","ibu":118,"name":"Keller-Bier","state":"Bayern"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":92,"name":"Harvest Ale 2007","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.9000000954,"address":"910 Montreal Circle","category":"British Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":26,"name":"Winter Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":9,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":112,"name":"Oak-Aged Belgian Tripel","state":"Nebraska"},{"abv":7.770126989760591,"address":"Chelsea Piers, Pier 59","category":"North American Ale","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":61,"name":"Henry Hudson IPA","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":7.578131109436929,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":7,"name":"Kellerbier","state":"Bayern"},{"abv":2.7728950931361385,"address":"9675 Scranton Road","category":"North American Lager","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":117,"name":"Amber Lager","state":"California"},{"abv":9.352677984228897,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":22,"name":"Amber","state":"California"},{"abv":14.998336954722598,"address":"808 West Main Street","category":"North American Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":69,"name":"Pale Ale","state":"Wisconsin"},{"abv":7.298669943068759,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":68,"name":"Buffalo Nutty Brown","state":"California"},{"abv":9.269050152791008,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":52,"name":"Magic Brew","state":"Florida"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":44,"name":"Bigfoot 1991","state":"California","website":"http://www.sierranevada.com/"},{"abv":0.8747309202667752,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":80,"name":"India Pale Ale","state":"Nebraska"},{"abv":3.8748060914103313,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":110,"name":"Ale","state":"Illinois"},{"abv":6.881980524313218,"address":"717 East Butterfield Road","category":"North American Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":31,"name":"Very Pale Ale","state":"Illinois"},{"abv":0.9376775548017513,"category":"North American Ale","city":"Lake Barrington","coordinates":[42.2108,-88.1652],"country":"United States","ibu":21,"name":"Paddy Pale Ale","state":"Illinois"},{"abv":10.063209086065955,"address":"25 North Madison St","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":98,"name":"Calumet Kölsch","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":12.183837308403739,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":94,"name":"Spiced Porter","state":"Illinois"},{"abv":13.42796682810321,"ibu":59},{"abv":14.188640114262256,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":88,"name":"Homestead Pale Ale","state":"Nebraska"},{"abv":11.68355967565358,"category":"North American Ale","city":"Salinas","coordinates":[36.6777,-121.656],"country":"United States","ibu":8,"name":"Amber Ale","state":"California"},{"abv":10.628997564234083,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":25,"name":"Sunset Ale","state":"Hawaii"},{"abv":14.680084730501195,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":17,"name":"Longshot American Pale Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.505223563557088,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":46,"name":"Rodeo Red","state":"Texas"},{"abv":4.5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Gracing the expansive Western skyline in Central Oregon, the Three Sisters—Faith, Hope and Charity—are three prominent peaks in the Cascade mountain range. Local folklore credits the naming to 19th Century fur trappers.","ibu":80,"name":"Cascade Golden Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.2053286164476065,"address":"1004 South Olde Oneida","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":64,"name":"Riverboat Rye","state":"Wisconsin"},{"abv":6,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":70,"name":"Quail Springs IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.944492805651974,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":76,"name":"Kölsch","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.75,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The legend of Tyranena began 3,000 years ago, with a group of pyramids and effigy mounds constructed in a remote valley formed by a vast, slow-moving glacier. \n\n\nToday, these ancient \"stone tepees\" lie 60 feet below the surface of Rock Lake in Jefferson County, Wisconsin. No one is certain how or why they were built, but many have speculated on their origin, purpose and the people who built them. \n\n\nWe invite you to develop your own theories on the legend and mystery of Tyranena while enjoying a Stone Tepee Pale Ale.\n\n\n Stone Tepee Pale Ale is brewed in the tradition of an American pale ale. This beer celebrates the American hop, with its characteristic bitterness, flavor and aroma.","ibu":104,"name":"Stone Teepee Pale Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":1.8715498039603529,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":31,"name":"Amber Daze","state":"Colorado"},{"abv":9,"category":"British Ale","city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":19,"name":"Conquest Ale","state":"Hampshire"},{"abv":0.2320840151820358,"address":"220 North Randall Road","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":106,"name":"Dingle Dubbel","state":"Illinois"},{"abv":5.341237680325792,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":91,"name":"Lawnmower Pale Ale","state":"Indiana"},{"abv":12.217502504613163,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":10,"name":"Ironman Wheat","state":"South Carolina"},{"abv":5.968161784288288,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":91,"name":"Golden Gate Amber Ale","state":"California"},{"abv":7.34389851010399,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":75,"name":"English ESB","state":"Wisconsin"},{"abv":7,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This is a hoppy IPA. Did I say hops? Your brewer is a hop head! This is a full bodied beer using American grains. The goal was to create a base for showing off the unique floral qualities of two Pacific Northwest hops, Columbus and Cascade. Columbus is a new hybrid High Alpha Acid hop used mostly for bittering, but used heavily as an aromatic in this strong brew. Cascade is the balance that ties the malt and bittering hops together. It is a true specialty ale and is our brewer's statement on this style.","ibu":89,"name":"Racer 5 IPA","state":"California","website":"http://www.bearrepublic.com/"},{"abv":2.243910858809314,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":59,"name":"Pioneer Pale Ale (discontinued)","state":"Nebraska"},{"abv":14.893347152296124,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":89,"name":"Dark Wheat","state":"Nebraska"},{"abv":8.658895355369399,"address":"720 Main Street","category":"Irish Ale","city":"Frisco","coordinates":[39.5765,-106.094],"country":"United States","ibu":20,"name":"Peak One Porter","state":"Colorado"},{"abv":6.8000001907000005,"address":"407 Radam, F200","category":"Irish Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Nearly black in color, (512) Pecan Porter is made with Organic US 2-row and Crystal malts along with Baird’s Chocolate and Black malts. Its full body and malty sweetness are balanced with subtle pecan aroma and flavor from locally grown pecans. Yet another true Austin original!","ibu":119,"name":"(512) Pecan Porter","state":"Texas","website":"http://512brewing.com/"},{"abv":8.3000001907,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"We welcome the latest release Atomic Raygun Imperial Red! Brewed with Pilsner, Chocolate and Caramel malts but well balanced with Columbus and Centennial Hops and coming in at 90 IBU's. The Octane level on this one is coming in at 8.3!","ibu":32,"name":"Atomic Raygun Imperial Red","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This India Pale Ale is brewed with English Maris Otter pale malt and Chocolate malt, giving it a dark color and is generously hopped with English Fuggles hops. Named for mug club member and brewery supporter Herb Caldwell.","ibu":1,"name":"Herb Superb","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.5,"category":"North American Lager","city":"Seoul","coordinates":[37.5665,126.978],"country":"Korea, Republic of","description":"Hite lager is golden in colour and is styled upon traditional European and American lagers.","ibu":44,"name":"Hite"},{"abv":5.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob AmerBock is American-style bock beer with a rich, malty and smooth taste that is hearty and full-bodied, yet finishes cleanly. Anheuser-Busch introduced this premium-plus beer nationally in 1995.","ibu":50,"name":"Michelob Amber Bock","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.1999998093,"address":"237 Joseph Campau Street","category":"North American Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Our malty, sweet dark lager is a hometown favorite. Our Dunkel is packed with subtle roasted malt flavors without the excessive bitterness and heaviness of many dark beers and has a balanced hop finish.\n\n\nGABF Gold Winner","ibu":84,"name":"Dunkel","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":4.699822838888861,"address":"1 Jefferson Avenue","category":"German Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":65,"name":"Hefeweizen","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":0.44075886562416455,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":51,"name":"Old Kentucky Stout","state":"Wisconsin"},{"abv":12.95753142673992,"category":"North American Ale","city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":9,"name":"Pale Rider","state":"Texas"},{"abv":14.864341154678979,"address":"113 18th Street","category":"British Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":24,"name":"Big Bad Dog Old English Ale","state":"Illinois"},{"abv":2.542297588782776,"address":"3191 Golf Road","category":"North American Lager","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":5,"name":"Honey Lager Light","state":"Wisconsin"},{"abv":14.733192218457647,"city":"Eugene","coordinates":[44.0521,-123.087],"country":"United States","ibu":70,"name":"Imperial Sasquatch","state":"Oregon"},{"abv":1.261580187261745,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":18,"name":"Alexander","state":"West-Vlaanderen"},{"abv":4.5,"category":"German Lager","country":"Germany","description":"German Pilsner beer, with quite a bit of hops taste.","ibu":16,"name":"Beck´s","website":"http://www.becks.de/"},{"abv":5,"address":"529 Grant St. Suite B","category":"Other Style","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Brewed with summer's harvest of pumpkin, squash, honey, ginger, and love of great beers.","ibu":15,"name":"Spiced Pumpkin Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A Commemmorative Brew Single Chair celebrating the uniqueness of the Mad River Glen Cooperative Ski Area in Vermont. \n\n\nMedium bodied & ideally balanced for all tastes, Single Chair Ale's tempting light golden color, heady aroma & smooth liquid go down effortlessly and often!","ibu":34,"name":"Single Chair Ale","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.5,"address":"Ole Steensgt. 10 Postboks 1530","category":"German Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Aass Genuine Pilsner is a premium \"lager\" produced in accordance with the \"Purity law\". The malted barely is a pilsnermalt produced in the Sandinavian countries. We use the very best of hops known under the name as Sazer and Hallertau, and the liquid is pure Norwegian mountain water.\n\n\nThe pilsner is largered at cool temperatures, and it is allowed to mature for as long at 3 months before bottling. \n\n\nThe beer is sold in a caracteristic nice- looking green bottel containing 11.2 fl. oz or 330 ml.","ibu":57,"name":"Genuine Pilsner","website":"http://www.aass.no"},{"abv":11.100000381,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Insanity, just released this past November, 2004, is Weyerbacher's latest creation in the world of cutting edge beers. Insanity is made by aging our perfectly balanced Blithering Idiot Barleywine in oak bourbon casks. This incredible combination creates a melange of flavors such as malt, dates, oak, vanilla, and bourbon just to name a few.\n\n\n Insanity is 11.1% ABV. It is best enjoyed in a brandy snifter and served at 45-50 degrees F.","ibu":39,"name":"Insanity","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.293300428017077,"city":"Motala","coordinates":[58.5366,15.0373],"country":"Sweden","ibu":19,"name":"Östgöta BlÃ¥bärs"},{"abv":8.177919185268502,"address":"5500 Greenville Avenue #1300","category":"Irish Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":23,"name":"Barking Fish Porter","state":"Texas"},{"abv":14.822758446600437,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":15,"name":"Pegasus Pilsner","state":"Texas"},{"abv":7.606162323320556,"address":"23-1 Azumabashi 1-chome","city":"Tokyo","country":"Japan","ibu":27,"name":"Edomae","state":"Kanto"},{"abv":6.5,"address":"312 North Lewis Road","category":"Other Style","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","description":"This malty, full-bodied red ale is made with traditional mulling spices: Ginger, Clove, All Spice, Cinnamon & Nutmeg. If this one doesn't get you into the Christmas spirit, you truly are a Scrooge.","ibu":63,"name":"Sly Fox Christmas Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":2.458169754929096,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":62,"name":"Stonecutter Stout","state":"Iowa"},{"abv":1.4401082845670177,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":103,"name":"Red Toad Amber Ale","state":"Illinois"},{"abv":6,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":32,"name":"Spring Fling","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":5.8000001907000005,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A new version of an American classic.\n\nOur Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast.\n\n\nFood Pairings: The bracing bitterness of this beer can hold its own with spicy foods, while helping to cleanse the palate after rich, creamy dishes. The citrus hop flavors go exceptionally well with any dishes using cilantro, such as Mexican salsas.\n\n\nOG: 14.0 Plato\n\nFG: 3.3 Plato\n\nIBUs: 55\n\nSRM: 6\n\n5.8% abv","ibu":98,"name":"Pale Ale","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":5.6999998093,"address":"910 Division St","category":"Irish Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish.\n\n\nFood Pairings: The rich, chocolate notes pair well with the carmelized surface of steaks, pork tenderloins and lamb, but save this beer for dessert if you’re having chocolate or crème brulée.\n\n\nOG: 14.40 Plato\n\nFG: 3.8 Plato\n\nIBUs: 28\n\nSRM: 29\n\n5.7% abv","ibu":102,"name":"Sly Rye Porter","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":12.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"own in Kentucky and across the pond in Scotland, distillers who age their whiskeys for many years refer to the evaporation of the spirits from their barrels as \"The Angel's Share.\" We couldn’t agree more. Each time a barrel is filled, a measure of liquid seeps into the oak and is lost for good.\n\n\nThis striking Strong Ale is brewed with copious amounts of Caramel malt to emphasize the vanilla and oak flavors found in freshly emptied bourbon or brandy barrels. The beer spends a year in oak before it is packaged for release. The beer is 12.5% ABV and is available in 375ml and 750ml bottles and on draft at inspired locations.","ibu":87,"name":"The Angel's Share - Bourbon Barrel Aged","state":"California","website":"http://www.lostabbey.com/"},{"abv":9.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone 13th Anniversary Ale pours brilliant deep red with a light tan foam. Up front, the aroma is all piney, resinous and citrus hops. Upon tasting, the hops are still on the front, and they are balanced with the malty, toffee like flavors contributed from the blend of crystal and amber malts used in the brewhouse. The finish is deliciously bitter, with a touch of warmth provided by the 9.5% alcohol. Bitterness comes in at 90+ IBU.","ibu":46,"name":"13th Anniversary Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \"Cousin Jack\" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin! Also available barrel aged.","ibu":18,"name":"Cousin Jax","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5,"address":"5121 N Ravenswood Ave,","category":"North American Lager","city":"Chicago","coordinates":[41.975,-87.674],"country":"United States","description":"The kinetic beauty of spicy hops grabs you by the nose and lets you know: this is German-inspired beer. A mild, bready malt sweetness greets you at the lips, smoothing the crisp hop flavors. Flywheel is meant for bombastic celebrations of singing voices and clamoring mugs. But then, that first contented moment of happy hour is uniquely celebratory as well.\n\n\nFlywheel Bright Lager goes great with hot dogs, guitar jams, stir fry, bowling, taco salad, house warmings, baked potatoes, Saturday morning cartoons, tequila, gouda cheese, karaoke, bagel & schmear, Euchre, fresh berries, asparagus, 16-inch softball, sushi, darts, Pad Thai, family reunions, pb&j, flan, romantic weekend getaways, garlic bread, pay raises, nachos, baby showers, fondue, and Frisbee golf.","ibu":9,"name":"Flywheel Bright Lager","state":"Illinois","website":"http://www.metrobrewing.com/"},{"abv":3.9000000954000003,"address":"420 Harrison Drive","category":"North American Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Brewed with real mashed Long Island Potatoes (or is it \"Potatos\"?) in the mash - hence, \"twice mashed.","ibu":25,"name":"Long Island Potato Stout","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":0.4946983211931999,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":47,"name":"Claymore Scotch Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.9000000954,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Old Brown Dog has been cited as a classic example of the “American Brown Ale” style of beer. Compared to a typical English Brown Ale, Old Brown Dog is fuller-bodied and more strongly hopped.\n\n\nOld Brown Dog has been around for many years. It was first brewed in 1988 at the Northampton Brewery. In 1989 it won a silver medal in its category (American Brown Ale) at the Great American Beer Festival in Denver.","ibu":65,"name":"Old Brown Dog Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":10.300000191,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"This Russian Imperial Stout is a sipper. Problem is that you want to sip it all night. Look for this one to be released when the leaves change color and Halloween is approaching. Brewed with a blend of 8 different malts, oats and candi sugar. This huge stout reflects Surly's commitment to brewing intensely flavored beers in small batches. Only 25 barrels of this beer were brewed.","ibu":119,"name":"Darkness","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":11.600000381000001,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Grand Crus are traditionally known as \"The best beer that a brewery makes.\" This Belgian-style quad lives up to that name and then some. Available once a year, in May to celebrate our Anniversary.","ibu":13,"name":"Armageddon Grand Cru","state":"Michigan"},{"abv":9.5,"address":"237 Joseph Campau Street","category":"German Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"This one is black and sweet! Its malty character is derived from two carmel malts along with Munich malt to create the smoothest high gravity beer this side of the \"pond\".","ibu":67,"name":"Voodoo Vator","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.723220587601581,"address":"237 West Butler Avenue","category":"North American Lager","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","ibu":56,"name":"Summer Lager","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":11.525110558101773,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":43,"name":"Kentucky Ale","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":2.550981062136924,"address":"625 Fourth Street","city":"Mukilteo","country":"United States","ibu":111,"name":"Golden","state":"Washington"},{"abv":6.619726793811012,"address":"Doktor-Waibel-Strae 2","category":"German Lager","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":98,"name":"Naturtrübes Kellerbier"},{"abv":14.64599470796836,"address":"Lautenberg 1","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":51,"name":"Blonde","state":"Baden-Wrttemberg"},{"abv":4.0999999046,"address":"Camwal Road","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":41,"name":"Old Legover","state":"North Yorkshire"},{"abv":6.5,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":12,"name":"India Pale Ale","state":"California","website":"http://www.moylans.com/"},{"abv":5,"address":"1001 North 102nd Street","category":"North American Ale","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":32,"name":"Broad Axe Stout","state":"Nebraska"},{"abv":12.294178433259626,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":52,"name":"Oudbeitje","state":"Vlaams Brabant"},{"abv":10,"address":"200 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":68,"name":"Weizen Bock","state":"Wisconsin"},{"abv":1.5860051223719185,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":99,"name":"South of the Border Light","state":"Wisconsin"},{"abv":5.5,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":86,"name":"Dunkel","state":"Bayern"},{"abv":4.9000000954,"address":"Friedrich-Ebert-Strae 255-263","city":"Duisburg","coordinates":[51.5314,6.7418],"country":"Germany","ibu":44,"name":"Pilsener","state":"Nordrhein-Westfalen"},{"abv":13.03355920698839,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":12,"name":"Oktoberfestbier / Oktoberfest Ur-Märzen","state":"Bayern"},{"abv":24,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Utopias MMIV","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":14.722116470346782,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":112,"name":"Irish Stout","state":"California"},{"abv":9.70237301128138,"address":"781 Old Highway 8 SW","category":"North American Ale","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":14,"name":"Stockyard IPA","state":"Minnesota"},{"abv":2.135644648244037,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":65,"name":"Cream Ale","state":"Wisconsin"},{"abv":8.029527929681176,"address":"1900-B East Lincoln Avenue","category":"North American Lager","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","description":"A unique flavored lager that goes well with any food. A slight aromatic smoke flavor-but not over-powering. A very popular beer with its own following wondering where's YOUR Z?","ibu":100,"name":"Z Lager","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":0.6195691267417325,"address":"249 North Redwood Highway","category":"Other Style","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":79,"name":"Blackberry","state":"Oregon"},{"abv":11.996438334387054,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":39,"name":"Hidden River Red Ale","state":"Illinois"},{"abv":5.605962277877204,"address":"610 Main Street","category":"North American Lager","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":93,"name":"Wilderness Wheat","state":"South Dakota"},{"abv":3.5,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"IPA is one of Cains","ibu":81,"name":"IPA","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":5.8000001907000005,"address":"209 Technology Park Lane","category":"North American Ale","city":"Fuquay Varina","coordinates":[35.6197,-78.8085],"country":"United States","description":"A hearty extra special beer or basically a pale ale on steroids. A dark amber beer with a rich blend of malts. The base malt is full kilned pale 2-row barley and is combined with full tasting crystal malt. This beer has a great heavy late hop addition of East Kent Goldings (that cost us our lunch money for weeks...). ALWAYS AVAILABLE or at least we try.","ibu":11,"name":"Old BullDog Extra Special","state":"North Carolina","website":"http://www.aviatorbrew.com/"},{"abv":5.3000001907,"address":"5429 Shaune Drive","category":"Belgian and French Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alaskan White Ale has a soft, slightly sweet base with the unique spice aroma of coriander and crisp, citrus finish of orange peel. A light and effervescent body combined with the smooth palate creates a complex and delicate beer that is deliciously refreshing in any season.","ibu":27,"name":"Alaskan White Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":8.5,"address":"4615-B Hollins Ferry Road","category":"Other Style","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"The secret is in the 2.5 pounds of spice per barrel for this fall brew. We add the pumpkin during the mash at precisely the right time to create just the perfect balance of malt, hops, pumpkin and spice.\n\n\nestimated ABV 8.5% estimated IBU 25\n\nMalt, Hops, Pumpkin & our Secret Spices","ibu":95,"name":"Heavy Seas The Great Pumpkin Imperial Pumpkin Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":7.0999999046,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"If you like big, bold, pronounced hop character, then this beer is for you. One taste and you’ll find yourself right smack in the middle of Hop Head Heaven! But this beer has more to offer than just hops. We use tons of the finest malted barley available to balance out this beer. The result of our efforts is a beer with a magnitude of hop aroma and bite, yet perfectly balanced with a clean, crisp malty flavor. WARNING: This beer is not intended for the masses that prefer a mild domestic beer, It’s big, bold characteristics and 7.1% a.b.v. are not intended for the weak.","ibu":49,"name":"Horny Toad IPA","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Rost (pronounced Roast) is a German word for Amber. Our Amber gets its coppery color from Pilsner. Munich and Caramel malts. Its rich malty sweetness is perfectly balanced by a slight hop finish and creamy head.","ibu":9,"name":"Rost","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"WRATH Belgian-style Double IPA is fiercely bitter with notes of spice and earth. Its fury slowly and purposefully unfurls on the tongue, relentlessly bringing on more and more enraged flavor with each sip. \n\n\nWrath wreaks havoc on your taste buds. Anything you drink after this may as well be water.","ibu":2,"name":"Wrath","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.5999999046,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A GABF Gold Medal winner for 2007, this Belgian style strong ale, bright and golden colored is brewed with a hint of orange peel and coriander. This balanced, pleasant to drink brew, will sneak up on you. Consume with caution.","ibu":8,"name":"Celis Grand Cru","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":4.9499998093,"country":"Japan","description":"From Brewery's site:\n\n\nWith his gold label and Special Premium Reserve appellation, Ichiban outclasses and outperforms.\n\n\nIn 1990, Ichiban's debut made a splash in the world of super premium beers. The luxurious single wort (or first press) process yields a unique, complex flavor. With his gold label and \"Special Premium Reserve\" appellation, Ichiban outclasses and outperforms. But don't be fooled by a snooty attitude -- this is a great beer that goes with anything.\n\n\nWhat makes Ichiban great\n\nProminent wort. Finest barley malt, premium hops, smooth finish, no bitter aftertaste.","ibu":100,"name":"Kirin Ichiban","website":"http://www.kirin.com/"},{"abv":7,"address":"725 Fourth Street","category":"Belgian and French Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Damnation has extraordinary aromas of banana and pear with mouth filling flavors of sweet malt and earthy hops. The lingering finish is dry and slightly bitter but very, very smooth.","ibu":56,"name":"Damnation","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.9000000954,"address":"929 North Russell Street","category":"Other Style","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"Our Brewmasters' Release - The three different red, caramelized, and dark wheat malts give this beer an intense red color that runs as deep as the flavor. The toasted grain flavors blend perfectly with the subtle spiciness of the hops just as the entirety fades to a smooth quick finish. 2007 Great American Beer Festival Silver Medal Award Winner.","ibu":114,"name":"Widmer W'08","state":"Oregon"},{"abv":5.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nCreamy, malty, and full-bodied, the Sierra Nevada Stout is satisfyingly rich. Caramel and Black malts give the Stout its deep, dark color and pronounced roasted flavor. \n\n\n“Sierra Nevada Stout is admirable from nose to finish, with notes of malty sweetness to the palate but plenty of bitterness available to set up a stimulating counterpoint.”\n\n\n– Christopher Finch, A Connoisseur’s Guide \n\nto the World’s Best Beer\n\n\nGOLD MEDAL WINNER\n\nCalifornia State Fair (Stout, Sweet & Foreign: 2000)","ibu":18,"name":"Stout","state":"California","website":"http://www.sierranevada.com/"},{"abv":8,"address":"231 W. Fourth Street","category":"German Lager","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A springtime favorite, this traditional German Maibock (my-bock) is golden in color with a rich maltiness and a long, spicy finish.","ibu":0,"name":"Hands Off Maibock","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":28,"name":"Andelot Cuvee Diabolique","state":"Oost-Vlaanderen"},{"abv":2.258693174326213,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":103,"name":"Black Mulligan Dublin Stout","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":11.5,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":73,"name":"Old Crustacean Barleywine 2006","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"765 Center Boulevard","category":"North American Lager","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":49,"name":"Chazz Cat Rye","state":"California"},{"abv":12.163741511508855,"address":"1265 Boston Avenue","category":"Irish Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":112,"name":"Black Jack Porter","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7,"category":"North American Lager","city":"Malli","country":"India","ibu":78,"name":"Yeti Special Export","state":"Sikkim"},{"abv":8.910445904951814,"category":"Irish Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":87,"name":"London Porter","state":"Wisconsin"},{"abv":5.0999999046,"address":"CZ-739 51 Noovice","city":"Noovice","country":"Czech Republic","ibu":2,"name":"Premium"},{"abv":11.251841208884153,"category":"German Lager","city":"Tempe","coordinates":[33.4148,-111.909],"country":"United States","ibu":49,"name":"Thunderhead Schwarz Bier","state":"Arizona"},{"abv":5.459058213061666,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":28,"name":"Export","state":"Wisconsin"},{"abv":6.534300132746526,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":76,"name":"Toil and Trubbel Dubbel","state":"Wisconsin"},{"abv":6.3000001907,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","description":"First brewed with an extra dose of hops to help it survive the long journey from England to beer lovers in India, India Pale Ale is now brewed just for the pleasure of its distinctive hoppy flavor.","ibu":2,"name":"India Pale Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.527102871037549,"category":"German Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":81,"name":"Maibock","state":"Illinois"},{"abv":10.098129683782442,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":73,"name":"Old Fort Howard Pale Ale","state":"Wisconsin"},{"abv":9.577313117567408,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":88,"name":"Eigenberg Smoked Porter","state":"Nebraska"},{"abv":1.7881577933820736,"address":"1035 Sterling Avenue","category":"North American Lager","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":110,"name":"Station Master Wheat Ale","state":"Illinois"},{"abv":9.470000267,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":91,"name":"Imperial Stout 2002","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.581669112529644,"address":"527 Decatur Street","category":"North American Lager","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":70,"name":"Red Stallion","state":"Louisiana"},{"abv":5,"category":"North American Ale","country":"Japan","description":"A very yeasty beer with an earthy aroma. Rich flavors deepen the stout character.","ibu":5,"name":"Ise Kadoya Stout"},{"abv":13.925703647389184,"ibu":6},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration I is a Double IPA, heavily hopped with a big malt base. Its aroma is pungent with citrus, onion, and a touch of alcohol. The sweetness of caramel malt is offset with spice and pepper flavors that lead into an overwhelmingly bitter finish.","ibu":57,"name":"Obliteration I","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.1999998093,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"A Supreme Champion Ale of Cornwall as\n\nvoted by CAMRA*, and the South West's Favourite cask beer**, Tribute is a popular\n\nfavourite with locals and visitors to Cornwall, as well as being a much sought after guest ale throughout the rest of the UK. It is brewed using specially grown Cornish Gold Malt and is a perfect accompaniment to chicken, gammon or fish. The ideal alternative to a fine white wine.","ibu":46,"name":"Tribute Premium Cornish Ale","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":11.907138056088801,"address":"10983 Hills Road","category":"North American Ale","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Amber Ale is a deep, copper ale with rich notes of caramel balanced with a hop finish, making it a great all-around beer that pairs well with roasted meats or a favorite sandwich. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":69,"name":"Round Barn Amber Ale","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":5.23885267325002,"address":"310 Mill Creek Avenue","category":"German Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"In celebration of our 180th Anniversary year, the marketplace will see one of the first seasonal offerings from the Yuengling Brewery in many years. Yuengling has produced a Bock Beer in its long and storied past, and we have now reinvented that product for limited release in 2009. The new brew is dark brown in color and offers exceptional flavor that lives up to the quality Yuengling drinkers have grown to expect.\n\n\nYuengling Bock Beer will be offered in ½ barrels only, beginning in late February and lasting for approximately 8-10 weeks. Let’s all raise a pint of Yuengling Bock and celebrate the 180th Anniversary year!","ibu":37,"name":"Yuengling Bock Beer","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":2.6290466067195872,"address":"2105 N. Atherton St.","category":"German Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","ibu":11,"name":"Zeno Black Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":5.5,"category":"British Ale","country":"Australia","ibu":67,"name":"Foster's Premium Ale","website":"http://www.fostersbeer.com/"},{"abv":6.1999998093,"address":"345 Healdsburg Avenue","category":"German Lager","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This malty, copper-colored lager is styled after Munich's traditional \"Oktoberfest\" beers. A full-bodied, rich malt character is balanced by a slight bitter finish. Perfect for cooler fall days, it is lagered for five weeks. Prost!!","ibu":118,"name":"Late Harvest Fest Lager","state":"California","website":"http://www.bearrepublic.com/"},{"abv":5.9000000954,"address":"Domring 4-10","category":"German Lager","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":89,"name":"Warsteiner Premium Oktoberfest","state":"Nordrhein-Westfalen"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A classic American IPA with lots of floral punch and assertive hop presence. Hopped with Nugget, Palisade and Amarillo colored to a reddish hue thanks to Munich and Aromatic malts","ibu":93,"name":"Slab Cabin IPA","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":12,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SPECIAL COMMEMORATIVE BEER\n\n\nTo commemorate the life of a huge-hearted and long-time friend from the homebrewing community, Midnight Sun Brewing Company brewed a very special beer in honor of David Yanoshek, who was fondly known as “Yano”. \n\n\nThis big strong beer celebrates the abundant life of an incredible man with an enormous yet ever engaging laugh. Yano pursued life with a Viking spirit, endless love and boundless energy for family, friends, scouts…and beer. \n\n\nA big strong beer for a big strong guy, The Viking Belgian-style Dark Strong Ale boasts a beautiful balance of character and complexity. Dark roasted malts, Belgian yeast, star anise and sweet-ripened raisins come together in an amazing ale that can be enjoyed now and cellared for later celebrations. \n\n\nAs you lock horns with this commemorative ale, toast to Yano. With his incredibly stoic spirit and his irrepressible laugh, Yano was the gentle giant who will forever touch our lives. Pröst! \n\n\nAll proceeds from sales of this beer will be donated to the Yanoshek family.\n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 09/12/2008)","ibu":65,"name":"The Viking Belgian-style Dark Strong Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":20,"name":"IPA","state":"Washington"},{"abv":0.9337244462054117,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":79,"name":"Fauntleroy Stout","state":"Washington"},{"abv":6,"address":"2106 North 55th Street","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":105,"name":"AK-47 Malt Liquor","state":"Washington"},{"abv":5.8000001907000005,"address":"765 Center Boulevard","category":"North American Lager","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":32,"name":"Honey Bunny Blonde Ale","state":"California"},{"abv":5,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":112,"name":"Amber","state":"California"},{"abv":5.60392078123143,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":5,"name":"Highway to Helles","state":"Wisconsin"},{"abv":5.0345736193738855,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":79,"name":"Winterhook Robust Winter Ale 2000","state":"Washington","website":"http://www.redhook.com/"},{"abv":5.5999999046,"address":"8938 Krum Ave.","category":"Irish Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A robust porter for all occasions. A blend of dark malts give this beer flavors of coffee and chocolate with subtle roasted notes.Gold medal winner in the Brown Porter category Brewers Association World Beer Cup 2008.","ibu":14,"name":"Porter","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.1999998093,"address":"1 Kendall Square #100","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Brewed in the tradition of the fresh, blond ales of Cologne, Germany, our Golden ale is light in body, crisp and very refreshing. Its soft malt flavor is balanced by delicate, spicy hop flavors and finishes.","ibu":107,"name":"Regatta Golden","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":9.1000003815,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":24,"name":"Old Knucklehead 2000","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":8.170024275947203,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":1,"name":"Pale Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.383371130831057,"address":"249 North Redwood Highway","category":"North American Ale","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":114,"name":"Nut Brown Ale","state":"Oregon"},{"abv":3.4735862365406556,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":65,"name":"Brandywine Valley Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.644649741173065,"address":"208 East River Drive","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":67,"name":"Raging River Ale","state":"Iowa"},{"abv":7.8242379601450995,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":16,"name":"Scaldis Noël / Bush Noël","state":"Hainaut"},{"abv":13.913707877757858,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":1,"name":"Belgian Summer Ale","state":"Wisconsin"},{"abv":8.385572333101694,"address":"8113 Fenton St.","category":"Other Style","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"A crisp, clean American Ale. Perfect for extinguishing your fiery thirst or when you crave an ice-cold beer. A great step up in flavor from the macro-produced American and imported beers.","ibu":69,"name":"Hook & Ladder Golden Ale","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":9,"address":"3525 Liberty Avenue","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"A Belgian Trippel is a very special type of beer. A Belgian Trippel could be called the beer version of a Champagne. It is very light in color and highly carbonated giving an appearance similar to Champagne. The flavor is somewhat sweet and malty as well as strong.","ibu":11,"name":"Millennium Trippel","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":9,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This beer is based on chemical analysis of pottery fragments found in Honduras which revealed the earliest known alcoholic chocolate drink used by early civilizations to toast special occasions. The discovery of this beverage pushed back the earliest use of cocoa for human consumption more than 500 years to 1200 BC. As per the analysis, Dogfish Head’s Theobroma (translated into 'food of the gods') is brewed with Aztec cocoa powder and cocoa nibs, honey, chilies, and annatto (fragrant tree seeds).","ibu":28,"name":"Theobroma","state":"Delaware","website":"http://www.dogfish.com"},{"abv":1.3110710208518717,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":16,"name":"Dark Side Vanilla Porter","state":"Nebraska"},{"abv":12.971307182754847,"address":"2201 Sherman Street","category":"Irish Ale","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":54,"name":"St. Edmunds Strong Porter","state":"Wisconsin"},{"abv":1.1656467939071147,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":39,"name":"Bower City Pale Ale","state":"Wisconsin"},{"abv":13.270859870810721,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":23,"name":"Third Coast Ale","state":"Michigan"},{"abv":0.8563369311370961,"category":"North American Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":89,"name":"Light Lager","state":"Delaware"},{"abv":10.570167998313888,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":101,"name":"Big Horn Big Red Ale","state":"Wyoming"},{"abv":11.353198286431462,"category":"Irish Ale","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":104,"name":"Old Port Porter","state":"Wisconsin"},{"abv":7,"address":"233 North Water Street","category":"British Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":43,"name":"Duggie Meyer Wee Heavy","state":"Wisconsin"},{"abv":12.724503294241291,"category":"Irish Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":63,"name":"Adler Bräu Classic Porter","state":"Wisconsin"},{"abv":14.724845039273749,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":8,"name":"Traditional Lager","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The first in a series of two new specialty beers coming this year! This Kölsch-styled ale is clean, crisp, and delicately balanced. It has very subtle pear flavors and aromas. The subdued maltiness leads to a pleasantly refreshing finish. A fantastic summer brew!\n\n\nThe Kölner Dom (Cologne Cathedral), is one of the best-known architectural monuments in Germany and has been Cologne's most famous landmark since its completion in the late 19th century. True Kölsch can only be brewed if the brewery has a view of this famous cathedral, thus its’ appearance on our tap markers.","ibu":9,"name":"Dom Blonde Kölsch","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.8000001907000005,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"One deceptively spring like winter day, Brewmaster Dan walked home from the brewery, sat down to dinner and said, \"Boy, there are some fat squirrels out there. They're running all over the place. I think I should brew a Fat Squirrel Nut Brown Ale.\" Deb agreed and so another beer legend was born. \n\n\n100% Wisconsin malt of six different varieties impart the natural toasted color to this bottle conditioned unfiltered ale. Clean hazelnut notes result from these carefully chosen barley malts. Hops from Slovenia, Bavaria and the Pacific Northwest give Fat Squirrel its backbone. \n\n\nWhen the going gets tough, remember to relax a moment and enjoy the \"Fat Squirrel\" in your neighborhood.","ibu":48,"name":"Fat Squirrel Nut Brown Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":14.354409985684953,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":55,"name":"Shawnee Amber Ale","state":"Texas"},{"abv":14.475848455507473,"address":"5500 Greenville Avenue #1300","category":"North American Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":25,"name":"Route 66 Amber Ale","state":"Texas"},{"abv":4.220706152778356,"address":"901 Gilman Street","category":"German Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":35,"name":"Thomas Kemper HefeWeizen","state":"California"},{"abv":9.61593961048348,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":104,"name":"Greenshields Pale Ale","state":"North Carolina"},{"abv":4.962559607882393,"category":"North American Ale","city":"Fort Mitchell","coordinates":[39.0472,-84.5599],"country":"United States","ibu":65,"name":"Nut Brown Ale","state":"Kentucky"},{"abv":0.254544688227597,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":107,"name":"Old Market Stout","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":31,"name":"Honey Double Maibock","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":1.0063249043249467,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":116,"name":"Railyard Ale","state":"Wisconsin"},{"abv":9.1999998093,"address":"1812 Post Road","category":"North American Ale","city":"Plover","country":"United States","description":"Anniversary offering, Imperial Red. Heavily hopped and oak aged, very balanced. 12 oz. bottles; 4 pack. ABV: 9.2%","ibu":1,"name":"Dank","state":"WI","website":"http://www.osobrewing.com/Home.php"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"North American Lager","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Born of dark and cold and snow in the marrow of the northeast's longest night, HOWL comes in on wailing winds with winter-weary eyes burning holes in sunless shadows. In its darkened depths out inner voids are warmed.","ibu":109,"name":"Howl","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.1999998093,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":110,"name":"Karma","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8.721465658140463,"address":"130 W Gurley St","category":"Other Style","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":47,"name":"Lodgepole Light","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":13.358074585836695,"address":"2109 Hickory Street","category":"German Lager","city":"Cross Plains","coordinates":[43.1147,-89.6531],"country":"United States","ibu":85,"name":"Esser's Cross Plains Special","state":"Wisconsin","website":"http://www.essersbest.com/"},{"abv":6.9000000954,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"\"Strong like bull but sweet like your momma. This unique beer is a trifecta of bold flavors. Hops, malt and alcohol bully the taste buds on the organic playground while the monitor blows the whistle!\";\"0","ibu":81,"name":"Deluxe Organic Ale","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7,"category":"Belgian and French Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"We drew inspiration from Steve’s Grandmother’s holiday biscotti recipe to create this one of a kind brew. By utilizing an array of malts, oats, wheat, pure local honey, light European hops and delicately spicing with Grains of Paradise, Madagascar vanilla beans, whole star anise, all brought together with traditional Belgian yeast, the result is a cloudy, deep copper colored, complex experience. This delight to the senses should be served in a 12 ounce footed glass and allowed to warm to 50 degrees to fully gather the malt and spice spectrum.","ibu":17,"name":"Biscotti","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.5,"address":"86 Newbury Street","category":"Other Style","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":40,"name":"Pumpkinhead Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":6.8000001907000005,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":111,"name":"Hoptical Illusion","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":10.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"GLUTTONY Triple IPA overindulges the palate with profound malt, powerful hops and abundant body. Its deep decadent golden orange color presents an appetizing invitation for extravagant enjoyment. Its aroma entices with citrus, pine and alcohol while the flavor provides a smorgasbord of sweet malt, fresh tangerine/grapefruit and a resinous hop character that lingers well beyond the finish. \n\n\nGLUTTONY...More than a mouthful.","ibu":108,"name":"Gluttony","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.909677549923965,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"A rich golden liquid with a unique flavor and aroma that comes from a touch of raw Hawaiian cane sugar. Primo is a premium lager that represents the best of both worlds; the rich taste of a craft-brewed beer with the drinkability of a lighter lager. -http://www.thatsprimo.com/Recipe.aspx","ibu":87,"name":"Primo","state":"Texas","website":"http://www.pabst.com/"},{"abv":10.91631484036333,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Honker’s Ale combines a spicy hop aroma with a rich malt middle to create a perfectly balanced ale that is immensely drinkable. A smooth, drinkable English Bitter for those looking for more from their beer.","ibu":47,"name":"Honker's Ale","state":"Illinois"},{"abv":6.6999998093,"address":"Zornedinger Strae 2","category":"German Lager","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","description":"Profoundly dark, rich elixir with a complex fruitiness of roasted malt and whole hop flowers. Semi-dry finish.","ibu":94,"name":"Celebrator","state":"Bayern"},{"abv":9,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Belgian Style Tripel using same Abbey Yeast. Monster aromas and sweet flavors coming from the yeast and a huge amount of Belgian Candi Sugar. Ingredients: Weyermann Pilsner Malt, Belgian Candi Sugar, Saaz Hops.","ibu":107,"name":"Menage Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.9000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Highly regarded among hop-lovers, our Harvest Ale is a balanced and flavorful autumnal offering, to be enjoyed during the cool, crisp days of fall. We use a darker Caramunich malt and just a touch of chocolate malt along with a blend of Warrior, Ahtanum, and Columbus hops.","ibu":22,"name":"Ipswich Harvest","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":4.4000000954,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":118,"name":"Bugeater Brown Ale","state":"Nebraska"},{"abv":0.6473043211437535,"address":"11337 Davenport St.","category":"German Lager","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":17,"name":"Bavarian Bock","state":"Nebraska"},{"abv":13.644874503068339,"category":"North American Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":3,"name":"Red Rooster Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":1.5652813936569232,"address":"Lancaster Road","category":"North American Ale","city":"Gateshead","coordinates":[54.9548,-1.6576],"country":"United Kingdom","ibu":29,"name":"Northumbrian Brown Ale","state":"Tyne and Wear"},{"abv":9,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":55,"name":"Salvation","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":5.3000001907,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":63,"name":"Arrogant Brit","state":"Colorado"},{"abv":3.8107773251844934,"address":"333 North Main Avenue","category":"North American Ale","city":"Gresham","coordinates":[45.5001,-122.431],"country":"United States","ibu":106,"name":"Eager Beaver IPA","state":"Oregon"},{"abv":0.9047593645019225,"address":"808 West Main Street","category":"Irish Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":38,"name":"Porter","state":"Wisconsin"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"Our 13th Anniversary Beer in was a Staff Favorite, So We Make it Each Year. BIG on the Amarillo Hops and Rich Dark Malts for a Round and Huge, Smoky Flavor.","ibu":83,"name":"Lucky 13 Mondo Large Red Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"German Lager","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Our Blond Bock is gold in color and features a malty profile and a spicy finish courtesy of Saaz hops. This beer boasts the flavor of a traditional Bock without the cloying aftertaste.","ibu":108,"name":"Bad Billy Blond Bock","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":4.5,"category":"North American Ale","city":"St. John","coordinates":[18.3368,-64.7281],"country":"United States","description":"Our flagship beer that embodies the uniqueness and character of the Caribbean. Subtle malt notes start this beer off and it finishes with just the right amount of hops for balance.\n\n\nTropical Mango Pale Ale is a light pale ale with a mango fruit essence that is one of a kind taste. No matter where you are enjoying one it will bring you to a Caribbean state of mind.","ibu":84,"name":"Tropical Mango","state":"Virgin Islands","website":"http://www.stjohnbrewers.com/index.html"},{"abv":5.0999999046,"address":"Ottakringerstrasse 91","city":"Wien","coordinates":[48.2133,16.3229],"country":"Austria","ibu":116,"name":"Ottakringer Helles","website":"http://www.ottakringer.at/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named for our friend and patron Tad Eastman, whose Laughing Dragon Tie-Dye studio puts out our fabulous shirts-each one an individual work of art signed by Tad! Reddish Amber in color, this beer has a very bold Chinook hop character.","ibu":105,"name":"Laughing Dragon","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.5,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":14,"name":"Doc's Pale Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":9,"address":"pastoor de katerstraat 24","category":"Belgian and French Ale","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"pure-malt dark ale.\n\nrich and intense. good mix between imperial stout (but not as intense) and quadrupel. The beer has real balance and a luxurious mouthfeel","ibu":43,"name":"embrasse","website":"http://www.dedochtervandekorenaar.be"},{"abv":7.134765999899731,"address":"121 North Market St.","category":"British Ale","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":54,"name":"Shade Mountain Oatmeal Stout","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":6.25,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"It’s an unassuming road leading to the priory. Here, off the corner of two intersecting roads, dedicated monks have been making beer for over 150 years. It’s always been a simple life – the kind that requires they brew only enough to sustain the activities of their monastery. In the silence of passing seasons, they pray, they brew and retire in solitary existence behind the sheltering walls. They live a most interesting life. Most likely one we couldn’t sustain.\n\n\nNearby, each summer, the trellised fields spring to life as rows of resinous green cones are trained toward the heavens. Rumor is some monks love these hops and being surrounded by budding yellow aromas and the leafy pungent fields inspired them. Since we aren’t sensible enough to locate our brewery near hop fields, we can only offer this blond ale in celebration of our Abbey brethren and their steadfast Devotion.","ibu":32,"name":"Devotion","state":"California","website":"http://www.lostabbey.com/"},{"abv":5.0999999046,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":43,"name":"Halligan IPA","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.250074115526574,"address":"821 L Street","category":"North American Ale","city":"Modesto","coordinates":[37.6417,-121.004],"country":"United States","ibu":119,"name":"VHB","state":"California","website":"http://www.ststans.com/"},{"abv":2.4041822091127996,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":48,"name":"Fort Edward Augustus 1770 Scottish Ale","state":"Wisconsin"},{"abv":4.75,"address":"30 Germania Street","category":"North American Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Boston Lager® is the best example of the fundamental characteristics of a great beer, offering a full, rich flavor that is both balanced and complex. It is brewed using a decoction mash, a time consuming, traditional four vessel brewing process discarded by many contemporary brewers. This process brings forth a rich sweetness from the malt that makes it well worth the effort. Samuel Adams Boston Lager® also uses only the finest of ingredients including two row barley, as well as German Noble aroma hops. The exclusive use of two row barley not only imparts a full, smooth body but also gives the beer a wide spectrum of malt flavor ranging from slightly sweet to caramel to slightly roasted. The Noble hops varieties, Hallertau Mittelfruh and Tettnang Tettnanger, add a wide range of floral, piney and citrus notes, which are present from the aroma, through the flavor, to the lingering smooth finish. We take great pride in the Noble hops used in our beers. They are hand selected by Jim Koch and our other brewers from the world's oldest hops growing area. Among the world's most expensive, they cost twenty times as much as other hops.","ibu":96,"name":"Samuel Adams Boston Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":9.534463432945554,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":3,"name":"The Lonely Guy India Pale Ale","state":"Wisconsin"},{"abv":5.589732900016946,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":94,"name":"Stout","state":"Hawaii"},{"abv":7,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":4,"name":"Les Sans Culottes"},{"abv":5.5,"address":"Hohenzornstrasse 2","category":"German Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":119,"name":"Weizentrumpf"},{"abv":6,"address":"Wunderburg 10","category":"German Lager","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":6,"name":"Christmas Bock","state":"Bayern"},{"abv":9.1000003815,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Hoppier, maltier and with more alcohol than a standard IPA, Hercules Double IPA definitely is not for the faint of heart. Hercules Double IPA is, however, an elixir fit for the gods. A brash but creamy wonder, Hercules pours a deep orange-coppery color, forming substantial lace in the glass. Hercules Double IPA delivers a huge amount of piney, floral, and citrusy hop aroma and flavor from start to finish. A hefty backbone of nutty, toffee-like malt character balances Hercules’ aggressive, punchy hop profile.","ibu":109,"name":"Hercules Double IPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.5,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":82,"name":"IPA","state":"Oxford"},{"abv":9.744955564556411,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":24,"name":"American Pale Ale","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":9.803370783805908,"address":"6901 Konica Drive","category":"North American Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Hummin' Bird is a Light Lager or Hell (Helles) similar to those found throughout Bavaria. We use carefully selected Pilsner Malt…then it is delicately hopped with imported Tettnang Noble Hops. Then we add a proprietary lager yeast strain which is not filtered out providing ones daily supply of vitamin B. Hummin' Bird is slow-cold aged for over one month resulting in a lush mouth feel.","ibu":37,"name":"Hummin Bird","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":6,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":72,"name":"Grand Cru","state":"West-Vlaanderen"},{"abv":6.2877068818337944,"address":"2320 SE OSU Drive","category":"British Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Our original Rogue Ale, Youngers Special Bitter (affectionately nicknamed YSB) is a classic English Special Bitter named after Bill Younger of the infamous Horse Brass Pub in Portland, Oregon. The Malt Advocate described Youngers Special Bitter as \"rich and flavorful. A triad of caramel maltiness, fruitiness (apricots?), and hop bitterness in aroma and flavor. A fuller malt foundation than some other pale ales, with some background spiciness. Dry, hoppy finish.\" In the SouthWest Brewing News, Feb/March 1994 issue, George Fix wrote \"A strong case could be made for Rogue Ale being included among the top 5 ales brewed in the US.","ibu":58,"name":"Youngers Special Bitter","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Rugged yet smooth, Kodiak Brown Ale balances caramel and roasted malts with enticing Northwest hops. Inspired by the adventurous spirit readily found in Alaska, Kodiak Brown Ale invites you to take the road less traveled. Like true Alaskans, we are not afraid of the dark.","ibu":56,"name":"Kodiak Brown Nut Brown Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"5429 Shaune Drive","category":"German Lager","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","ibu":38,"name":"Breakup Bock","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":0.6848174835936127,"address":"674 South Whitney Way","category":"Other Style","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":108,"name":"Raspy Raspberry Weiss","state":"Wisconsin"},{"abv":14.596511593303536,"address":"Denterhoutembaan 2","city":"Ninove","coordinates":[50.8417,4.0213],"country":"Belgium","ibu":14,"name":"Witkap-Pater Singel Abbey Ale","state":"Oost-Vlaanderen"},{"abv":4.784230571554129,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":0,"name":"Beekeepers Honey Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":13,"address":"Woesten","category":"North American Ale","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":34,"name":"Black Albert","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":7.27259956674522,"address":"138 Nassau Street","category":"British Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":30,"name":"Scottish Ale","state":"New Jersey"},{"abv":9.3999996185,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Brew 1 – March – “The Iron Tankard” Old Stock Ale – The building started as a YMCA in 1889 and had a huge iron swimming pool in the basement.\n\n\nFrom Spike: Iron Tankard “Old Stock Ale” is the first of four beers in Terrapin’s Georgia Theatre Sessions. It is brewed with a generous portion of crystal malts for a full body and is lightly hopped. This malt forward beer has flavors of dark dried fruit, mellow alcoholic warmth and is unfiltered for your listening pleasure.\n\n\nA portion of the proceeds will be donated to the Georgia Historic Trust for Historic Preservation Fund to rebuild the Georgia Theater. To make things even more interesting, there is one Golden Ticket hidden among each of the Georgia Theater Sessions brews. This means that four lucky winners will receive a lifetime pass to the new Theater.","ibu":28,"name":"The Iron Tankard","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":0.961330241143985,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":118,"name":"Half Moon Gold","state":"Wisconsin"},{"abv":11.634941465724747,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":3,"name":"Eagle Lake Pale Ale","state":"Minnesota"},{"abv":14.422028001649384,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":68,"name":"Shawnee Amber Ale","state":"Texas"},{"abv":14.5739911347484,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":73,"name":"Grand Cru","state":"Texas"},{"abv":11.02314864546245,"address":"124 Manhattan Beach Boulevard","category":"North American Ale","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":91,"name":"Rat Beach Red Ale","state":"California"},{"abv":9.429577948481697,"address":"901 Gilman Street","category":"German Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":22,"name":"Oktoberfest","state":"California"},{"abv":5.5,"category":"North American Ale","city":"Sonora","coordinates":[37.9841,-120.382],"country":"United States","ibu":51,"name":"Thompson Pale Ale","state":"California"},{"abv":0.0830842010025179,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":46,"name":"Honey Ale","state":"Wisconsin"},{"abv":14.917468608339618,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":107,"name":"Millennium Ale","state":"Wisconsin"},{"abv":9.60296853524037,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":46,"name":"Iron Red Ale","state":"Michigan"},{"abv":14.893475840444871,"category":"German Lager","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":1,"name":"Oktoberfest","state":"Colorado"},{"abv":7.732015769986354,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":32,"name":"Portsmouth Pale","state":"Colorado"},{"abv":5.6999998093,"address":"The Brewery","city":"Ripon","country":"United Kingdom","ibu":73,"name":"Old Peculier","state":"North Yorkshire"},{"abv":2.087416074009699,"city":"Eden Prairie","coordinates":[44.8652,-93.4095],"country":"United States","ibu":8,"name":"Old LS Barleywine","state":"Minnesota"},{"abv":14.152008331938616,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":58,"name":"Anglers Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":5.1999998093,"address":"901 SW Simpson Avenue","category":"Irish Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Towering high above Central Oregon, jetting into clear blue skies, Black Butte can be seen for miles. From its base flows the legendary Metolius River--with its source hidden deep beneath ancient lava flows. \n\n\nBlack Butte Porter, crafted from chocolate and crystal malts, is Deschutes Brewery’s flagship brand. With a rich and distinctive flavor, this porter has enjoyed a loyal and passionate following since its first pint in 1988.","ibu":46,"name":"Black Butte Porter","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","description":"A delicately flavored golden ale in which subtle fruity esters from the Samuel Smith yeast strain interact with a background of maltiness and fresh hops.","ibu":47,"name":"Organic Ale","state":"North Yorkshire"},{"abv":1.8728554211074788,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Honey Orange Wheat is an unfiltered wheat beer and has flavors of honey and orange balanced with a nice medium-sweet malt character. It is medium bodied with no harsh bitterness and a nice honey-orange finish. It is made from Northwest Two-Row and Wheat Malts; Willamette Hops; #48 Oregon Wildflower Honey, Orange Juice, and Free Range Coastal Waters. It is currently available on draft.","ibu":99,"name":"Honey Orange Wheat","state":"Oregon","website":"http://www.rogue.com"},{"abv":3.2041802944085465,"ibu":40},{"abv":5.1999998093,"address":"Vaartstraat 94","category":"North American Lager","city":"Leuven","coordinates":[50.8853,4.7008],"country":"Belgium","description":"Stella Artois was first brewed as a Christmas beer in leuven. It was named Stella from the star of Christmas, and Artois after Sebastian Artois, founder of the brewery. It's brewed to perfection using the original Stella Artois yeast and the celebrated Saaz hops. It's the optimum premium lager, with it's full flavour and clean crisp taste.","ibu":24,"name":"Stella Artois","state":"Vlaams Brabant"},{"abv":5.1999998093,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Rich golden hue color. Floral hop with sweet malt aroma. Medium mouth feel with malt sweetness, hop quenching flavor and well-balanced bitterness.","ibu":25,"name":"Amendment Pale Ale","state":"California","website":"http://www.21st-amendment.com/"},{"abv":7,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"A bock beer is required by German law to start at 17°Plato. For those who are interested, °Plato is a measurement of the sugar content before fermentation. It is a very malty lager beer with medium hop bitterness. A maibock is a light to amber colored bock beer. A Maibock is very similar to a Helles/pale bock. Maibocks were originally brewed for the coming of spring, hence the name Mai (German for May). The Mad Brewer Maibock is medium amber in color. Though similar in color to our Pipe Organ Pale Ale, it is very different in character. Don’t let it get you though, it’s a very strong beer at about 7% alcohol. It has a very clean and malty nose. The hop bitterness is evident, but not dominant. The Mad Brewer Maibock will finish quite full and have a delicate sweetness.","ibu":21,"name":"Mad Brewer Maibock","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":10,"address":"6 Cannery Village Center","category":"Belgian and French Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A big, belgian-style Wit brewed with coriander and orange peel and fermented with Pinot Noir juice. After fermentation a fraction of the batch is aged in Oregon Pinot Noir barrels, and another fraction is aged on oak staves. The beer is blended together before packaging.\n\n\nThis has been one of our most popular Limited Edition beers at both our Rehoboth Beach, DE brewpub and at festivals. It successfully marries the refreshing citrusy qualities of a Belgian-style white beer with the robust complexity of a bold red wine.","ibu":78,"name":"Red & White","state":"Delaware","website":"http://www.dogfish.com"},{"abv":13,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Everyday Goose Island smells the wonderful coffee roasting next to our brewery at Chicago's Intelligentsia Coffee and Tea. They put the same passion and skill into their coffee as Goose Island does with its beer. This excellent stout is made with Black Cat Espresso beans from our friends next door. You'll like the combination.","ibu":60,"name":"Bourbon County Brand Coffee Stout","state":"Illinois"},{"abv":7.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"We teamed up with St. Thomas Roasters of Linglestown, PA to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating an environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Java Head a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus aromas from the combination of Kenyan beans and whole flower hops.","ibu":11,"name":"Java Head Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"With a coppery-amber color and a full malty body with flavors of nuts and toffee. The English hops lend enough “spice” to leave a very drinkable finish to this comfort food of a beer. Available on draft from November to May.","ibu":73,"name":"Sky Pilot Scotch Ale","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":5.25,"address":"491 Ontario Street","category":"North American Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Buffalo’s favorite red ale. Ruby red and malty flavored with a medium body and a spicy hop signature to balance. Available in bottles and on draft","ibu":67,"name":"Aviator Red","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":5.8000001907000005,"address":"rue du cerf","category":"British Ale","city":"Genval","coordinates":[50.7298,4.508],"country":"Belgium","ibu":111,"name":"Martin's Pale Ale","website":"http://www.anthonymartin.be/"},{"abv":2.136961679456193,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":43,"name":"Iron Horse Stout","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":7.5,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Lost and Found- Modeled after the great Trappist and Monastic beers that inspired the founding of our brewery. A richly deep garnet colored ale created from a blend of Domestic and imported malts. As part of our commitment to interesting brewing endeavors, Chef Vince created a special raisin puree for this beer. Malts, raisins and a fantastic yeast strain working in harmony produce a beer of amazing complexity and depth. Available in 750ml bottles and on draft at select inspired locations.","ibu":61,"name":"Lost and Found Abbey Ale","state":"California","website":"http://www.lostabbey.com/"},{"abv":7,"address":"1257, Kounsosu","category":"British Ale","city":"Ibaraki","country":"Japan","ibu":7,"name":"Hitachino Nest Japanese Classic Ale","state":"Kanto"},{"abv":2.0008513953433327,"address":"1441 Cartwright Street","category":"German Ale","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":0,"name":"Hefeweizen","state":"British Columbia"},{"abv":8,"address":"Kerkstraat 92","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","description":"LOOK:\n\nKwak is recognisable by its deep bright amber colour and a dense, creamy coloured head. The pale wood of the glass holder makes a pleasant contrast with the beer.\n\n\nSMELL:\n\nYou will smell a mellow, fruity and malty aroma with a slightly spicy character (coriander, hops). Additional earthy and very subtle aromas of banana and perhaps also a whiff of pineapple or mango in the background.\n\n\nTASTE:\n\nDiscover a very mellow, fruity attack, a nougat-like solidity, and a slightly spicy character with hints of liquorice passing into a warm finish that reminds you of caramelised banana. The bitterness always remains in the background but in the end emerges delicately.","ibu":1,"name":"Pauwel Kwak","state":"Oost-Vlaanderen"},{"abv":7,"address":"Gamle Rygene Kraftstasjon","category":"Irish Ale","city":"Grimstad","country":"Norway","description":"In this quite dark ale, dark malts provide flavors of coffee and dried fruit. Recommended serving temperature 10°C/50°F. Try with dark chocolate, cheese, or red meat dishes.","ibu":5,"name":"Nøgne Ø Porter","state":"Lunde","website":"http://nogne-o.com/"},{"abv":3.4942949859371417,"address":"120 East Third Street","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":39,"name":"Grand Cru","state":"Nebraska"},{"abv":5,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":97,"name":"Bison Brown","state":"New Jersey"},{"abv":4.8000001907000005,"address":"Wunderburg 5","category":"German Ale","city":"Bamberg","coordinates":[49.8904,10.9056],"country":"Germany","ibu":79,"name":"Weissbier","state":"Bayern"},{"abv":2.5968957778506696,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":107,"name":"Kriek-Lambic","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":5.0999999046,"address":"Am Brunnen 2","city":"Wolnzach","country":"Germany","ibu":47,"name":"Hell","state":"Bayern"},{"abv":0.8445481864424731,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":119,"name":"X-Tra Pale","state":"California"},{"abv":5.947586842193584,"address":"6 N. Reamstown Road","category":"North American Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"Dortmunder style lager with full body and deep golden color. Brewed using four specialty malts with moderate hopping for a smooth clean flavor and aroma.","ibu":94,"name":"Union Barrel Works Lager","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":10,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A fine companion to end a meal or relax in front of the hearth with, this robust ale will cellar well for years. Brewed with ten varieties of malted barley this stout is extremely smooth, complex and rich in body. We recommend serving at cellar temperature. Sit back and enjoy its richness and complexity, your about to drink the ultimate winter warmer.","ibu":11,"name":"Founders Imperial Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Reddish amber in color, mild and malty with hop aroma and finish.","ibu":10,"name":"Righteous Red","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"Brouwerslaan 1","category":"German Lager","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"The 'standard' Grolsch beer.","ibu":24,"name":"Grolsch Premium Pilsner","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":0.3123783377257239,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":70,"name":"Framboise 1997","state":"Vlaams Brabant"},{"abv":5.482498946306197,"category":"North American Ale","city":"Bellingham","coordinates":[48.7596,-122.488],"country":"United States","ibu":117,"name":"Pale Ale","state":"Washington"},{"abv":13.714363280762058,"category":"North American Ale","city":"Eden Prairie","coordinates":[44.8652,-93.4095],"country":"United States","ibu":46,"name":"Flying Horse Pale Ale","state":"Minnesota"},{"abv":0.9733896805017794,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":5,"name":"Dock Light Golden Ale","state":"Wisconsin"},{"abv":9.198683558279273,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":29,"name":"Red Earth Pale Ale","state":"Michigan"},{"abv":14.635723281812389,"category":"North American Ale","city":"Las Vegas","coordinates":[36.1286,-115.171],"country":"United States","ibu":99,"name":"Jackpot Pale","state":"Nevada"},{"abv":3.186075322417622,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":87,"name":"Four Horsemen Ale","state":"Indiana"},{"abv":7.3000001907,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":2,"name":"Petrus Aged Pale","state":"West-Vlaanderen"},{"abv":4.9000000954,"address":"21 W. Bay St.","category":"German Lager","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"This German-style Festival bier has a rich orange hue. Its medium body is complemented by a Munich malt toastiness and premium German hops which are a blend of Hallertau, Spalt, Hersbruck and Saaz, yielding a spicy, \"noble hop\" aroma.","ibu":91,"name":"Savannah Fest","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":11,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"First brewed in 1998 to be served on our fifth anniversary (December 15, 1999), this beer just gets better every year. And, every year around our anniversary, we brew a new vintage. With an original gravity of 1099, this Barley Wine is dark and sweet, and is served in a snifter like an after-dinner drink. You'll want to savor it slowly.","ibu":18,"name":"Old '99 Barley Wine","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":5.4000000954,"address":"311 Tenth Street","category":"North American Ale","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Brewed only in spring. Has a crisp taste, thanks to the kieffer lime leaves and lime added in. Has a light amber color and absolutely delicious!","ibu":19,"name":"Rising Moon Spring Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":8.516886235793109,"address":"91 S Royal Brougham Way","category":"North American Lager","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":86,"name":"Sun Fest","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":0.4790984546919397,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":109,"name":"Winter Solstice Seasonal Ale 1992","state":"California","website":"http://avbc.com/"},{"abv":6.8000001907000005,"category":"German Lager","city":"Helena","coordinates":[46.5958,-112.027],"country":"United States","ibu":85,"name":"Doppelbock","state":"Montana"},{"abv":0.16680381456620985,"address":"Black Creek Pioneer Village","category":"Other Style","city":"Toronto","country":"Canada","description":"Porter is a dark-coloured beer developed in the 1750s. Porter has a heavier flavour and aroma and a slightly sweet taste. Its name probably originates in the belief that this strong, nourishing drink was ideal for hard-working porters and labourers. Black Creek Porter is wonderful on its own, or with salty snacks.","ibu":90,"name":"Black Creek Porter","state":"Ontario","website":"http://www.blackcreekbrewery.ca/"},{"abv":9.3999996185,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Made from our B.O.R.I.S. Imperial Stout, that was rated one of the World’s 50 Best Beers, and won the Gold Medal at the GABF in 2008. BARREL-AGED B.O.R.I.S. has picked up rich characters of vanilla, dark fruit, oak, and spice. It’s unbelievably complex and savory","ibu":68,"name":"Barrel-Aged B.O.R.I.S. Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":9,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer is a salute to the ingenuity and creativity of the American craft brewers. A uniquely American style of beer, the Double or Imperial IPA, has become the calling card of many craft brewers who aren't afraid to push the limits of what hops can add to a beer. This beer is big and hoppy - not for the faint of heart! Be prepared to experience sensory overload as you savor this Imperial IPA.","ibu":9,"name":"Captain's Reserve Imperial IPA","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":5,"address":"6648 Reservoir Ln","category":"German Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"TailGate Beer does the German style wheat beer right. Hints of citrus, complemented by sprinkles of spice that makes a German, full flavored brew that is really hard to say right. Proud of the names ‘weizen’ (wheat) base ingredient, TGB draws most of its flavor from the famed grass plant. This Hef is one truly crisp, and refreshing unfiltered ale that garnishes well with a lemon or an orange! Be sure to impress your friends with your fine tuned palate and sophisticated verbiage next time you belly up to order your TailGate Beer “HEH-feh-vite-zehn”","ibu":96,"name":"Tailgate Hefeweizen","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":7.4499998093,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"This hophead's delight contains 7 hop additions. A malt background balances the hoppy bitterness for a complex flavor.","ibu":63,"name":"Hopnoxxxious","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":7.5,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"The newest member of the Firestone family, Union Jack is the aggressive IPA that you’ve been searching for. Citrus, pineapple, and a full chewy malt profile finish clean on your palate. Over 70 IBUs and 7.5% alcohol by volume, Union Jack won’t have any problem competing with the big India Pale Ales. A beer true to its origins; deeply hopped and bolstered for a long voyage.","ibu":26,"name":"Union Jack India Pale Ale","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.9000000954000003,"address":"237 West Butler Avenue","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"How about trying a glass of traditional Irish stout. Our stout however is not particularly dry and has overtones of dark chocolate and toffee. The infused nitrogen gives a wonderful cascading effect in the glass and a rich, creamy head. Particularly tasty when paired with our oysters on the half shell.","ibu":68,"name":"Anne Bonny Irish Stout","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"An American style Wheat Ale made with 50% malted 2 Row barley and 50% malted wheat. Valley Brew Pale Wheat is lightly hopped to produce a smooth and satisfying finish.","ibu":52,"name":"Valley Brew Pale Wheat","state":"California","website":"http://www.valleybrew.com/"},{"abv":5,"address":"140 North Third Street","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This brew was inspired by the historical burning of our hometown of Chambersburg, PA in July 1864. During the burning, the brewery in town, \"Ludwigs Brewery\" operated by George Ludwig was burned to the ground by Confederate soldiers under Gen. McCausland. In remembrance of this event we created a German style rauchbier, or dark smoked lager. This beer uses all its ingredients from Bamberg, Germany, which is where the style was born and in by coincidence, the same area where Ludwig himself was born and taught to brew. It is made with a special birch wood smoked malt that imparts a light smoky aroma, taste, and dryness to the palate. The pilsner malt and noble German hops are used to balance this dryness making it very enjoyable as well as different. We believe this beer resembles how Ludwig himself might have brewed it over 100 years ago.","ibu":68,"name":"Ludwig's Revenge","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":1.1014258751991413,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Baron Oktoberfest is a traditional German Style Oktoberfest / Marzen. Deep copper/amber in color with a rich but light malt flavor. Finishes crisp and easy, leaving the mouth desiring more. We age the Oktoberfest for a full three months to guarantee a fantastically smooth beer.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":58,"name":"Baron Oktoberfest","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":10.84969456700371,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":38,"name":"The Big O Oktobefest","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":14.432535533059134,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":68,"name":"Triple Impériale","state":"Hainaut"},{"abv":5.9000000954,"address":"611 North Pine","category":"Irish Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":87,"name":"Porter","state":"Washington"},{"abv":0.31073342982100516,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":2,"name":"India Pale Ale","state":"Washington"},{"abv":5.712256063444832,"address":"4133 University Way NE","category":"Irish Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":32,"name":"Coal Creek Porter","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6.2069718648745695,"address":"5820 Marine Drive","category":"North American Ale","city":"Burnaby","coordinates":[49.2055,-122.978],"country":"Canada","ibu":34,"name":"Pale Ale","state":"British Columbia"},{"abv":7.5,"address":"Brenplatz 7","category":"German Lager","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":81,"name":"Coronator Helle Doppelbock","state":"Baden-Wrttemberg"},{"abv":5.4000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":109,"name":"Kapuziner Schwarz-Weizen","state":"Bayern"},{"abv":7.5,"address":"2 Penhall Road","category":"North American Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","ibu":40,"name":"India Pale Ale","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":8.5,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"DoppelBock Dunkel has a pleasant full and creamy body, with a cofeeish aroma. Nicely warming with toffeelike malty sweetness, balanced by a hoppy-bitterness in the finish.","ibu":17,"name":"Doppelbock Dunkel"},{"abv":5,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":46,"name":"Pelican Pale","state":"California"},{"abv":10.5,"address":"Oostrozebekestraat 114","category":"North American Ale","city":"Ingelmunster","coordinates":[50.919,3.2632],"country":"Belgium","ibu":69,"name":"Podge Belgian Imperial Stout","state":"West-Vlaanderen"},{"abv":3.399526716255866,"category":"Irish Ale","city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":65,"name":"Palace Porter","state":"Minnesota"},{"abv":5.5999999046,"address":"279 Springfield Avenue","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":94,"name":"Ghost Pony Helles Lager","state":"New Jersey"},{"abv":5.5,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":109,"name":"Lagerbier","state":"Bayern"},{"abv":12.700598144656718,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":54,"name":"Old Roundout Pale Ale","state":"Illinois"},{"abv":14.568506383748957,"category":"German Lager","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":48,"name":"Stein Bock","state":"Iowa"},{"abv":10.995062204014728,"address":"Emil-Ott-Strasse 1-5","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":22,"name":"Weisse Dunkel","website":"http://www.schneider-weisse.de"},{"abv":6.557525591471859,"address":"824 West St.Clair Avenue","city":"Cleveland","coordinates":[41.4995,-81.6994],"country":"United States","ibu":97,"name":"Kölsch","state":"Ohio"},{"abv":5.724958612999382,"address":"2565 North Highway 14","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":107,"name":"Eastern Sierra Lager","state":"California"},{"abv":4.804876634170645,"address":"375 Water Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Every year in Vancouver there are a few days when the air is cool & crisp, the sun shines brightly, and the leaves show their vibrant colours -- then it starts to rain incessantly. Anyway, our Cascadia Cream Ale is dedicated to the spirit of mountains, oceans, golden days and gentle mist. Caramel and honey malts lend this ale a mellow, grainy maltiness which is balanced by the subtle presence of English finishing hops. Cheers, our Cascadia Cream Ale will be sure to brighten up even the wettest West Coast day.","ibu":115,"name":"Cascadia Cream Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":4.8000001907000005,"address":"306 Northern Avenue","category":"German Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"From Harpoon's site:\n\n\n\"UFO Hefeweizen is an American unfiltered wheat beer. Perhaps UFO’s initial sensory perception is also its most prominent: a cloudy golden color and a dense, frothy head. The yeast, which has not been filtered out, accounts for the cloudiness of UFO. Wheat malt tends to create a larger head than barley malt, the cereal grain most often used in brewing. When served in a traditional wheat beer glass with a lemon, UFO presents an appealing and distinctive visual image.\n\n\nThe aroma has a faint but clear citrus-like character. This is produced by the special yeast and accounts for the Bavarian tradition of serving hefeweizens with a lemon. The lemon accentuates the yeast’s fruity, tart fragrance. UFO has a soft mouthfeel and a refreshing, light body. The wheat malts and subtle hopping give the beer a mild, delicate flavor. UFO has a clean finish. Unlike some imported hefeweizens, UFO does not have the spicy, tropical flavors typical of European-brewed style.\n\n\nThe overall character is a cloudy appearance with a citrus-like aroma, light body, and clean finish. Serve with a lemon.\";\"0","ibu":46,"name":"Harpoon UFO Hefeweizen","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":0.7473158808877178,"category":"North American Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":27,"name":"Double Eagle Golden Ale","state":"North Carolina"},{"abv":10.649277479381382,"address":"401 Cross Street","category":"German Lager","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":17,"name":"Limestone Bavarian Style Bock (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":5.1999998093,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":81,"name":"Saison 1900","state":"Brabant Wallon"},{"abv":0.22714667201847227,"address":"309 Court Avenue","category":"Other Style","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":6,"name":"Capital Raspberry Wheat","state":"Iowa"},{"abv":4.8000001907000005,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Czechoslovakian style Pilsner is golden in color and hopped with a bunch of genuine Czechoslovakian Saaz hops. These hops provide a special floral aroma and a delightfully hoppy finish.\n\nPeregrine Falcons were recently reintroduced to the Harrisburg area as well as other large cities in Pennsylvania. This Falcon is one of the fastest birds, reaching speeds in excess of 200 miles per hour. Its unique ability to rid urban areas of its nemesis, the pigeon, has cities throughout the region clamoring for the Peregrine as a permanent resident.","ibu":45,"name":"Peregrine Pilsner","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.6405867368838212,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":105,"name":"Longshot Hazelnut Brown","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":3.5,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.","ibu":21,"name":"Dos Perros","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.9000000954,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"This wonderfully refreshing beer specialty from Stiegl, Austria’s largest privately owned brewery is brewed in strict adherence with the 1516 purity law of only using water, malt and hops. Stiegl-Goldbräu is an Austrian styled beer with its own distinctive Salzburg lager flavor. The 12o original gravity is unparalleled in its even taste and ability to refresh. It is mildly hopped is golden in color has a great head with a superb finish. Stiegl-Goldbräu is considered by many connoisseurs to be the world’s finest beer.","ibu":50,"name":"Stiegl Goldbräu","website":"http://www.stieglbrauerei.at/"},{"abv":5,"address":"80 LAMBERT LANE","category":"North American Lager","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"We mill the choicest two row barley malt in our 100 year old mill room for this all natural, unfiltered Lager. Lightly hopped, fermented slowly. River Horse Lager gets plenty of quality time with us before we pass it on to you.","ibu":53,"name":"River Horse Lager","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5.5,"address":"190 5th Street","category":"Belgian and French Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Maillot Jaune, or \"Yellow Shirt\", is named for the jersey of honor given to the leader of the Tour De France bicycle race held every July. American Lance Armstrong is the only person in history to wear the Maillot Jaune 7 times in a row! Golden in color and blessed with a kiss of hop bitterness, this ale is also available barrel aged. Steve swears that he does not use any performance enhancing drugs in the production of this beer!","ibu":96,"name":"Maillot Jaune","state":"Michigan","website":"http://liverybrew.com/"},{"abv":6.4000000954,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"This extra hoppy ale is characteristic of the classic pale ales. Using the very flavorful Mount Hood and Liberty hops we have created classic IPA goodness every sailor knows.","ibu":19,"name":"Dead Man Walkin' IPA","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"Our newest addition to our Harvest family is Southern Hemisphere Harvest. This is the first time we know of that an American brewer has put out a beer with fresh-picked hops from the southern hemisphere. The inaugural ale will debut in late April and will feature fresh Pacific Hallertau, New Zealand Motueka and New Zealand Southern Cross hops, all from New Zealand. \n\n\nLike our Celebration Ale, the fresh hops in this beer are dried right after being picked then shipped immediately to Chico for brewing so that they retain their peak aromatics and flavors. To ensure the freshest hops possible, we went to the added expense of flying these hops from New Zealand to Chico so we could brew with them the week after they were picked.","ibu":42,"name":"Southern Hemisphere Harvest Fresh Hop Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":2.9815074615863004,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":90,"name":"Fireman's Pail Ale","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Our classic German lager has a perfect balance of caramel malt sweetness. Look for a rich, amber color and medium body.","ibu":109,"name":"Saranac Adirondack Lager","state":"New York","website":"http://www.saranac.com"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"British Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An imperial bitter style using exotic traditional floor malts, citrus hoppy flavor, stupendous hop aroma. Hedonistic!\"Mellow Beer Emboldened by Hops,\" Elaine Louies article in the New York TimesDining Out Section, (March 24, 1999) announced the release of latest Rogue elixir to be bottled. The article states that \"The newest beer of Rogue Ales sounds more aggressive than it is. Brutal Bitter is actually full-bodied, deeply flavored, intensely hoppy brew. There is nothing brutal about the rich, deep, mellow taste. Its crackling but not sharp... This beer may raise eyebrows, but it wont pucker lips. The aftertaste is clean.","ibu":18,"name":"Brutal Bitter","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"8938 Krum Ave.","category":"Belgian and French Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A Wheat Ale brewed with American Wheat and a proprietary blend of Hefe and classic Belgian-style yeasts. A refreshing winter alternative created from the subtle fusion of two classic flavors.","ibu":48,"name":"Winter White Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6.3000001907,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"Rich fruitcake aromas – almonds, zest and conserved fruit. A wonderful balance of malt and hop flavours. A beer to savour and rich in flavour.","ibu":102,"name":"Broadside Ale","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":9.812127086087875,"address":"1918 West End Avenue","city":"Nashville","coordinates":[36.152,-86.7989],"country":"United States","ibu":38,"name":"Chaser Pale","state":"Tennessee"},{"abv":14.145700405418827,"address":"830 Main Street","category":"North American Lager","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":43,"name":"Island Wheat","state":"California"},{"abv":4.509185878837938,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":26,"name":"Oatmeal Stout","state":"California"},{"abv":6.8000001907000005,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":98,"name":"Organic Gingerbread Ale","state":"California"},{"abv":3.7310732322558318,"address":"417 North Broadway","category":"North American Ale","city":"Red Lodge","coordinates":[45.1913,-109.247],"country":"United States","ibu":65,"name":"Glacier Ale","state":"Montana"},{"abv":5.0999999046,"address":"Kendlerstraße 1","category":"German Ale","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This fine yeast wheat beer specialty is a refreshing, natural and stimulating beer brand.","ibu":30,"name":"Weizengold Hefefein","website":"http://www.stieglbrauerei.at/"},{"abv":7.5,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A rich brown ale inspired by the enigmatic monastic brews of Belgium, and the mysterious mist shrouded jungles of the tropics. Brewed with real cacao, and spiced with cinnamon and sweet orange peel for a sensual delight. A brew to be sipped, savored, and enjoyed!","ibu":74,"name":"Maracaibo Especial","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":2.416402685712069,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":107,"name":"Bokrijks Kruikenbier","state":"Antwerpen"},{"abv":6,"address":"Metaalweg 10","category":"North American Lager","city":"Roermond","coordinates":[51.1684,6.0515],"country":"Netherlands","description":"Christoffel Robertus is a low-fermenting ruby-red beer, brewed in the Münchener-style. It is a malty, fresh beer with a light sweetness. The typical hop bitterness found in Blond, is very lightly present in Robertus. The use of an extensive amount of selected barley gives Robertus the special malty taste and aroma.","ibu":118,"name":"Robertus","website":"http://www.christoffelbeer.com"},{"abv":11.379344636308964,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":118,"name":"Adler Bräu Ginseng Lager","state":"Wisconsin"},{"abv":12.66418458714157,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":36,"name":"Steenbrugge Tripel Blond","state":"Oost-Vlaanderen"},{"abv":12.561240919873477,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":13,"name":"Hops and Glory American Ale","state":"Wisconsin"},{"abv":12.899321694920497,"address":"219 Governor's Square","category":"North American Ale","city":"Bear","coordinates":[39.6318,-75.6628],"country":"United States","ibu":60,"name":"Highlander Stout","state":"Delaware"},{"abv":10,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Emphasizing that complexity of character can arise from simple elements, this ale is made with three malts and one hop. Its light amber color and slightly spicy malt character are derived from the use of German Dark Munich Malt and Rye Malt respectively. North American 2-row barley combines with the other grains to lay the foundation for the hop onslaught to come. Summit hops are used exclusively in the boil for bitterness, flavor and aroma but it doesn’t end there. Post-fermentation dry hopping allows the 9.5% ABV monstrosity to gently coax the citrus rind and grapefruit aroma to join the 100 IBUs already present. This beer should greet you with a pungent citrus blast, provide a spicy yet round middle and finish with a brisk, clean bitterness.","ibu":109,"name":"Gubna Imperial IPA","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":0.564256922362596,"city":"Fresno","coordinates":[36.7477,-119.772],"country":"United States","ibu":85,"name":"Aztec Amaranth Ale","state":"California"},{"abv":10.281202331062921,"address":"135 North Highway 101","city":"Solana Beach","coordinates":[32.9908,-117.272],"country":"United States","ibu":85,"name":"Cuvee de Tomme","state":"California","website":"http://www.pizzaport.com"},{"abv":0.2945952310225852,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":23,"name":"J&S; Stout","state":"Wisconsin"},{"abv":8.309371066324028,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":69,"name":"American Pale Ale","state":"Illinois"},{"abv":3.753408274878798,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":93,"name":"INDIAna Pale Ale","state":"Indiana"},{"abv":1.1014166666011538,"address":"1927 West North Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9104,-87.6761],"country":"United States","ibu":65,"name":"4 Reverends Imperial Stout","state":"Illinois"},{"abv":7.25,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":65,"name":"IPA","state":"California","website":"http://alesmith.com/"},{"abv":4.5999999046,"address":"Oststrae 123","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2216,6.7853],"country":"Germany","ibu":5,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":4.8000001907000005,"address":"Auerhahnring 1","city":"Wernigerode","coordinates":[51.8439,10.7533],"country":"Germany","ibu":46,"name":"Premium Pils","state":"Sachsen-Anhalt"},{"abv":0.631194791864369,"address":"1525 St. Charles Avenue","category":"North American Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":104,"name":"Z.P.A. India Pale Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":10,"address":"120 Wilkinson Street","category":"Belgian and French Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Cellar aged, subtly complex and deceptively strong. Using two of the old world's brewing traditions, we have combined British ingredients and methods with Belgian ale qualities.","ibu":37,"name":"Tripel Crown","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6,"address":"200 Aalststraat","category":"Belgian and French Ale","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":67,"name":"Liefmans Kriekbier","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":11.347579721530627,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":101,"name":"Oak Aged Single Malt","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":13.730754724391014,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":84,"name":"8-Ball Stout","state":"California","website":"http://www.lostcoast.com/"},{"abv":2.59263254295813,"address":"146 Snelling Avenue North","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":113,"name":"Irish Gold","state":"Minnesota"},{"abv":10.086878774602187,"address":"57 Hamline Avenue South","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":115,"name":"Big Island Porter","state":"Minnesota"},{"abv":5.5,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":80,"name":"Old Rogue Pale Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":0.015879479308628097,"address":"375 West 910 South","city":"Heber City","coordinates":[40.496,-111.42],"country":"United States","ibu":101,"name":"Steamer","state":"Utah"},{"abv":8,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":75,"name":"Grand Cru of the Emperor","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5,"address":"639 Conner Street","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":4,"name":"60 Shilling Scotch Ale","state":"Indiana"},{"abv":14.775890842692444,"address":"921 South Riverside Drive","category":"Other Style","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":108,"name":"Riverboat Raspberry flavored Beer","state":"Missouri"},{"abv":7.403712838880371,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":76,"name":"Haymarket Ale","state":"Michigan"},{"abv":7.276612476252024,"category":"North American Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":77,"name":"Oyster Stout","state":"Indiana"},{"abv":11.833094448773364,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":86,"name":"Affligem Noël","state":"Vlaams Brabant"},{"abv":2.2439567432718133,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":59,"name":"Barleywine","state":"Illinois"},{"abv":11.409843351082118,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":2,"name":"Moylannium Ale","state":"California","website":"http://www.moylans.com/"},{"abv":14.430794107516663,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":95,"name":"4th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.5,"address":"302 N. Plum St.","category":"North American Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A traditional German style lager. Characterized by a deep copper color and rich malt flavor. Balanced with German hops.\n\n\nAvailable at the Brewery and in bottles & cases from March - May.","ibu":24,"name":"Spring Bock","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":3.2538108694483947,"city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":109,"name":"Blonde","state":"California"},{"abv":13.35674639571441,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":21,"name":"Brown Bear Ale","state":"California"},{"abv":7.5,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":3,"name":"Alba Scots Pine Ale","state":"Scotland"},{"abv":4.579943946334456,"address":"1398 Haight Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":6,"name":"Cole Porter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":12.023275515602323,"address":"617 Fourth Street","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":60,"name":"Dunkel Hefeweizen","state":"California","website":"http://www.lostcoast.com/"},{"abv":4.576358069109242,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":51,"name":"Red","state":"Illinois"},{"abv":6.338018779641271,"address":"Fonteinstraat 65","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":16,"name":"Pertotale Faro","state":"Vlaams Brabant"},{"abv":4,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"A regular winner of awards for quality and flavour, and winner of the silver medal at the International Brewing Industry Awards 2002, this refreshing yet full-bodied bitter is a favourite with beer drinkers everywhere. The rich flavours of premium malt and goldings hops are unmistakable in this well balanced, traditionally brewed bitter.","ibu":75,"name":"Finest Bitter","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":9,"address":"2800 North Reading Road","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":64,"name":"Old Abominable Barley Wine","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":6.4000000954,"address":"35 Fire Place","category":"Irish Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A trademark beer of the Santa Fe Brewing Company’s master brewer, Ty Levis, the State Pen Porter has every reason to be one of his favorites. It is flavorful, swimming with notes of nuts and chocolate; it is drinkable, so drinkable that it is almost as if pint after pint were drinking itself.","ibu":69,"name":"State Pen Porter","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":4.6999998093,"address":"6648 Reservoir Ln","category":"North American Lager","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Why settle for a watered down version of delicious barley and hops when the TailGate Beer Light will make you a convert to the world of light ales. Eat hardy, and enjoy a light beer with serious flavor, lower calories and the most serious attention to the powers that flavor beer. A nose of citrus and spice with a tongue of vanilla are just a few of the very unique flavors to grace your senses in this Light Ale. This is the light beer lovers of beer have been waiting for. This is not a watered down version of a good idea.","ibu":55,"name":"Tailgate Light","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":4.5,"address":"700 North Pennsylvania Blvd.","category":"German Lager","city":"Wilkes Barre","coordinates":[41.2557,-75.8583],"country":"United States","ibu":10,"name":"Lionshead","state":"Pennsylvania","website":"http://www.lionbrewery.com/"},{"abv":6.9000000954,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Aggressively Bitter, Full-Bodied Ale with a Wonderful Floral Hop Aroma","ibu":30,"name":"Avalanche IPA","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":4.0999999046,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":68,"name":"Carling","state":"Ontario"},{"abv":6.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Acme IPA is profoundly hoppy, finished with over a pound of fresh whole hops per barrel. The result of this generous hopping is a beer that is deliciously dry, and eminently drinkable in spite of its apparent strength.","ibu":23,"name":"Acme California IPA","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":4.1999998093,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Presque Isle and the bay it creates have played many significant roles in the history of Erie and our young nation. The US Government chose this location to build a fleet of ships during the war of 1812 because it formed the only protected harbor on Lake Erie. In 1813, during the battle of Lake Erie, Commodore Oliver Hazard Perry successfully defended Lake Erie against the British with ships that were built on Presque Isle Bay, making a significant mark on the pages of history. Presque Isle Pilsner, a tribute to history is a hand crafted pilsner that is \"A noble beer for Noble People.\";\"0","ibu":13,"name":"Presque Isle Pilsner","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":4.8000001907000005,"address":"545 Canal Street","category":"Belgian and French Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Midnight Wit is a Belgian-style white ale with a medium body and spicy, citrus overtones. The texture is silky, creamy, and refreshingly delightful. Brewed with European Pilsner malt, unmalted wheat, a blend of 5 different spices and then fermented with a classic Belgian yeast strain. Our Brewmaster learned the art of brewing tantalizing and award-winning white beers during his time in Belgium and this beer shows it.","ibu":12,"name":"Midnight Wit","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":7.408373138363911,"address":"618 S. Wheeling Ave","category":"North American Ale","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":111,"name":"Atlas IPA","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":6.5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","ibu":21,"name":"Abita Jockamo IPA","state":"Louisiana","website":"http://www.abita.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"Belgian and French Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":8,"name":"Leinenkugel's Sunset Wheat","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.0999999046,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","description":"Very drinkable light golden ale. Extremely refreshing hop finish","ibu":83,"name":"The Bitter End Pale Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":6.0999999046,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Sweeter and smoother than Kalamazoo Stout. A beer for special winter occasions. Great with chocolate desserts.","ibu":10,"name":"Special Double Cream Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This is our original brew and our most approachable beer. It's brewed with a premium barley and whole-leaf Glacial & Warrior hops. Our Shelter Pale Ale has a fine malt backbone and a slightly nutty flavor. A versatile, quaffable beer. The Shelter Pale Ale is available exclusively in the Mid-Atlantic region.","ibu":101,"name":"Shelter Pale Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"German Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Hang Ten is the Heavy Seas wheat beer you’ve been waiting for. A classic German-style weizen bock, slightly cloudy and bursting with flavor. Hang on and surf the Heavy Seas wave! Seasonally available in July while supplies last.","ibu":50,"name":"Hang Ten","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.503888687682564,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":36,"name":"Red Rooster Pale Ale","state":"Nebraska"},{"abv":1.9892579280160694,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":75,"name":"Red Lager","state":"Wisconsin"},{"abv":2.442112146039955,"address":"842 East 65th Street","category":"Irish Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":7,"name":"Porter","state":"Indiana"},{"abv":7,"address":"Inveralmond Way","category":"British Ale","city":"Perth","coordinates":[56.4174,-3.4779],"country":"United Kingdom","ibu":73,"name":"Blackfriar","state":"Scotland"},{"abv":5.0999999046,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":10,"name":"Dunkles","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":4.6999998093,"address":"Beethovenstrae 7","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":37,"name":"Bayrisch Hell","state":"Bayern"},{"abv":13.526470148249555,"address":"316 Main Street","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","description":"0","ibu":101,"name":"Stout \\\"To Be Named Later\\\";\"3","state":"Iowa"},{"abv":5.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":116,"name":"Untouchable Pale Ale","state":"California"},{"abv":5.4000000954,"address":"Avenida de Murcia, 1","category":"German Lager","city":"Granada","coordinates":[37.1875,-3.6018],"country":"Spain","ibu":80,"name":"Negra"},{"abv":11.745218437343073,"address":"1415 First Avenue","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":43,"name":"Auld Acquaintance Spiced Ale","state":"Washington"},{"abv":4.4000000954,"address":"Melmerby Green Road","city":"Melmerby","coordinates":[54.1744,-1.4844],"country":"United Kingdom","ibu":100,"name":"Toleration","state":"North Yorkshire"},{"abv":10,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":98,"name":"Quadrupel","website":"http://www.latrappe.nl/"},{"abv":9.362040688840509,"address":"1235 Oakmead Parkway","category":"German Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":111,"name":"Hefe Weizen","state":"California"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Named after the Roman god of war, Mars radiates red color and brilliant beauty yet enrages the taste buds with wrathful force. This Imperial IPA seizes its intense bitterness from an immense amount of hops. Belgian yeast retaliates, adding complexity and character.","ibu":42,"name":"Mars - Belgian Imperial Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":8,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This American double red ale is packed with enough hops to balance the full malty body.","ibu":15,"name":"Hellbrook","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.3000001907,"address":"525 Short St.","category":"German Ale","city":"Columbus","country":"United States","description":"This traditional Bavarian-style kellerbier originated from the small artisanal breweries of Franconia, where it is still a favorite in the local beer gardens. Ours is served unfiltered with a crisp, smooth finish that taste like sunshine.","ibu":75,"name":"Summer Teeth","state":"OH","website":"www.columbusbrewingco.com"},{"abv":8.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"A Double IPA brewed in memory of the brew cat. In honor of Mongo, Mike Rodriguez made his first Double IPA, as he loved the cat and wanted to honor him with this beer. This 8.5% abv beer was made with Columbus hops (Mongo’s Birthname), Cascade for the Mama cat, and Simocoe because that is Mike’s favorite hop.","ibu":91,"name":"Mongo Double IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":4.5,"category":"North American Ale","city":"Mexicali","coordinates":[31.7291,-116.578],"country":"Mexico","description":"A Craft Amber Ale, brewed using Honey from Northern Mexico.","ibu":4,"name":"Cucapa Honey Ale","state":"Baja","website":"http://www.cucapa.com/"},{"abv":4.8000001907000005,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"The unofficial name for this beer is “Super Glide”. Malty rich with a hint of spicy hops and roasted grains. This beer is one smooth ride with a clean finish! We brewed this one with American Pale, oats, flaked barley, black, chocolate, red malt, melandolin malt. American hops include Magnum, Centennial, Liberty and Crystal. Enjoy!","ibu":112,"name":"Rock Art American Red Ale","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":8.5,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A single malt and single hop version of an American Brewers classic style. This is definitely our hoppiest beer and quickly becoming a hop head cult classic!","ibu":41,"name":"Double Paw","state":"Michigan","website":"http://liverybrew.com/"},{"abv":8.1000003815,"address":"2519 Main St.","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"Kerplunk! Imperial Chocolate Stout is named for the delicious sound made as large amounts of Wilbur chocolate and west coast hops are added directly into the simmering brew kettle. This hefty black imperial-style stout boasts a rich caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your two front teeth into. The bold flavors found in Kerplunk! are produced using a generous blend of roasted barley, crystal malts and locally produced chocolate. The resulting brew exhibits a deliciously complex and unique profile of subtle mocha coffee and intense chocolate, balanced nicely by the underlying roasted hop bitterness. This is a balanced strong brew boasting an A.B.V. of 8.1% that can creep up on you.","ibu":111,"name":"Kerplunk Imperial Chocolate Stout","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Deep in the darkest depths of Rock Lake prowls a great saurian known today as Rocky. The legend of Rocky is old. The ancient inhabitants of Aztalan warned of the beast by building a giant serpent mound at the lake’s edge. The early residents of Lake Mills were forewarned of a guardian placed in the lake to protect its sacred stone tepees. And history tells of numerous encounters with Rocky, who became a source of great worry and fear. Although not seen for over a century, divers still experience a feeling of dread and being watched. Enjoy Rocky’s Revenge, our offering to this legendary protector of Tyranena.\n\n\nRocky’s Revenge is an American brown ale with a portion aged in bourbon barrels. Each bourbon barrel will contribute its own unique character to this rich, satisfying ale.","ibu":101,"name":"Rocky's Revenge","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5,"address":"2439 Amber Street","category":"Other Style","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Brewed to celebrate Ben's 300th birthday.\n\n\nWhether Ben Franklin ever said, \"Beer is living proof that God loves us and wants us to be happy\" is up for debate. Some say he said it, others say he didn't. No one knows for sure. \n\n\nHistorical facts or fictions aside, Yards Brewing Company has recreated Poor Richard's Tavern Spruce Aleâ„¢ to celebrate Franklin's affinity for fine ales. Poor Richard's Tavern Spruce Ale is based on Franklin's original recipe, which called for spruce essence and molasses, as barley and hops were not readily available at the time.\n\n\nEnjoy a taste of history courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.","ibu":71,"name":"Poor Richard's Tavern Spruce Ale","state":"Pennsylvania"},{"abv":4.9000000954,"address":"24 North Pleasant Street","category":"German Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light crisp American style wheat with a medium hop finish. Made using 25% German wheat malt. Brewed and on tap each summer.","ibu":10,"name":"Workingman's Wheat","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":7.385473259444336,"address":"375 Water Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"The term \"Pale Ale\" dates back to the 1800s when all beer was dark brown in colour. New malting techniques led to the development of pale malt, a barley malt kilned at low temperatures which contributed very little colour to the finished beer. Hence the birth of Pale Ale, an amber- to copper-coloured ale you could actually see through. Plenty of British Crystal malt in the grist lends this ale its rich colour, its caramel maltiness, and adds the occasional whiff of toffee to the nose. An addition of American and German hops to the kettle at the end of the boil is used to suffuse our Pale Ale with a gently spicy hop finish.","ibu":48,"name":"Signature Pale Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":8.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"The inspiration for making a Black IPA (or should we say \"India Black Ale/ IBA\"?) has been over a year in the making. As soon as we wrapped up the brewing of the Stone 10th Anniversary IPA, we started brainstorming ideas for the Stone 11th Anniversary Ale, and the Black IPA concept was born. This was a challenging brew to formulate and achieve what we considered the ideal flavor balance of intense up-front hops with balanced roasted malt flavors, a deep, rich flavor, and a hearty bitterness.","ibu":53,"name":"Stone 11th Anniversery Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":7,"address":"Antwerpsesteenweg 476","city":"Westmalle","coordinates":[51.2974,4.6881],"country":"Belgium","description":"Westmalle Dubbel is a dark, reddish-brown Trappist beer with a secondary fermentation in the bottle. The creamy head has the fragrance of special malt and leaves an attractive lace pattern in the glass. The flavour is rich and complex, herby and fruity with a fresh-bitter finish. It is a balanced quality beer with a soft feel in the mouth and a long, dry aftertaste. The Dubbel contains 7% alcohol.","ibu":63,"name":"Westmalle Trappist Dubbel","state":"Antwerpen","website":"http://www.trappistwestmalle.be"},{"abv":6.5,"address":"Tramstraat 8","category":"North American Ale","city":"Ursel","coordinates":[51.1287,3.4785],"country":"Belgium","ibu":104,"name":"Troubadour","state":"Oost-Vlaanderen"},{"abv":5,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":63,"name":"Sunset Amber Ale","state":"California"},{"abv":3.2389308974401754,"address":"1430 Vantage Court #104A","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","ibu":96,"name":"First Anniversary Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":5.623194962797453,"address":"25 Baile Road","category":"North American Lager","city":"Canning Vale","coordinates":[-32.0638,115.912],"country":"Australia","ibu":107,"name":"Lager","state":"Western Australia"},{"abv":14.339374095027711,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":73,"name":"X-Tra Pale Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":12.55470089883507,"address":"149 Steele Street","category":"German Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":61,"name":"Hoptoberfest","state":"Colorado"},{"abv":6.042872153915671,"address":"313 Dousman Street","category":"British Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":87,"name":"Hinterland Mild Cask Ale","state":"Wisconsin"},{"abv":2.122578295763126,"address":"205 North Broadway","category":"German Lager","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":68,"name":"Schwartzbier","state":"Illinois"},{"abv":6.322397057257639,"address":"300 West Fourth Street","category":"North American Ale","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":118,"name":"Espresso Stout (discontinued)","state":"Nebraska"},{"abv":4.636885982864905,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":84,"name":"Cream Stout","state":"Washington"},{"abv":0.3070644922483512,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":76,"name":"Pere Jacques","state":"Illinois"},{"abv":8.47245814410073,"address":"1025 Marine Drive","category":"North American Lager","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":71,"name":"Dominion Lager","state":"British Columbia"},{"abv":5.1999998093,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":43,"name":"Hecker Dunkel","state":"Baden-Wrttemberg"},{"abv":14,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","ibu":83,"name":"Samichlaus Bier 2005"},{"abv":4.4000000954,"address":"1001 North 102nd Street","category":"North American Lager","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":91,"name":"Northern Light Lager","state":"Nebraska"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":24,"name":"Bigfoot 2001","state":"California","website":"http://www.sierranevada.com/"},{"abv":4,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":92,"name":"JuJu Ginger","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":0.1891879211024916,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":35,"name":"#17 Cream Ale","state":"British Columbia"},{"abv":8.802054058657284,"address":"1 Kendall Square #100","category":"North American Lager","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","ibu":113,"name":"Wheaten Ale","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":0.4908067372513514,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":73,"name":"Lone Star","state":"Florida"},{"abv":14.538703139774082,"category":"German Lager","city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":109,"name":"Honey Bock","state":"Texas"},{"abv":9.318864779580782,"address":"1425 McCulloch Boulevard","category":"Other Style","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":67,"name":"Tripppleberry Wheat","state":"Arizona"},{"abv":9,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":17,"name":"Imperial Stout","state":"New Jersey"},{"abv":4.846593202283986,"address":"Douvieweg 2","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":20,"name":"Het Kapittel Pater","state":"West-Vlaanderen"},{"abv":6.1999998093,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":57,"name":"Imperial Stout","state":"Washington"},{"abv":5.1999998093,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":59,"name":"Ungespundet Lager Hefetrub","state":"Bayern"},{"abv":8,"address":"Rue du Village 32","category":"Belgian and French Ale","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":65,"name":"La Chouffe Golden Ale","state":"Luxembourg"},{"abv":5.4000000954,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard Pale Ale is a smooth, fruity, well-balanced beer with year-round appeal. A variety of caramel malts impart a rich flavor and amber color, while liberal use of whole hops adds zest and aroma. Pale Ale is the first beer we brewed, and continues to be a perennial favorite.","ibu":45,"name":"Boulevard Pale Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":7.090810684454182,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":77,"name":"Pilsner","state":"California"},{"abv":10,"address":"Woesten","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":82,"name":"Pannepot","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":4.5999999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"Old Milwaukee. A trusted, high quality beer that continually receives the highest awards and accolades from Beer experts across America. Old Milwaukee has a long history of celebrating \"Blue Collar\" sensibility. Simply said, good beer at a fair price. Old Milwaukee has always represented America's core values: Honesty, integrity, hard work and love for your family.\n\n\nSpeaking of family, the Old Milwaukee Family has a beer that is right for you. Old Milwaukee when you want a full bodied, full flavor American Lager. OM Light when you are in the mood for a lighter tasting beer with fewer calories. And don't forget OMNA, our flavorful non-alcoholic beer for those moments when you want the taste of America' best tasting beer without the alcohol content.","ibu":20,"name":"Old Milwaukee","state":"Texas","website":"http://www.pabst.com/"},{"abv":11,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The Mad Elf, a cheerful creation to warm your heart and enlighten your tongue. The combination of Cherries, Honey, and Chocolate Malts delivers gentle fruits and subtle spices. Fermented and aged with a unique yeast, this ruby red beer has significant warming strength that underlies the pleasant character of this intriguing yet delicious Ale. The Mad Elf, a jolly and delicious beer for the Holidays.","ibu":46,"name":"The Mad Elf","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.114100512394078,"city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":56,"name":"Light Ale","state":"Texas"},{"abv":10.22475717220033,"category":"North American Lager","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":106,"name":"Special Export","state":"Wisconsin"},{"abv":7.827042074867181,"address":"717 East Butterfield Road","category":"North American Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":1,"name":"Prime I.P.A.","state":"Illinois"},{"abv":3.631734056500031,"city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":43,"name":"Dunkel Weizen","state":"Colorado"},{"abv":13.52174199127625,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":109,"name":"Cologne Golden Ale","state":"Minnesota"},{"abv":8.401439260204025,"address":"2980 Cahill Main","category":"North American Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":25,"name":"Old Glory American Pale Ale","state":"Wisconsin"},{"abv":2.8293082914497534,"address":"Am Hof 12-14","city":"Kln","coordinates":[50.9401,6.957],"country":"Germany","ibu":44,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":9.062915349996974,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":26,"name":"Gouden Carolus Noël","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":7.5999999046,"address":"455 North Main Street","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Pranqster\n\nBelgian Style Golden Ale\n\n\nBelgian Ales represent the height of the brewers' art. Sophisticated brewing techniques, yeast blends and unique flavoring elements have elevated the beers of Belgium to the status enjoyed by wine in other countries.\n\n\nPranQster follows in this tradition using a mixed culture of antique yeast strains that produce a floral nose, a full fruity flavor and a clean finish.\n\n\nAvailable in 12oz 4 packs and 750 ml traditionally corked and wired bottles.\n\n\nVital Statistics\n\nStyle: Belgian Style\n\n Golden Ale\n\nColor: Soft Gold\n\nABV: 7.6%\n\nBitterness: 20 IBU's\n\n\n-http://www.northcoastbrewing.com/beer-Pranqster.htm","ibu":66,"name":"PranQster Belgian Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5.9000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":43,"name":"Bee Sting Honey Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.8000001907000005,"address":"215 East State Street","category":"British Ale","city":"Rockford","coordinates":[42.2689,-89.0907],"country":"United States","ibu":112,"name":"Scottish Ale","state":"Illinois"},{"abv":4.8000001907000005,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Our tribute to the town we consider to be \"Gonzo Ground Zero\"... Woody Creek White is a traditional Belgian-style Wit Beer, brewed with unique ingredients like orange peel and coriander, resulting in a refreshing and slightly citrus flavor, perfect for the \"Dog Days of Summer\".","ibu":29,"name":"Woody Creek White","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":1.3552853349629412,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":41,"name":"Snowshoe Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":13.082591579281264,"address":"2617 Water Street","category":"North American Ale","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":85,"name":"Pale Ale","state":"Wisconsin"},{"abv":9.33165947060137,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":56,"name":"Groovy Beer","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":8.599893782420846,"address":"Wisbech PE13 1LN","city":"Wisbech","coordinates":[52.6643,0.1595],"country":"United Kingdom","ibu":16,"name":"Norvig Ale","state":"Cambridge"},{"abv":6.5,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The sun barely breaks the horizon, the arctic winds bite, and snow blankets the land. It’s winter in Wisconsin! Throughout the area, you’ll find armies of fisherman, clad in blaze orange parkas and snowmobile suits, dragging their crudely built ice shanties onto the frozen lakes. While they vary in size, shape and color, each shanty contains an enthusiast braving the cold; spinning their tall tales; staring deeply into that hole in the ice; and, of course, enjoying a Legendary Wisconsin Beer. Brewed in the fall to help you survive our Wisconsin winters.\n\n\nShantytown Doppelbock is brewed in the style of a German Doppelbock. Brown in color with malty sweetness and a full body.","ibu":29,"name":"Shantytown Doppelbock","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5,"address":"89 Main Street West","category":"North American Lager","city":"Saint John","coordinates":[45.2567,-66.096],"country":"Canada","ibu":112,"name":"Canadian Lager Beer","state":"New Brunswick"},{"abv":8,"address":"Rue de Maredsous, 11","category":"Belgian and French Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Moortgat's Maredsous 8 is a fine strong dubbel that is sweet when young but develops a stout like flavour as it ages.","ibu":61,"name":"8","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":5,"address":"311 Tenth Street","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Zima is redefining refreshment. Zima flavored malt beverages are a great choice for adult consumers who seek variety and new and different products. Zima was reformulated in 2007 and is available in three citrus-based flavors.\n\n\nZima is lighter in carbonation and alcohol content, making it more drinkable and lower in calories than the old formula.","ibu":100,"name":"Zima Clear","state":"Colorado","website":"http://www.coors.com"},{"abv":0.9889661952146767,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":28,"name":"Weizenberry","state":"California"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":101,"name":"Bigfoot 1997","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.871036707134111,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":72,"name":"Bubbaganoush Pale Ale","state":"Arizona"},{"abv":5.956798453937634,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":93,"name":"Buffalo Stout","state":"South Dakota"},{"abv":6.1999998093,"address":"3300 Old Seward Highway","category":"North American Ale","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"A deep-red, full-bodied, malty ale heavily hopped with Centennial hops to produce a citrusy, spruce-like flavor and aroma. A final dose of Centennail hops in the conditioning tank lends an India Pale Ale-like aroma to the finished beer.","ibu":2,"name":"Bear Tooth Ale","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":9.497287854602916,"address":"101 Oak Street","category":"North American Lager","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A dry, crisp refreshing filtered lager. A good balance between sweet malt and light bitter hops. This beer is made with a Southern German lager yeast, Saaz, and Hershbrucker hops.","ibu":115,"name":"Standing Stone Lager","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":11,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Brooklyn Black Ops does not exist. However, if it did exist, it would be a robust stout concocted by the Brooklyn brewing team under cover of secrecy and hidden from everyone else at the brewery. Supposedly “Black ops” was aged for four months in bourbon barrels, bottled flat, and re-fermented with Champagne yeast, creating big chocolate and coffee flavors with a rich underpinning of vanilla-like oat notes. They say there are only 1,000 cases. We have no idea what they’re talking about.","ibu":88,"name":"Black Ops","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":4.8000001907000005,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":43,"name":"Estrella Levante Clasica","website":"http://www.estrelladamm.es/"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\n\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration IV is a tremendous Double Wheat beer. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. An even malt-to-wheat ratio provides a sturdy yet satisfying base for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. An American wheat beer yeast allows Obliteration IV to finish with unadulterated hop bitterness.","ibu":92,"name":"Obliteration IV","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Malt and hops are beautifully married in this full-bodied, copper-red Pale Ale. Red Seal is generously hopped for a long, spicy finish.","ibu":10,"name":"Red Seal Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":10,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone 10th Anniversary IPA harkens back to our earlier Anniversary Ales, with abundant hopping at many stages of the brewing process. Appropriately, the aroma is over-the-top, with pronounced piney and resiny hop flavors combined with tropical fruit esters and more subtle notes of toasted malts and alcohol. Our Stone 10th Anniversary Ale weighs in at 10% alcohol by volume (perfect for a 10th anniversary beer), and has a little more color and malt character than our other IPAs. In addition to using the new Summit hop variety in the brewhouse to provide the powerful bitterness, we went back through our records and found some of our favorite hops over the years, and used them to flavor this brew, including Chinook, Crystal, and large doses of Simcoe in the dry-hop to provide a huge, complex, piney, fruity and floral hop character. This is a colossal beer, big in every sense: hoppy, malty, rich, and strong! Right up our alley.","ibu":100,"name":"Stone 10th Anniversery IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":13.639395714560237,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Medium-bodied and light brown in color. This mild ale has a sweet maltiness and roasted character. Unlike English brown ales, this brown ale has a noticeably hoppy flavor from its Willamette hops. Don’t be afraid to have a Nutter!","ibu":98,"name":"Nutter Brown","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Is our double I.P.A.! Loaded with hops, this one will put hair on your chest.","ibu":101,"name":"Heady Topper","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":8.193768750232662,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Copper Ale, a medium bodied, amber ale inspired by the Altbiers of Northern Germany. Brewed with six different malts, three hop varieties and our special house yeast, Copper Ale is characterized by a well-balanced blend of malty notes and mild bitterness.","ibu":93,"name":"Copper Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":4.0999999046,"address":"8149 Honeygo Blvd","category":"North American Ale","city":"White Marsh","coordinates":[39.3722,-76.4638],"country":"United States","description":"2007 Maryland Governor's Cup Bronze Medal:\n\nA golden colored ale with crisp malt character and a slightly spicy hop aroma. We use a good amount of wheat and some German malt in this one to give it a very refreshing taste. Avenue Ale is a true session beer, so sit down and prepare for a long one.","ibu":83,"name":"Avenue Ale","state":"Maryland","website":"http://www.redbrickstation.com/"},{"abv":7.5999999046,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\n\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration III is yet another dynamic Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration III finishes with poignant bitterness.","ibu":26,"name":"Obliteration III","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":11.917942103830798,"address":"1150 Filbert Street","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":89,"name":"Kolsch","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":6.1999998093,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":33,"name":"Blonde Tradition","state":"Hainaut"},{"abv":11.216144498453872,"address":"10922 Elm Street","category":"Irish Ale","city":"Omaha","coordinates":[41.2328,-96.0825],"country":"United States","ibu":41,"name":"Porter","state":"Nebraska"},{"abv":4.8000001907000005,"address":"1201 First Avenue South","city":"Seattle","country":"United States","ibu":4,"name":"Curve Ball","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":47,"name":"Island Lager","state":"British Columbia"},{"abv":1.380068248222568,"address":"120 East Third Street","category":"North American Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":49,"name":"Amber Ale","state":"Nebraska"},{"abv":7.5,"address":"39176 Argonaut Way","category":"North American Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":88,"name":"India Pale Ale","state":"California"},{"abv":0.8717397178833775,"address":"4301 Leary Way NW","category":"Irish Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":73,"name":"Troll Porter","state":"Washington"},{"abv":6.377326889480721,"address":"7474 Towne Center Parkway #101","category":"German Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":80,"name":"EOS Hefeweizen","state":"Nebraska"},{"abv":8.552514894191377,"category":"North American Ale","city":"Richmond","coordinates":[37.543,-77.4691],"country":"United States","ibu":0,"name":"Sweet Stout","state":"Virginia"},{"abv":9.492051743858788,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":17,"name":"Creamy Stout","state":"California"},{"abv":4.9899997711,"address":"1735 19th Street #100","category":"North American Lager","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":43,"name":"Pilsner","state":"Colorado"},{"abv":5.6751970290730185,"address":"188 North Hemlock","category":"North American Ale","city":"Cannon Beach","coordinates":[45.8981,-123.961],"country":"United States","ibu":5,"name":"Thundermuck Stout","state":"Oregon"},{"abv":1.2832397131427575,"city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":103,"name":"Pilsner","state":"Iowa"},{"abv":5.5999999046,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"This American-Style Pale Ale is aggressively hopped giving it a citrusy flavor and aroma. No antidote needed. This beer is dark-golden, medium-bodied and very “hoppy.” It is American-style because American-grown hops are used rather that European.","ibu":88,"name":"Venom","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":3.6893245241464956,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":38,"name":"Scottish Ale","state":"Texas"},{"abv":5.3000001907,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"We are proud to offer one of the few surviving examples of this traditional English style sweet stout. A bold dark ale, bursting with roasted barley dryness and mellowed by hints of chocolate and coffee.","ibu":5,"name":"Lancaster Milk Stout","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":6.779673975114924,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":1,"name":"Longshot Black Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.158130793270601,"address":"1920 Shattuck Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":94,"name":"Pale","state":"California"},{"abv":7.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":57,"name":"Riot Ale","state":"Washington"},{"abv":4.8000001907000005,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":28,"name":"Elysian Fields Pale Ale","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":11.703388220567657,"address":"5820 Marine Drive","category":"North American Lager","city":"Burnaby","coordinates":[49.2055,-122.978],"country":"Canada","ibu":110,"name":"Premium Gold","state":"British Columbia"},{"abv":5,"address":"Stefanusstrae 8","city":"Grfelfing","country":"Germany","ibu":72,"name":"1809","state":"Bayern"},{"abv":13.367433544261342,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":99,"name":"Sesquicentennial Light Ale","state":"Wisconsin"},{"abv":6.979206033868367,"address":"1101 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":54,"name":"Honey Lager Light","state":"Wisconsin"},{"abv":1.6011656417465292,"address":"Toronto ON","city":"Toronto","coordinates":[43.7379,-79.5714],"country":"Canada","ibu":100,"name":"Premium Lager","state":"Ontario"},{"abv":4.8000001907000005,"address":"Chiswick Lane South","category":"North American Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":37,"name":"India Pale Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":14.857244023563881,"address":"95 Cathedral Street, Suite 200","category":"North American Ale","city":"Annapolis","coordinates":[38.9773,-76.4948],"country":"United States","ibu":89,"name":"Oyster Stout","state":"Maryland","website":"http://www.ramsheadtavern.com/"},{"abv":2.7556756512314227,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":41,"name":"Blonde Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":7.2229950348262015,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":95,"name":"Tornado Ale","state":"Michigan"},{"abv":7.926419355646008,"address":"800 LaSalle Plaza","category":"German Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":0,"name":"Heifer-Weizen","state":"Minnesota"},{"abv":6.8000001907000005,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":54,"name":"East India Pale Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":12,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":52,"name":"Malheur 12","state":"Oost-Vlaanderen"},{"abv":4.8000001907000005,"address":"Dresdener Strae 2","category":"German Lager","city":"Radeberg","coordinates":[51.1148,13.915],"country":"Germany","ibu":54,"name":"Pilsener","state":"Sachsen"},{"abv":5,"address":"Bblinger Strae 104","category":"German Ale","city":"Stuttgart","country":"Germany","ibu":50,"name":"Malteser Weissbier","state":"Baden-Wrttemberg"},{"abv":5.6999998093,"address":"Wellgarth","city":"Ripon","country":"United Kingdom","ibu":90,"name":"Riggwelter Yorkshire Ale","state":"North Yorkshire"},{"abv":8,"address":"Palackho 250","category":"Irish Ale","city":"Pardubice","coordinates":[50.0355,15.762],"country":"Czech Republic","ibu":117,"name":"Porter Boom"},{"abv":9.653938098415955,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":15,"name":"Friars IPA","state":"California"},{"abv":5.3000001907,"address":"231 San Saba Court","category":"North American Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Deep golden and malty, with a spicy hop flavor and well balanced hop bitterness, Rio Blanco is a uniquely Texan interpretation of an English-style pale ale. Czech Saaz hops provide a crisp finish and delicate aroma.","ibu":10,"name":"Rio Blanco Pale Ale","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":4.3000001907,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Nine Man\" is a golden ale, brewed from English pale and crystal malts, and with torrified wheat. It is bittered with Cascade and Cluster hops and finished with Cascade hops. \"Nine Man Ale\" was first brewed as a summer seasonal beer in 1996. It was kegged the first season but not bottled until the opening of the baseball season in April 1997.","ibu":71,"name":"Nine Men Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":3.131292828394314,"address":"3201 Walnut Street Ste A","city":"Boulder","coordinates":[40.0201,-105.251],"country":"United States","description":"A favorite of many coffee-loving beer drinkers, Big Shot Espresso Stout boasts about a shot of espresso in every pint. Twisted Pine teamed up with popular Amante Coffee in Boulder to produce what Amante co-owner and founder Greg Buchheister calls \"the most perfectly balanced buzz.\" The earthy, dark chocolate flavors of the Amante Espresso blend to the flawless balance of the beer.","ibu":59,"name":"Big Shot Espresso Stout","state":"Colorado","website":"http://www.twistedpinebrewing.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Apricot Ale is a fruit beer produced using 100% Apricot fruit extract. The beer has a hint of Apricot in the nose and a sweet clean and refreshing finish.","ibu":98,"name":"Valley Brewing Apricot Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":7.568493024401743,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","ibu":31,"name":"Amber Waves","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":8.63520276149446,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"A well balanced, medium-to full bodied beer, red in color and very flavorful. The red color and slight caramel-roasted flavor comes from generous amounts of caramel malts and a touch of chocolate malts. Well hopped to balance the malty sweetness, and dry-hopped with cascade for a full hop flavor and aroma.","ibu":56,"name":"Mermaids Red Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":115,"name":"Achel Blond 5°","website":"http://www.achelsekluis.org/"},{"abv":5.1999998093,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Our Oktoberfest is a light amber colored beer. It is malty in both flavor and aroma making it a delicate beer which is very drinkable. The hop bitterness is kept low to accentuate the maltiness. Notice the crisp clean character and enjoy. We brewed three batches of this beer so that we can bottle some of it in order to enhance our bottle beer selection.","ibu":98,"name":"Church Brew Oktoberfest","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":9.954792652142752,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Hopped four separate times with pure Centennial hops for one of the hoppiest brews around. With a nice dry finish, Rescue IPA is our Mug Club's favorite.","ibu":115,"name":"Rescue IPA","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":8.689491297845791,"address":"Landsberger Strae 35","category":"Other Style","city":"München","country":"Germany","ibu":61,"name":"Weißbier","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5.5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Actually an Ice Lager. Introduced in 1984.","ibu":54,"name":"Bud Ice","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.5,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A medium-bodied and well hopped India Pale Ale with a dry, fruity aftertaste.","ibu":110,"name":"Commodore Perry IPA","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":8.5,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"The long-awaited arrival of our Belgian-style Tripel is upon us. Named after the mythical Greek three-headed dog that guards the gates of hell, Kerberos is a traditional Belgian-style Tripel with a dark golden color has a sweet flavor with a dry and spicy finish. This nectar of the Gods is deceptively strong at 8.5% and is bottle conditioned for an authentic flavor.","ibu":54,"name":"Kerberos","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.1999998093,"address":"1340 East Eighth Street #103","category":"German Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This beer was brewed in honor of our brewer Melissa's wedding to fellow brewer Derek Osbourne of B.J.'s in Chandler. The Alt Ball and Chain is a German Altbier. These beers are generally full-bodied with sweet malt flavor. The crispness, dry finish, and moderate hop aroma make an alt a great beer for summertime enjoyment. Our Alt has been lagering in our cellar for two weeks and contains 5.2% abv.","ibu":87,"name":"Alt Ball and Chain","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":14.067624142100156,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":110,"name":"Rauch Ale","state":"Wisconsin"},{"abv":11.697206673441196,"address":"1101 North Water Street","category":"Irish Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":21,"name":"Porter","state":"Wisconsin"},{"abv":4.11273766223737,"address":"835 48th Avenue","category":"North American Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":12,"name":"Schild Brau Amber","state":"Iowa"},{"abv":5.807470694635698,"address":"4700 Cherry Creek Drive South","category":"North American Lager","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":18,"name":"Cream","state":"Colorado"},{"abv":4.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Designed as our session beer, Rugged Trail Nut Brown Ale is bronze in color with a velvety smooth taste and subtle chocolate note. Rugged Trail’s lower alcohol content and subtle hoppiness make it the perfect beer to enjoy during the day and into the night.","ibu":38,"name":"Rugged Trail Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.87449768496318,"address":"200 Aalststraat","category":"Belgian and French Ale","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":9,"name":"Gluhkriek","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":9.51554550317828,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":64,"name":"Köln Kolsch","state":"Wisconsin"},{"abv":3.9000000954000003,"address":"Spott Road","category":"British Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","description":"Malty and hoppy, we at Belhaven love the classic Scottish Ale and we've been brewing it longer than any of the other beers we produce. Delivering a sweet, smooth and creamy finish, Scottish Ale has a stunning ruby colour in the glass. Magic.","ibu":44,"name":"Scottish Ale","state":"Scotland"},{"abv":11.503308898539823,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":0,"name":"Beau Rivage Bock","state":"Mississippi"},{"abv":10.41142362508031,"address":"220 North Randall Road","category":"German Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":50,"name":"Fomharfest","state":"Illinois"},{"abv":5.9000000954,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur ESB combines the best of English tradition with West Coast style. A blend of malts featuring British-grown Maris Otter is balanced with the earthy spiciness of hand-selected English and US hops. The ale is left unfiltered, which enhances mouthfeel and hop aroma creating a slightly reddish-copper hue","ibu":56,"name":"ESB - Early Spring Beer","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.5,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Our silver medal winning Belgian style Holiday beer brewed with dark Belgian candied sugar and special spices. This brew has a spicy aroma and flavor with a sweet malt taste. At 10.5% alcohol it is sure to warm you up during the Holiday season.","ibu":20,"name":"Rude Elf's Reserve","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":14.70142199429329,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"A tribute to the highly drinkable \"every day\" beers from French-speaking Belgium. Contains Belgian two-row pale malt and 7% wheat. This beer is lightly filtered with an earthy, spicy hop character from imported Styrian Goldings hops and a beautiful rich creamy head from the wheat.","ibu":91,"name":"Farmhouse Summer Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5.005713173229104,"address":"5500 Greenville Avenue #1300","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":13,"name":"Honey Blonde Light Pale Ale","state":"Texas"},{"abv":2.7179995232802137,"address":"107 Port Road","category":"North American Ale","city":"Adelaide","coordinates":[-34.9111,138.575],"country":"Australia","ibu":118,"name":"Old Australia Stout","state":"South Australia"},{"abv":0.11696991436180304,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":59,"name":"Paniolo Ale","state":"Hawaii"},{"abv":13.396104914040631,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":29,"name":"Pacific Ridge Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":0.34597388045208066,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":59,"name":"Brown Ale","state":"Texas"},{"abv":1.7124672839750987,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":3,"name":"Our Special Ale 1992","state":"California"},{"abv":5,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":45,"name":"Buzzard Breath (discontinued)","state":"Alberta"},{"abv":7,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"A Hop Head's dream beer, enough said.","ibu":10,"name":"Lost Sailor","state":"Michigan"},{"abv":11.100000381,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Consider it an extremely hoppy barleywine, or a really big IPA. Either way, ten hop additions contribute to its lush and intriguing body. Aggressive dry-hopping brings a strong citrus character to the aroma. The flavor and smell of orange-blossoms pervade throughout the experience.","ibu":3,"name":"Existential","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":4.8000001907000005,"address":"3525 Liberty Avenue","category":"British Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Stouts have typically been a staple beverage in the UK. There are many variations of stouts available. You can find dry stouts, milk stouts, Imperial stouts, American stouts, and even stouts made with oats.\n\n\nAt the Church Brew Works we have crafted delicious Toasted Oatmeal Stout. The oats were blended with the best barley malt we have – and we didn’t stop there. To give this beer a wonderful roasted flavor, we added unmalted, very darkly roasted barley. The roasted barley is mixed with a generous portion of chocolate colored malt giving the Blast Furnace Stout a beautiful ruby hue.\n\n\nWe used our finest hops unsparingly to create a delicately balanced bitterness with a rich roastiness and fresh hop aroma. The Fuggles and East Kent Goldings hops were added with heavy hands at two different times. This unbridled addition grants a full hop flavor to our heavenly drink.\n\n\nA typical oatmeal stout is a bit lower in alcohol than most other stouts as does the Blast Furnace Stout. Ours, though not typical, does have a welcome medium body. As you drink this beer, notice the rich, creamy brown head. Drink it slowly and savor the flavors. We don’t think you will be disappointed. Beer is not just for breakfast anymore.","ibu":18,"name":"Blast Furnace Oatmeal Stout","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":4.8000001907000005,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"This traditional American style brown ale has medium body with a sweet Carastan maltiness. A rich deep chocolate color, our Antler Brown Ale is mildly hopped with Mt. Hood hops. Check out the Antler tap handle... locally grown! This has been our most popular beer over the years... a very easy drinking brew.","ibu":91,"name":"Antler Brown Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":10.564966361684975,"address":"130 W Gurley St","category":"Irish Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":12,"name":"Manzanita Red","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.1999998093,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"The Brown Ale style originated in the pubs of England, where beer drinkers desired a beer that was both flavorful and complex, but at the same time mild enough to be a session beer. The Santa Fe Brewing Company's interpretation of this style uses a combination of high mash temperature, hard water, and low-alpha acid hops to produce a product that is both true to the style and distinctly Santa Fe. Brewing jargon aside, Santa Fe Nut Brown Ale is an easy-drinking beer, mild, smooth, and always a favorite. Try a keg at your next party!","ibu":57,"name":"Santa Fe Nut Brown","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":10.323427163155483,"address":"430 Old Jackson Highway","category":"North American Ale","city":"Victor","coordinates":[43.5984,-111.108],"country":"United States","description":"ur Old Faithful Ale is a Pale Golden Ale with a crisp body and light malt sweetness. We cold condition this ale to give it a pleasantly smooth character and dry palate. The Willamette and imported UK Goldings hops give this beer a light floral hop aroma, making it exceptionally easy to drink.","ibu":16,"name":"Old Faithful Ale","state":"Idaho","website":"http://www.grandtetonbrewing.com/"},{"abv":9,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"St. Nicholas, aka Santa Claus, is a magical figure, the bringer of gifts and an icon of holiday spirit. Forgotten by most is his evil side kick and enforcer of ‘the list’. European tradition says while St. Nick is busy delivering presents to good little boys and girls, Krampus hands out punishments to the bad. A fanged, goat-horned bully, the Christmas Devil uses sticks and chains to beat the naughty children. Dark malts and aromatic hops create the diabolical spirit of this brew. It is finished with lager yeast and aged cold for no less than 30 days. This Imperial Helles Lager will warm even the darkest hearts. \n\n\nThis season, replace the cookies with a bottle of Krampus. If he happens to pay a visit, toast to him with this devilish brew. Merry Kramp-mas to all, and to all a good pint!\n\n9.0% abv. • 20º plato • Imperial Helles Lager • 22 oz / 1/6 keg","ibu":103,"name":"Krampus Imperial Helles Lager","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.4499998093,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","description":"Black as the darkest night, rich as the most decadent dessert, Terminator is for the true stout lover. This is a full bodied and flavor packed ale which draws it's robust complexity from kiln-baked specialty grains. Look for a wide array of toasted, chocolate, nutty and coffee-like flavors in every pint! The devoted swear by it, and it remains one of our top selling ales year after year.","ibu":35,"name":"Terminator Stout","state":"Washington"},{"abv":14.391011624243465,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":88,"name":"India Pale Ale","state":"Washington"},{"abv":7.754156677412256,"address":"1111 Mainland Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2755,-123.121],"country":"Canada","ibu":93,"name":"Downtown Brown","state":"British Columbia"},{"abv":3.453700024935281,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":85,"name":"Pale Ale","state":"California"},{"abv":4.452922832235277,"address":"Rue de la Frontire, 435","category":"Other Style","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":60,"name":"Bière Darbyste","state":"Hainaut"},{"abv":8.6999998093,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":19,"name":"Canaster Winter Scotch","state":"Oost-Vlaanderen"},{"abv":5.3000001907,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":116,"name":"Saison","state":"Hainaut"},{"abv":4,"address":"110 Wisconsin Dells Parkway South","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":88,"name":"Light Ale","state":"Wisconsin"},{"abv":0.6196886723869721,"address":"420 Acorn Lane","category":"Irish Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":82,"name":"Workhorse Porter","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.5,"address":"925 South Third Street","category":"North American Lager","city":"La Crosse","country":"United States","ibu":59,"name":"Pale Ale","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":6.971129968492054,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":56,"name":"Imperial IPA","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":11,"name":"Paradise Pale Ale","state":"California"},{"abv":5.1999998093,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":51,"name":"Patriot Pale Ale","state":"California"},{"abv":6.5,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":109,"name":"Hop Maniac IPA","state":"California"},{"abv":4.5,"address":"1430 Washington Avenue South","category":"North American Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This American-style golden ale is our lightest, in both color and flavor. Bright Spot is brewed with locally malted 2-row barley and the finest American, Czech and German hops lending a well-balanced, refreshing taste. A compliment to nearly any of our menu choices.","ibu":116,"name":"Bright Spot Golden Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":5.1999998093,"address":"16 Tobey Road","category":"North American Ale","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Thomas Hooker American Pale Ale is an extremely vivid, medium-bodied brew. Hooker Pale Ale stresses the crisp bitterness, lingering resin flavor, and aroma of American hops which are characteristic of the most distinctive West Coast Ales. The caramel sweetness of the malt balances the chock-full-of-hops flavor to yield a complex but quite refreshing brew.","ibu":54,"name":"American Pale Ale","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":9,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Double Simcoe IPA, 9.0% abv, is our incredible reward for Hopheads seeking over the top flavor in a Double IPA, without the harshness. Brewed with Simcoe hops, developed and trademarked by Select Botanicals Group, LLC, in the year 2000. This hybrid hops was created to allow maximum aromatic oils, along with low cohumulone(harshness) levels, so that brewers can really load up a lot of 'em in a beer and not have any harshness. The piney, citrusy notes are all here, and in a very clean (non-harsh) way, as well as having an aroma with impact. Introduced by Weyerbacher in 2005 originally as a seasonal, this brew has garnered numbers so high on Beer Advocate, and been in such high demand by consumers, we decided to add it to our year-round line-up in March 2007. Check it out, and you'll soon see why everyone's talking about it.","ibu":85,"name":"Double Simcoe IPA","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Miller High Life, the \"champagne of beers,\" dates back to 1903. Miller High Life is a classic American-style lager recognized for its consistently crisp, smooth taste and classic clear-glass bottle. Miller High Life embraces its rich heritage and is positioned as common sense in a bottle. Its drinkers know Miller High Life is an authentic, unpretentious beer. As the best beer value in America, we encourage our target consumers to \"Celebrate the High Life.\";\"0","ibu":8,"name":"Miller High Life","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":9.311852568794283,"category":"British Ale","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":109,"name":"Champions Clubhouse Classic","state":"Iowa"},{"abv":1.4340788132462612,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":63,"name":"Crystal Pier Pale Ale","state":"California"},{"abv":2.643104259960504,"address":"14800 San Pedro Avenue","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":28,"name":"Bohemian Pilsner","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":9.821033778411552,"category":"North American Lager","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":75,"name":"Krystal","state":"California"},{"abv":4.521767829758849,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":22,"name":"Balboa Cerveza Pilsner"},{"abv":13.899804969523336,"address":"2323 N Milwaukee Ave","category":"Belgian and French Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"Light, refreshing belgian-style wheat beer spiced with coriander and orange peel","ibu":116,"name":"Bottom Up Wit","state":"Illinois","website":"http://revbrew.com/"},{"abv":5.4000000954,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":21,"name":"Estrella Levante Especial","website":"http://www.estrelladamm.es/"},{"abv":6.6999998093,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"For the 28th session of the Harpoon 100 Barrel Series, we’re celebrating this year’s hop harvest with Glacier Harvest Wet Hop beer, a pale ale made with fresh Glacier hops.\n\n \n\nWet hop beers are brewed using fresh, “wet” hops instead of traditional dried hops—hops contain about 60% moisture when they are first picked.\n\n\nTypically, when hops are picked they are quickly dried and refrigerated to increase shelf life and make them more consistent for brewing. Freshly picked wet hops, however, need to be used within hours of harvest or they will begin to degrade rapidly. Wet hops retain more of their natural aroma and volatile flavors that dissipate when dried. This gives wet hop beers a fresher hop flavor and aroma than that of beers hopped with processed hops.\n\nThis yields an immersed, intense hop flavor in the beer.\n\n\nHarpoon brewer Ray Dobens, creator of the beer, added a heroic dose of fresh hops the day of the harvest.The hop flavor and aroma from this copper-colored ale comes from a generous late addition of freshly harvested “wet” hops.","ibu":110,"name":"Glacier Harvest '09 Wet Hop (100 Barrel Series #28)","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.1999998093,"address":"8111 Dimond Hook Drive","category":"German Lager","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Reid is our onsite go-to beer guy who handles the bulk of our to-go beer sales. Reid is a full-time UAA student who manages to sell beer at MSBC, run a side welding business, keep the golf discs flying all year-round & create music with his band, Bushwood. He wrote and performed his song \"No 9 to 5\", which resonates his idea of a fairway to heaven.\n\n\nFAHRWASSER means \"fair water\" or \"fairway\". This inspired pilsner breaks par with every sip.\n\n\nAvailability:\n\nAK - draft and 22-oz bottles (limited release begins 05/15/2009)","ibu":39,"name":"Fahrwasser Fairway Pilsner","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5999999046,"address":"40 Mews Road","category":"German Lager","city":"Fremantle","coordinates":[-32.0597,115.745],"country":"Australia","description":"Czech Saaz hops are added early in the boil with a late hopping using a hybrid variety we keep to ourselves, giving light flavour and a soft bitterness. Lightly kilned pilsner malt gives the beer both it’s light, slightly golden colour, and leaves a crisp clean taste on the palate.","ibu":37,"name":"Little Creatures Pilsner","state":"WA","website":"http://www.littlecreatures.com.au/"},{"abv":9,"address":"2051A Stoneman Circle","category":"Belgian and French Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Don't let Tripel's light color and delicate aroma fool you, this is one serious beer brewed with maximum effort. First, we introduce the freshest barley to crystal filtered water. Second, we add the best hops shipped directly from Europe. Third, our special yeast is the catalyst for fermentations, gobbling sugar and creating alcohol as it works. \n\n\nSome say that the Belgian monks who first brewed this style called it triple to denote it's high alcohol content. Still others believe triple's origins lay in its triple fermentations; twice in the brewery and once in the bottle. Whatever the answer, ours is the Tripel threat.","ibu":36,"name":"Southern Tier Tripel","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.1999998093,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"From the first sip this American-style India Pale Ale gets in your face with an unruly hop bitterness, big floral flavors and aroma, and just enough malt character to keep you from giving in and acting up.","ibu":71,"name":"Hellrazer","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":8.613880428015989,"ibu":14,"name":"07/22/10 08:00 PM"},{"abv":3.5350262130417374,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A Belgian Double Abbey.","ibu":44,"name":"Abbey Normal Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":4.3000001907,"address":"210 Swanson Avenue","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"Watch Your Pint Cascade From Brown to Black, As This Chocolaty Settles, Creamy, Dark, Not Too Bitter Finish","ibu":6,"name":"Skyline Stout","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":4.6999998093,"address":"4120 Main Street","category":"German Lager","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Our lightest beer – pale blonde in color with a crisp, softly sweet malt flavor, smooth finish and very subtle bitterness. Went to the final judging table at the GABF alongwith the Mega Breweries last year!","ibu":4,"name":"Bohemian Blonde","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":8.5,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","description":"“If One is Good, Then Two is Better!” Our Moylander Double IPA is fat and resiny, with aggresive and excessive hops swinging on on an enormous malt backbone like naughty monkeys on a vine. Double malt, double hops - do the math, it’s academic. This brew has twice the things you’re looking for, and it’s big enough to share with the one you love. And isn’t that what it's all about?","ibu":97,"name":"Moylander Double IPA","state":"California","website":"http://www.moylans.com/"},{"abv":10.322729659726601,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":85,"name":"Red Menace Big Amber","state":"Washington"},{"abv":9.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":71,"name":"Double Daddy","state":"California"},{"abv":5.5999999046,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":13,"name":"Gale Force IPA","state":"Washington"},{"abv":5,"address":"104 North Lewis Street","category":"German Lager","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":100,"name":"Bock","state":"Washington"},{"abv":9.5,"address":"Antwerpsesteenweg 476","category":"Belgian and French Ale","city":"Westmalle","coordinates":[51.2974,4.6881],"country":"Belgium","description":"Was first brewed in 1934 and the recipe has not changed since 1956. It is made with pale candy sugar and has a very pale color produced from a mash of light pilsener malts. Styrian Goldings hops are used along with some German varieties and the classic Saaz pilsener hop. After a long secondary fermentation, the Tripel Westmalle is bottled with a dose of sugar and yeast. This beer holds up well in the bottle over time and seems to soften with age.","ibu":83,"name":"Westmalle Trappist Tripel","state":"Antwerpen","website":"http://www.trappistwestmalle.be"},{"abv":4.470191044936142,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":117,"name":"Bison Brown Ale","state":"Kansas"},{"abv":4.8000001907000005,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":92,"name":"Mavericks Amber Ale","state":"California"},{"abv":7.653790201897422,"address":"86 Newbury Street","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":113,"name":"Ringwood Brewery Old Thumper Extra Special Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.834232800542147,"city":"Carbondale","coordinates":[37.7273,-89.2168],"country":"United States","ibu":71,"name":"Saison","state":"Illinois"},{"abv":14.012627326621116,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":75,"name":"Oktoberfest","state":"Wisconsin"},{"abv":1.8362502735060204,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":47,"name":"Kriek","state":"Vlaams Brabant"},{"abv":12.6960136459587,"address":"1516 Sansom Street","category":"Irish Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":85,"name":"Robust Porter","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":4.122778498558234,"category":"North American Ale","city":"Keystone","coordinates":[39.6042,-105.948],"country":"United States","ibu":32,"name":"Empire Builder Stout","state":"Colorado"},{"abv":1.8419604755288244,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":80,"name":"March Märzen","state":"Wisconsin"},{"abv":0.42658697065241946,"address":"195 Taylor Way","category":"Irish Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":75,"name":"Steelhead Scotch Porter","state":"California"},{"abv":4.6999998093,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":103,"name":"Piva Bohemia","state":"Wisconsin"},{"abv":13.590394347246344,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":41,"name":"Northern Glory Premium Ale","state":"Cheshire"},{"abv":6.706757542197442,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":29,"name":"India Pale Ale","state":"Illinois"},{"abv":0.3348913440112933,"address":"3020 St. Helena Highway North","category":"North American Ale","city":"Saint Helena","coordinates":[38.5243,-122.497],"country":"United States","ibu":78,"name":"Impale Ale","state":"California"},{"abv":8.1999998093,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"The fourth stop on our multi-year trip to explore New Jersey takes us to one of the most maligned places in the state- the Hackensack Meadowlands. It’s the place usually identified with landfills, pipelines, mob burials (alleged) and sports teams that say they’re from New York.\n\n\nAlthough no longer home to forests of giant cedars and salt hay marshes teeming with aquatic life, the Meadowlands is still an amazingly diverse ecosystem providing vital animal and plant habitat. In a nod to a once common food plant here, we’ve brewed this beer with wild rice. We also used brown and white rice, as well as two malts.\n\n\nRice helps the beer ferment dry to better showcase the five different hops we’ve added. Lots and lots of them. We then dry-hopped this Double IPA with even more-generous additions of Chinook and Citra hops to create a nose that hints at tangerine, mango, papaya and pine.","ibu":118,"name":"Exit 16 - Wild Rice Double IPA","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"India Pale Ale is a wonderful example of marriage. Bitter Hops and Boasting Barley come together to make one of the most sought after ales of the Craft Beer masses. Bottle Conditioned and Refermented.","ibu":3,"name":"4 Seasons IPA","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":8,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The simplicity of Hoppe tests the skill and ability of the brewer to create something truly majestic. We craft this much like a sculptor who uses only a hammer and chisel to shape stone into a masterpiece. Hoppe is spawned of these few essentials: barley, wheat, hops, yeast and water. This limited palette is an exercise in minimalism, with refined elements which are deliberately selected. This simple combination creates a golden shimmering brew infused with delicate aromas. The artful nature of this beer is exposed with the first taste. As the malt and hops create a composition of flavors, an elegant finish leaves an impression that your tastes will not soon forget.","ibu":4,"name":"Hoppe Imperial Extra Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.1999998093,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Our lightest and palest signature brew, the Griffin is our house session beer. Notice the spicy character imparted by the German hops we use in the Griffin.","ibu":3,"name":"Griffin Golden Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":2.36356026467877,"address":"Kreuzstrae 4-10","category":"German Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":73,"name":"Organic Hefewizen","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":7,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This smoked bock is made with the finest smoked malt from Bamberg, Germany. The malts are kilned over aged beechwood chips which gives this deep copper ale a mellow smoky flavor.","ibu":29,"name":"Rauchbock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.1999998093,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This beauty is a complete work of art! Bryan and I picked 22 lbs of fresh Cascade hops from 3 gigantic hop vines Bryan has at his house. Hops produce an overabundance of hop cones and we were there for the picking. Even after 22 lbs, we hardly put a dent in the yield! So...here we are 3 weeks later, the beer is on tap and it is the freshest...hoppiest...flavorful beer you can imagine! Needless to say, we are proud of this beauty from the ground, up! We wanted a full-flavored IPA, so Bryan suggested we use our Requiem IPA recipe, and calculate for fresh, whole hop cones. Worked beautifully!! We ended up with an IPA with so much up-front flavor you would think you are enjoying a high octane Imperial! Instead, this is a middle-of-the-road IPA, at 5.2% abv!! This just goes to show how a hugely flavorful IPA can be loaded-up with fresh ingredients and come out the other end, a tasty LOW octane, treat! Bryan and I hope you get to stop in soon to try this one out! We decorated Bube's with some of the actual hop vines we pulled from. For the true hophead, you will be in heaven. And for the all-around beer enthusiasts, we hope you can appreciate the creativity in this beer. I know I'm proud to say I had a hand in this one!!","ibu":94,"name":"Wet Hop Requiem IPA","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.5,"address":"St Peter's Hall","category":"British Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","description":"Water is extracted from our own 300’ deep borehole and combined with Soil Association accredited light malted barley from Norfolk. Organic hops provide the distinctive palate. The yeast used is St. Peter’s own single strand variety. The result is a delicate, clean, crisp, lightly carbonated, traditional English Ale with a full ‘citrus hop’ aftertaste. This lovely beer won the Soil Association’s top prize in 2002 and a silver medal in 2006.","ibu":80,"name":"St Peter's Organic Ale","state":"Suffolk"},{"abv":6.030792475573,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":38,"name":"Rat City IPA","state":"Washington"},{"abv":4.544852860718503,"country":"Netherlands","ibu":102,"name":"Dark Lager","website":"http://www.heineken.com/"},{"abv":10.260651417846491,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":94,"name":"India Pale Ale","state":"Suffolk"},{"abv":3.6376365276151255,"address":"65 North San Pedro","category":"North American Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":42,"name":"Amber Light","state":"California"},{"abv":0.10274138828543555,"category":"North American Ale","city":"Urbana","coordinates":[40.1106,-88.2073],"country":"United States","ibu":12,"name":"Hop-Stuffed Pale Ale","state":"Illinois"},{"abv":5.485087234457163,"category":"German Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":30,"name":"Post Washington Octoberfest","state":"Wisconsin"},{"abv":4.3990135861214235,"category":"German Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":76,"name":"Weissenheimer Wheat","state":"Wisconsin"},{"abv":4.894511159379251,"address":"25 North Madison St","category":"German Lager","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":14,"name":"Calumet Bock","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":1.9422648970829248,"address":"4700 Cherry Creek Drive South","category":"German Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":24,"name":"Hefeweizen","state":"Colorado"},{"abv":5.6280096680810825,"address":"102 North Center Street #111","category":"North American Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":45,"name":"Newmarket Pale Ale","state":"Illinois"},{"abv":7.334452212431913,"address":"2002 Broadway","category":"North American Lager","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":110,"name":"Lager","state":"Indiana"},{"abv":11.520599165873524,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":88,"name":"Adler Bräu Bucky Brau Barleywine","state":"Wisconsin"},{"abv":8.476133097198625,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":47,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":7.998928843597374,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"The discovery of the true I.P.A. (India Pale Ale) made right here in Slippery Rock. The British added hops to oak barrels to help preserve the beer for its long voyage to British-controlled India. Brewed in this same English tradition, we dry-hopped our ale, giving the beer a very aromatic quality as it travels to your mug.","ibu":16,"name":"Paleo IPA","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5.4000000954,"address":"1398 Haight Street","category":"British Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","description":"Diacetyl dominated cask bitter.","ibu":78,"name":"Blue Bell Bitter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":9.8000001907,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":44,"name":"Three Philosophers","state":"New York"},{"abv":5,"address":"137 High Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8046,-1.628099999999999],"country":"United Kingdom","ibu":31,"name":"Bass Pale Ale","state":"Staffordshire"},{"abv":14.897013458616932,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","description":"\"This richly textured, roasty dry stout has a boost of bitter and charismatic flavor from the addition of cocoa powder in the mash. We blend five unique organic malts to create Bison's most award winning beer.\" from http://bisonbrew.com/chocolate-stout.asp\n\n\nAnd I concur. This is a relatively mild stout, with a malty rich flavor. Adding this to my list of preferred beers.","ibu":58,"name":"Bison Chocolate Stout","state":"California"},{"abv":4.5,"address":"2501 Southwest Boulevard","category":"Other Style","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard Unfiltered Wheat Beer is a lively, refreshing ale with a naturally citrusy flavor and distinctive cloudy appearance. This easy-drinking American-style wheat beer has become our most popular offering, and the best-selling craft beer in the Midwest.","ibu":15,"name":"Boulevard Unfiltered Wheat","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"This uniquely American beer offers a crisp, medium body with a light amber color. Generous additions of Cascade hops provide a refreshing bitterness and vibrant citrus aroma.","ibu":44,"name":"Stoudt's American Pale Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4.3299999237,"address":"303 Sorg Street","city":"St. Mary's","coordinates":[41.4277,-78.5539],"country":"United States","ibu":22,"name":"Straub","state":"Pennsylvania","website":"http://www.straubbeer.com/index.htm"},{"abv":4,"address":"800 Vinial St.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Nationally acclaimed as the best Munich-style beer made in America. Penn Gold is a light-colored, medium bodied lager beer with a delicate hop aroma.","ibu":20,"name":"Penn Gold","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.6999998093,"address":"5417 Trumpeter Way","category":"North American Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Scape Goat is our award-winning Pale Ale. It is a very smooth brew, refreshing and well-balanced. Scape Goat took home the Gold Medal from the North American Brewers' Association competitions as the best English-style pale ale brewed west of the Mississippi, but only because it is the best. Scape Goat is brewed with pale, crystal malts, and Kent Goldings and Crystal Hops. Scape Goat is 3.8% alcohol by weight and 4.7% by volume.","ibu":91,"name":"Scape Goat Pale Ale","state":"Montana"},{"abv":7,"address":"Tvaika iela 44","category":"German Lager","city":"Rga","country":"Latvia","ibu":94,"name":"Porteris"},{"abv":5.606404385596667,"address":"901 Gilman Street","category":"British Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":1,"name":"Snow Cap Ale","state":"California"},{"abv":11.720814237112053,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":112,"name":"Affligem Tripel","state":"Vlaams Brabant"},{"abv":7.296008856212732,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":40,"name":"Nut Brown Ale","state":"Illinois"},{"abv":9,"address":"281 Heinlein Strasse","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Just like our Porter but multiplied by 10.","ibu":99,"name":"Strong Arm Ale","state":"Michigan"},{"abv":6.559428302497066,"ibu":69,"name":"07/22/10 08:00 PM"},{"abv":4.3299999237,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Our lightest beer, and our Bronze Medal Winner 2006 World Beer Cup German pilsner malt and American hops give this brew a light, crisp finish. Made with the light beer drinker in mind.","ibu":9,"name":"Light Weight","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":10,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":46,"name":"Malheur 10","state":"Oost-Vlaanderen"},{"abv":1.3763144842098185,"address":"3945 Second Street South","category":"North American Ale","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":80,"name":"Duke of Wellington IPA","state":"Minnesota"},{"abv":14.985236596464235,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":43,"name":"80 Shilling","state":"New Jersey"},{"abv":5.971432481358061,"address":"61 Bridge Street","category":"British Ale","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":55,"name":"Pheasant Plucker","state":"New Jersey"},{"abv":9.823597561059842,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":23,"name":"Pils","state":"Illinois"},{"abv":7.200276819710581,"address":"Niederkasseler Strae 104","city":"Dsseldorf","coordinates":[51.2404,6.7516],"country":"Germany","ibu":57,"name":"Kupfer","state":"Nordrhein-Westfalen"},{"abv":3.8770858930543883,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":81,"name":"SunRye","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.170549837244181,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":17,"name":"Badger Red Ale","state":"Wisconsin"},{"abv":8.224071765695257,"address":"233 North Water Street","category":"British Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":83,"name":"Session Ale","state":"Wisconsin"},{"abv":14.697713000541007,"address":"2424 West Court Street","category":"British Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":81,"name":"Autumn Ale","state":"Wisconsin"},{"abv":9.145001868372333,"address":"23 Rice Street","category":"North American Ale","city":"Portland","coordinates":[43.71,-70.305],"country":"United States","ibu":104,"name":"Sunday River Alt","state":"Maine"},{"abv":7.602544574339265,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":4,"name":"Red","state":"Indiana"},{"abv":14.866845932806461,"address":"841 East Milwaukee Street","category":"North American Lager","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":77,"name":"Wheat Ale","state":"Wisconsin"},{"abv":5.8000001907000005,"address":"1 Jefferson Avenue","category":"German Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":21,"name":"Big Butt Doppelbock","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Clean, refreshing and perhaps just a bit tart, our brewers developed Weyerbacher Blanche just after their trip to Belgium during the winter of 2000. Blanche, meaning \"white\", takes its name from the whitish haze in this pale gold brew, which is a result of the raw wheat and wheat malts used to brew this Belgian-style beer. \n\n\nIn 2002, Blanche was named as Best of the Mid-Atlantic/Southeast in the Belgian Specialty category at the US Beer Tasting Championships.\n\n\nWhite beers are well known as the principal product from Hoegaarden, a small town in a wheat-growing region east of Brussels. Light, cloudy and smooth, Weyerbacher Blanche brings you authentic Belgian-style flavor along with microbrewed quality and freshness.\n\n\nBlanche is a thirst quenching beer that combines character and flavor with a moderate alcohol content. Just try a bottle. In the nose you'll notice spiciness from the coriander seeds and dried curacao orange peels added during the boil. In the mouth you'll find a mild and refreshing ale with a hint of dryness from the wheat ingredients. A clean finish follows with just a hint of tart spiciness.","ibu":2,"name":"Blanche","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.816084387951079,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":96,"name":"Platte Valley ESB","state":"Nebraska"},{"abv":2.5308629451136744,"address":"124 Manhattan Beach Boulevard","category":"North American Ale","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":43,"name":"Pier Pale Ale","state":"California"},{"abv":10.494899500523495,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":79,"name":"Thyme of the Saison","state":"Wisconsin"},{"abv":3.0623742031788392,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":37,"name":"Big Kahuna Brown","state":"Hawaii"},{"abv":11.626316980343862,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":33,"name":"Golden","state":"California"},{"abv":3.0731324933607276,"category":"German Lager","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":83,"name":"Munich Summer Fest","state":"North Carolina"},{"abv":6.8000001907000005,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"The brew of choice for mountain bikers, and adventurous types worldwide. (Are you excited now!) This fiery red ale is not for the weak at heart. It originally started out as a Scottish red ale but has taken on flavors of its own. This is a very complex recipe using five different grains to achieve its unique flavor. The caramel malt used is a mixture of Belgian Caravienne and Hugh Bairds Crystal malts. Red Rocket is a full bodied, hoppy brew which finishes on the pallet with caramel malts. Centennial and Cascade hops are used for bittering and aroma.2004 L.A. Commercial Brewing Competition, Gold Medal Winner; 2004 West Coast Commercial Brewers Competition, First Place; 2003 California State Fair, Gold MedalWinner; 2002 California State Fair, Silver Medal Winner; 2001 California State Fair Gold Medal Winner; 2001 Real Ale Festival, Chicago, Bronze Medal Winner; 2000 California State Fair, Bronze Medal Winner; 1999 Great American Beer Festival, Silver Medal Winner; 1998 Great American Beer Festival, Silver Medal Winner - og 1.067, ABV 6.8%, IBU 65+.","ibu":75,"name":"Red Rocket Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":8,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"North American Lager","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":91,"name":"Baltika #9","state":"Sankt-Peterburg"},{"abv":10,"address":"80 LAMBERT LANE","category":"Belgian and French Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Notice a unique aromatic nose with a hint of vanilla esters, which comes from the Belgian ale yeast. Tripel Horse has a big body and rich mouth feel and finishes mostly dry with only a touch of sweetness. If you shy from some of the sweeter Belgian ales, we think you will enjoy this one. The palate improves with age, so keep some on hand and you can ride Tripel Horse down a new path with each opened bottle.","ibu":87,"name":"Tripel Horse","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"Back Road Brewery's flagship beer, and first original recipe of 1997, is also our house beer. This mildly hopped copper colored brew has a rich smooth taste. Hop varieties such as Styrian Goldings and English Fuggles are used to balance the beers maltiness. A technique called dry hopping is used after fermentation to add fresh herbal aroma. It is a great session beer and was made to satisfy a wide variety of palates. Drink and enjoy LaPorte County's first production craft beer.","ibu":78,"name":"Back Road Ale","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":11,"address":"1301 Atlanta Avenue","category":"Other Style","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","description":"When you make a pot of coffee, but only use half the water, you get some pretty rich coffee. That's the approach we took with our latest offering. OBP Squared, with half the water, has 11% alcohol by volume-twice that of original OBP.\n\n\nThe result is a bold, distinct taste of its own. Made with twice as much real orange blossom honey, all-natural ingredients and no refined sugar, it really is the new king bee of beers.","ibu":73,"name":"Orange Blossom Pilsner ²","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The Popol Vuh, the sacred book of the Maya, unfolds a complex web of mystery around a beverage known as xocoatl (ch-co-atle). At Southern Tier, we’re not surprised that hieroglyphs of the ancient Maya depict chocolate being poured for rulers and gods. Even through the many voyages of Columbus, the mystical bean remained nothing more than a strange currency of the native peoples.\n\n\nMoving through centuries, the circular journey of cacao has been realized in our brewing house, encompassing the complexity of the darkest, bitter-sweet candy together with the original frothy cold beverage of the ancient Maya to bring to you our Blackwater Series Choklat Stout. We have combined the finest ingredients to tempt your senses & renew the power & interrelation of history in every bottle.\n\n11.0% abv • 195º L • Imperial Chocolate Stout • 22 oz / 1/6 keg\n\n2-row barley / caramel 60 malt / barley flakes / chocolate malt / bittersweet Belgian chocolate / kettle hops: chinook & willamette","ibu":100,"name":"Choklat","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.5999999046,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Typically Yorkshire. A strong Ale in which all English grown hop varieties are used. The grassy earthy character of Kent Goldings hops is the keynote in the aroma and finish. Try with fish and chips or a meat pie.","ibu":18,"name":"Old Marcus Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":7,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Offering a hop-heads paradise, this unfiltered Northwest-Style India Pale Ale introduces a big floral hop character to the aroma, flavor and finish. Hops, Hops, Hops from front to back but nicely offset with a malty richness that prevents this ale from being overbearing. Tracktown is made from 100% Floor Malted Maris Otter, 100% Northwest Amarillo Hops, Free Range Coastal Water, and absolutely No Chemicals, Additives, or Preservatives.","ibu":57,"name":"Tracktown IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"A blend of Pacific Northwest hops and three different caramel malts combine to give this beer its unique character.","ibu":86,"name":"Rocket's Red Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":11.165780082966986,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":92,"name":"Pole Star Pilsner","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":6,"name":"Harvest Ale 2002","state":"Manchester"},{"abv":8.786842789371004,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":28,"name":"Winter Cheer","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":12,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","description":"A HUGE Imperial Stout that weighs in at an impressive 12% ABV! As if that's not enough, we added pounds of coffee for a little extra kick. Our special-edition Brewer's Reserve Speedway Stout, which is aged in Bourbon barrels, has been rated the #1 BEST BEER IN THE WORLD at ratebeer.com. It was also featured on CNBC's \"Squawk Box\" in a segment on the best dark beers in America.","ibu":113,"name":"Speedway Stout","state":"California","website":"http://alesmith.com/"},{"abv":12.136329931100722,"category":"German Lager","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":76,"name":"Oktoberfest","state":"Nebraska"},{"abv":14.976180638414988,"address":"Ellhofer Strae 2","category":"German Ale","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":7,"name":"Weizen","state":"Bayern"},{"abv":9.36863058972669,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":71,"name":"Get Fuggled","state":"Iowa"},{"abv":6,"address":"Whimsey Road","category":"North American Ale","city":"Cinderford","coordinates":[51.8325,-2.5116],"country":"United Kingdom","ibu":47,"name":"Trafalgar IPA","state":"Gloucestershire"},{"abv":4.733216619204096,"address":"525 N Virginia Dare Road","category":"German Ale","city":"Manteo","coordinates":[35.8859,-75.6697],"country":"United States","ibu":76,"name":"Weizen","state":"North Carolina"},{"abv":13.195347742351426,"city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":119,"name":"Cornhusker Lager","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.317895875999984,"address":"2617 Water Street","category":"German Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":109,"name":"Bock","state":"Wisconsin"},{"abv":12.493158310915003,"address":"740 North Plankinton Avenue","category":"German Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":103,"name":"Hefeweizen","state":"Wisconsin"},{"abv":10,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":47,"name":"Tripel","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":14.430130772654667,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":25,"name":"Pale Ale","state":"California"},{"abv":9.142852098241368,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":8,"name":"Old Town Nut Brown","state":"California"},{"abv":11.100000381,"address":"231 San Saba Court","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","ibu":74,"name":"Sisyphus Barleywine","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":1,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":71,"name":"Estrella Levante Sin 0.0% Alcohol","website":"http://www.estrelladamm.es/"},{"abv":6.9000000954,"address":"Slien 2, 2. tv","category":"North American Ale","city":"København","country":"Denmark","description":"The first in a new series of single hop IPA's from Mikkeller. Brewed with Simcoe, known for many great US micro-brews. An extremely fresh-hopped IPA.","ibu":99,"name":"Simcoe Single Hop IPA","website":"http://www.mikkeller.dk/"},{"abv":10.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Brewed in the authentic historical style of an Imperial Russian Stout, this ale is massive. Intensely aromatic (notes of anise, lack currants, coffee, roastiness and alcohol) and heavy on the palate, this brew goes where few can --- and fewer dare even try. The style originated from Czarist Russia's demand for ever thicker English stouts. Expect our version of this mysterious brew to pour like Siberian crude and taste even heavier!","ibu":39,"name":"Imperial Russian Stout","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.1999998093,"address":"2944 SE Powell Blvd","category":"British Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"This English Session Beer has a delicious floral hop aroma and flavor. A heaping helping of organic caramel malt and touch of organic chocolate malt give this beer its beautiful mahogany color while organic oats from Bob's Red Mill velvetize the texture. Smoother than an infomertial host at half the price!","ibu":38,"name":"Velvet ESB","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7.5,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"This beer is for those of you who have been enjoying Seven Gates Pale Ale, and are ready for that next step. Beyond the Gates Double IPA is a highly hopped brew featuring plenty of Cascade and Columbus hops. These varieties give Beyond the Gates a floral citrus aroma, and pack plenty of hopped up flavor into this full-bodied ale, which is coming in @ 7.5 ABV. Let us take you Beyond the Gates, and you'll never look back!","ibu":40,"name":"Beyond The Gates Double IPA","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":3.382581558115718,"address":"100 West Main Street PO Box 432","category":"Other Style","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"This light colored ale gains its subtle, bread-like flavor from a balance of gently kilned malted barley and choice malted wheat. A restrained addition of hops, contributes a pleasingly delicate floral aroma.","ibu":102,"name":"Winkleblink Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":9,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","ibu":98,"name":"Jolly Roger Imperial Stout","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"IPAs were originally brewed to survive the epic sea voyages from England to India. Ours is no different. Hailing from a firm malt background and loaded through and through with hops, this beer will surely survive the journey from your fridge to your couch.","ibu":28,"name":"Yards India Pale Ale","state":"Pennsylvania"},{"abv":13.800974643075556,"city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":88,"name":"Voluptuous Blonde","state":"California"},{"abv":3.255867776392761,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":108,"name":"Christmas Ale","state":"Illinois"},{"abv":12.805673175820921,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":68,"name":"Berliner Weisse","state":"Illinois"},{"abv":2.14439071608831,"address":"Brauerei-Diebels-Strae 1","category":"North American Ale","city":"Issum","coordinates":[51.5331,6.4213000000000005],"country":"Germany","ibu":95,"name":"German Premium Dark","state":"Nordrhein-Westfalen"},{"abv":7.9000000954,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our hoppiest beer to date. This formidable India Pale Ale has a hop aroma that demands attention. The bold, citrus hop flavor is balanced by a dry malt character that makes this refreshing ale a true classic.","ibu":108,"name":"Hop Hog IPA","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":13.883640859499645,"category":"German Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":83,"name":"Black Rock Bock","state":"Texas"},{"abv":14.491733528896733,"category":"North American Ale","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":98,"name":"Hammerhead Red","state":"California"},{"abv":6,"address":"2401 Blake St.","category":"Irish Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Blessed by Hunter S. Thompson... Road Dog Porter was our first beer to be illustrated by Ralph Steadman. This is a dark, rich and malty beer, with hints of chocolate and licorice resulting from the use of four prized malts.","ibu":100,"name":"Road Dog Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":0.5902623979950705,"category":"Irish Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":54,"name":"Porter","state":"Nebraska"},{"abv":8.5,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":34,"name":"Double Diamond Winter","state":"Washington"},{"abv":7.4000000954,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","description":"This one's a butt-kicker! Essentially, the same recipe as the IPA, but with approximately 25% more grain and twice the hops!","ibu":74,"name":"Industrial IPA","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":6.503062778720548,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":87,"name":"Dark White","state":"Luxembourg"},{"abv":6,"address":"Hillfoots Business Village","category":"Irish Ale","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":34,"name":"Old Engine Oil","state":"Scotland"},{"abv":5.0999999046,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Levity is our lighter take on the amber ale. Munich and honey malts give it a full-bodied flavor and a happy-go-lucky personality. Then we let the finishing hops shine, for a beer that's crisp instead of bitter, as many ambers are. Levity was named by our brewers partly for its light color - and partly for the way it just refuses to take itself too seriously. Hey, we could all use a little levity once in a while.","ibu":43,"name":"Levity Amber Ale","state":"Colorado"},{"abv":8.5,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":117,"name":"Lucifer","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":9.1000003815,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":37,"name":"Widdershins Barleywine","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":11.199999809,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","description":"This Belgian beer has an everlasting tast. It has been choosen as the best beer in the world for several years!","ibu":30,"name":"Trappist Westvleteren 12","state":"West-Vlaanderen"},{"abv":3.5,"address":"Antwoordnummer 7181","category":"North American Lager","city":"Amsterdam","coordinates":[52.3738,4.8909],"country":"Netherlands","ibu":105,"name":"Amstel Light","website":"http://www.amstel.com"},{"abv":1.1560781330471948,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Named in honor of our founder Jeff's bike trip through Belgium, Fat Tire Amber Ale marks a turning point in the young electrical engineer's home brewing. \n\n\nBelgian beers use a far broader pallet of ingredients (fruits, spices, esoteric yeast strains) than German or English styles. Jeff found the Belgian approach freeing. Upon his return, Jeff created Fat Tire and Abbey Belgian Ale, (assuming Abbey would be his big gun). He and his wife, Kim traveled around sampling their homebrews to the public. \n\n\nFat Tire's appeal quickly became evident. People liked everything about it. Except the name. Fat Tire won fans is in its sense of balance: toasty, biscuit-like malt flavors coasting in equilibrium with hoppy freshness.","ibu":24,"name":"Fat Tire Amber Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.577949837352863,"address":"2320 SE OSU Drive","category":"North American Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A vienna style lager","ibu":109,"name":"Artisan Lager","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.633831616137034,"category":"North American Lager","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":24,"name":"Mile Marker Amber Lager","state":"Missouri"},{"abv":6.406982280180818,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":69,"name":"Discombobulator Maibock","state":"Wisconsin"},{"abv":5.1999998093,"address":"Steenhuffeldorp 3","category":"North American Ale","city":"Steenhuffel","coordinates":[50.9953,4.2835],"country":"Belgium","description":"Since 250 years Palm, a top-fermented amber beer, is brewed in the Belgian province of Brabant. It has a soft, full and fruity taste. It is only available in the Benelux. In France it is known as \"Palm Belgique\" with 6% alcohol percent.","ibu":83,"name":"Palm Speciale","state":"Brabant","website":"http://www.palmbreweries.com/"},{"abv":5.6999998093,"address":"357 Salmon Brook Street","category":"German Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Alt, German for \"old,\" is a traditional medium-bodied ale in which we use an array of the finest German malts & a generous smount of noble hops to produce a crisp, clean and refreshing \"bier.\";\"0","ibu":7,"name":"Alt","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":4.5,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Aud Blonde has a refined characteristic, which can be contributed to us blending pilsner malt with a unique hop called crystal. The distinctive characteristic of the crystal hop lends a citrus, almost eucalyptus quality in the aroma and mouth feel of the brew, while leaving the beer with a long dry finish.","ibu":87,"name":"Aud Blonde","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":0.21969477298599216,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":60,"name":"Pirate Pale","state":"New Jersey"},{"abv":3.367121896968581,"category":"German Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":23,"name":"Oktoberfest","state":"Texas"},{"abv":10.249678887253618,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":54,"name":"Vail Pale Ale","state":"Texas"},{"abv":0.0024838893095646686,"category":"Other Style","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":86,"name":"Double ZZ Raspberry Wheat","state":"California"},{"abv":4.699397534457721,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":92,"name":"Maibock","state":"Illinois"},{"abv":5.0999999046,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Crisp and refreshing, this classic Bohemian Pilsner brings noble hop flavor and traditional German maltiness into perfect union before another healthy dose of imported hops tips the scales towards a decidedly hoppy finish.","ibu":7,"name":"Gold Star Pilsner","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":0.3126926017954912,"address":"275 East Kawili Street","category":"North American Ale","city":"Hilo","coordinates":[19.706,-155.069],"country":"United States","ibu":54,"name":"Red Ale","state":"Hawaii"},{"abv":12.702705583871767,"city":"London","coordinates":[51.5002,-0.1262],"country":"United Kingdom","ibu":56,"name":"Red Barrel","state":"London"},{"abv":2.555116641211155,"category":"German Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":26,"name":"Hefeweizen","state":"Washington"},{"abv":5,"address":"Tvaika iela 44","city":"Rga","country":"Latvia","ibu":81,"name":"Zelta"},{"abv":5.726882319661931,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":55,"name":"Zoo Brew 25","state":"Nebraska"},{"abv":5.869055716168939,"category":"North American Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":103,"name":"Red Ale","state":"Wisconsin"},{"abv":3.9711964931095354,"category":"North American Ale","city":"Waukesha","coordinates":[43.0117,-88.2315],"country":"United States","ibu":20,"name":"Amber Ale","state":"Wisconsin"},{"abv":11.771229504540294,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":15,"name":"Barleywine","state":"Wisconsin"},{"abv":11.547192296834233,"address":"3832 Hillside Drive","category":"Irish Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":115,"name":"Pewaukee Porter","state":"Wisconsin"},{"abv":5.3000001907,"address":"Schillerstrae 14","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":56,"name":"Dunkles Hefe Weizen","state":"Bayern"},{"abv":6.813306255242688,"address":"3191 Golf Road","category":"German Lager","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":5,"name":"Old World Oktoberfest","state":"Wisconsin"},{"abv":0.5641891730422888,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":4,"name":"Irish Red","state":"Wisconsin"},{"abv":5.579464564350197,"category":"North American Ale","city":"Belgrade","coordinates":[45.7786,-111.179],"country":"United States","ibu":110,"name":"Thunder Pup Pale","state":"Montana"},{"abv":5,"address":"High Street","category":"Irish Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":89,"name":"Taddy Porter","state":"North Yorkshire"},{"abv":9.803459162552802,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":76,"name":"Streamline Oatmeal Stout","state":"Missouri"},{"abv":14.537272707728576,"address":"841 East Milwaukee Street","category":"North American Ale","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":57,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":5.4000000954,"address":"2516 Market Avenue","category":"Belgian and French Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A Belgian Wit Ale spiced with orange peel, chamomile and coriander.","ibu":34,"name":"Holy Moses","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.4000000954,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":49,"name":"Irish Red","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":4.9000000954,"address":"600 Elmira Road","category":"Other Style","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Our easy drinking wheat beer is light in color and body ... perfect for those looking for a lighter taste. The combination of wheat and barley give our Apricot Wheat a different malt character than any of our other ales. The hint of apricot gives this beer a fruity finish, making it a fun beer to drink.","ibu":41,"name":"Apricot Wheat","state":"New York"},{"abv":6.5,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"An abundance of hops and malt are added to our IPA to create and preserve its distinctive flavors. Not only do we use generous portions of hops in the kettle, but we also dry hop this ale for one week after fermentation. The dry hopping process adds to this beer's floral and citrus aroma. This is truly a tasty adult beverage!","ibu":89,"name":"Russian River IPA","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":10,"address":"545 Canal Street","category":"North American Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","ibu":110,"name":"Hoptimus Prime","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":5.8000001907000005,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A hop lover's delight. In the India Pale Ale tradition this brew is very hoppy in both aroma and flavor from the generous amounts of cascade hops used in brewing. Look for a medium to full body and golden straw color.","ibu":111,"name":"Saranac India Pale Ale","state":"New York","website":"http://www.saranac.com"},{"abv":7.8000001907000005,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Special hoppy flavors and aromas are captured by adding freshly picked, undired hops during the harvest.\n\n\nThese wet hops impart a character unlike other brews, that is quite unique and satisfying for those who love hops – the spice of beer. Smell the hop fields, smell the freshness.","ibu":14,"name":"Fresh Frog Raw Hop Imperial Pale Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.389919717389156,"address":"1446 Garden of the Gods","category":"North American Ale","city":"Colorado Springs","coordinates":[38.8967,-104.855],"country":"United States","ibu":92,"name":"Flo IPA","state":"Colorado","website":"http://trinitybrew.com/"},{"abv":12.05056761676413,"address":"270 53","category":"North American Lager","city":"KruÅ¡ovice","country":"Czech Republic","ibu":52,"name":"Imperial Czech Premium Lager","website":"http://www.krusovice.cz/"},{"abv":5.5,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Nicely Hopped, Medium Bodied Pale Ale","ibu":118,"name":"Patchway Pale Ale","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"The history of the bible and religion is indeed the struggle of good vs. evil. Our Serpent’s Stout recognizes the evil of the dark side that we all struggle with. This is a massively thick and opaque beer that begs the saints to join the sinners in their path to a black existence. 10.5% ABV and available in 750 ml bottles and on draft at select locations.","ibu":15,"name":"Serpents Stout","state":"California","website":"http://www.lostabbey.com/"},{"abv":6,"address":"14600 East Eleven Mile Road","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Little more can be said about this beer than these two words: Chocolate and Stout. This brew fills the palate with slightly sweet, super chocolate, malty flavor.","ibu":18,"name":"Willy's Oompa-Loompa","state":"Michigan"},{"abv":10.199999809,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Old Ruffian is a hefty, hop-forward Barley Wine. Seemingly mellow at first sniff, with its subtle fruit aromas and complex caramel sweetness, this deep mahogany-hued ale quickly shows its true character marked by bold hop flavors and massive hop bitterness. Old Ruffian’s rich, slightly creamy, caramel malt mouthfeel balances its grapefruit, pine, and floral hop flavors, working wonders on your palate.","ibu":100,"name":"Old Ruffian","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":10.068640211857382,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":93,"name":"Pale Ale","state":"Washington"},{"abv":6.606004648950643,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":35,"name":"Irish Stout","state":"Washington"},{"abv":7.1999998093,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":61,"name":"Imperial I.P.A.","state":"Washington"},{"abv":5.1999998093,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":110,"name":"Flagship Red Alt Ale","state":"Washington"},{"abv":0.7822123644243995,"address":"Drren 5","category":"German Ale","city":"Kilegg","country":"Germany","ibu":27,"name":"Edelweiss","state":"Baden-Wrttemberg"},{"abv":6.6999998093,"address":"Rue Derbque 7","city":"Jumet","coordinates":[50.4431,4.4147],"country":"Belgium","ibu":71,"name":"Grimbergen Blonde","state":"Hainaut"},{"abv":4.3725866069628525,"category":"North American Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":56,"name":"Prairie Thunder Pale Ale","state":"Iowa"},{"abv":6.1999998093,"address":"Whimsey Road","category":"North American Ale","city":"Cinderford","coordinates":[51.8325,-2.5116],"country":"United Kingdom","ibu":8,"name":"Deep Shaft Stout","state":"Gloucestershire"},{"abv":5.719249485458798,"address":"Snekerstraat 43","category":"German Ale","city":"Bolsward","coordinates":[53.0606,5.5342],"country":"Netherlands","ibu":38,"name":"Us Heit Dubbel Tarwe Bier"},{"abv":6.317105882281363,"address":"1 West Grand Avenue","category":"German Lager","city":"Chicago","coordinates":[41.8915,-87.6284],"country":"United States","ibu":76,"name":"Goat Toppler Mai Bock","state":"Illinois"},{"abv":0.0835453386095375,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":72,"name":"Ginger-\\\"slap\\\" Spiced Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":7.3832772648442235,"address":"3945 Second Street South","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":69,"name":"London Banker ESB","state":"Minnesota"},{"abv":11.694761159911181,"address":"207 College Street","category":"North American Lager","city":"Burlington","coordinates":[44.4771,-73.2115],"country":"United States","ibu":96,"name":"Peat Smoked Altbier","state":"Vermont"},{"abv":13.736305107871614,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":118,"name":"Saint Peter Red","state":"Minnesota"},{"abv":5.9000000954,"address":"811 Edward Street","category":"Belgian and French Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Belgian Ale is Deliciously Fruity. It is brewed with a generous amount of Belgian Aromatic Malt, Hand selected hops, and a traditional Belgian ale yeast. Brewed in the \"Trappist Style\".","ibu":70,"name":"Saranac Belgian Ale","state":"New York","website":"http://www.saranac.com"},{"abv":6.6999998093,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"If being in one of the coldest places in the US isn't extreme enough, the contents of this beer may very well redefine your commitment to the pursuit of hops. Rockslide IPA is brewed in the 'West Coast' style with aggressive amounts of American hops such as Amarillo, Centennial and Summit hops. You are greeted with a full frontal assault of citrus/grapefruit/pine hop character, followed up with malt to balance the mouthfeel. This beer is all about hops.","ibu":53,"name":"Rockslide IPA","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":4.8000001907000005,"address":"Domring 4-10","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":55,"name":"Warsteiner Premium Dunkel","state":"Nordrhein-Westfalen"},{"abv":8.88848685415249,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":90,"name":"Red Fox","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A full-bodied stout with plenty of roast flavor. Kalamazoo Stout is available year round, leading our vast portfolio of stouts.","ibu":27,"name":"Kalamazoo Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.1999998093,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":74,"name":"1000 Barley Wine","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.5,"address":"4615-B Hollins Ferry Road","category":"British Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Our \"winter warmer\" ale, brewed with copious helpings of English malts and US and English hops, a ruddy hued \"Imperial ESB\" in style. Full malty flavors dancing with powerful hop aromas and a lingering, firm hop bitterness. Seasonally available from mid October to February.\n\n\nGold Medal, International Pale Ale Category- World Beer Cup","ibu":58,"name":"Winter Storm","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":5,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep black color, toasted black burnt coffee flavors and aroma. Dispensed with Nitrogen through a slow-flow faucet giving it the characteristic cascading effect, resulting in a rich dense creamy head.","ibu":113,"name":"563 Stout","state":"California","website":"http://www.21st-amendment.com/"},{"abv":9.311420165858657,"address":"1650 Dell Range Boulevard","category":"German Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":117,"name":"Big Horn Hefeweizen","state":"Wyoming"},{"abv":11.705483878141433,"address":"2400 State Highway 69","category":"German Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":39,"name":"Copper Kettle Weiss","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":1.395291337516641,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":79,"name":"St. Sebastiaan Dark","state":"Antwerpen"},{"abv":3.2799516435139964,"category":"North American Ale","city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":93,"name":"The Only Oat Malt Stout In The World","state":"Scotland"},{"abv":6.922877725526384,"category":"North American Ale","city":"New York Mills","coordinates":[46.518,-95.3761],"country":"United States","ibu":69,"name":"Pale","state":"Minnesota"},{"abv":4.6999998093,"address":"130 Stirling Highway","city":"North Fremantle","coordinates":[-32.0232,115.754],"country":"Australia","ibu":36,"name":"Redback Original Malt Wheat Beer","state":"Western Australia"},{"abv":8.052867129107993,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":52,"name":"Cleary Red","state":"Michigan"},{"abv":13,"category":"North American Ale","city":"Ronchin","coordinates":[50.6054,3.0775],"country":"France","description":"Beer of top fermentation, Belzebuth represents the achievement of a more than one hundred year-old know-how, the one of the Brewery Grain d'Orge. Under its copper colour, it hides a strong character for the lovers of sensations. It owes its strength to the subtle mixture of pure malts, hops and yeasts especially selected by our Master-Brewer.\n\n\nAt one time this beer was 15%. After the name change it was lowered to 13%.","ibu":13,"name":"Belzebuth"},{"abv":9.319336546501301,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":29,"name":"Belgian Trippel","state":"Wisconsin"},{"abv":4.767881409744465,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":32,"name":"Schlafly Smoked Porter","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":3.9522652487552046,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":119,"name":"Ale","state":"Wisconsin"},{"abv":9.3000001907,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Prophecy is our third ale to be aged in bourbon barrels. We've taken our Merry Monks' Ale and carefully aged it in bourbon barrels. The result is a fabulous unique ale, softened with hints of vanilla and oak, with an intriguing finish to it. Prophecy is a limited release so when it's here, be sure to grab a case or two to lay away before its gone. 9.3% ABV.","ibu":21,"name":"Prophecy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.1999998093,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Oktoberfest style Marzen is a favorite at the famous Bavarian fall beer festivals. The distinct toasted malt flavor of this amber lager finishes quite crisp due to the extensive lagering of this beer. One sip and you’ll swear you’re in Munich.\n\n\n\"Kipona\" is the Indian word for \"sparkling water\". Each year, over Labor Day weekend, Harrisburg celebrates Kipona with a carnival and festival along the Susquehanna River and on City Island.","ibu":71,"name":"Kipona Fest","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":12.450187207643587,"address":"5417 Trumpeter Way","category":"British Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Two words describe Montana winters... Cold, dark, and snowy. And we wouldn't have it any other way, because it's the only time of year for Powder Hound, our Northern Rockies Winter Ale. Rich malt taste and an avalanche of hops will make you want to say these three words- \"I'll have another Powder Hound!","ibu":12,"name":"Powder Hound Winter Ale","state":"Montana"},{"abv":5.654851944927658,"address":"2920 North Henderson Ave","category":"Other Style","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":104,"name":"Blueberry Blonde","state":"Texas"},{"abv":3.401477999236431,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":2,"name":"Auld Lang Syne","state":"California"},{"abv":5.0100002289,"address":"161 River Avenue","category":"German Lager","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"Blue Point Octoberfest is another palate-pleasing seasonal brew. Originally brewed in 1810 to celebrate the betrothal of the Crown Prince of Bavaria, Blue Point continues the celebration by traditionally brewing this special malty amber lager every October. Octoberfest lager is stored cold for 2 months to ensure its distinct smooth flavor. Tap a pint and celebrate the season!","ibu":28,"name":"Oktoberfest","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":6.8000001907000005,"address":"813 Mirror Lake Drive","category":"North American Ale","city":"Lake Placid","coordinates":[44.2829,-73.9813],"country":"United States","ibu":99,"name":"Lake Placid Frostbite Ale","state":"New York","website":"http://www.ubuale.com/"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":0,"name":"Anniversary IPA Glacier","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":13.816552897244382,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":60,"name":"Pilsner","state":"British Columbia"},{"abv":4.9000000954,"address":"Wilhelm-Schussen-Strae 12","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":12,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":6,"address":"West Hewish","category":"North American Ale","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":25,"name":"Ale Mary","state":"Somerset"},{"abv":3.168625643766462,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":107,"name":"Fallen Angel Sweet Stout","state":"Nebraska"},{"abv":9,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":67,"name":"Houblon","state":"Luxembourg"},{"abv":5.3000001907,"address":"800 East Lincoln Avenue","category":"British Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"We introduced 90 Shilling, our flagship beer, at our opening party in 1989. For a while, we'd been wondering - what would happen if we lightened up the traditional Scottish ale? The result is an irresistibly smooth and delicious medium-bodied amber ale. The name 90 Shilling comes from the Scottish method of taxing beer. Only the highest quality beers were taxed 90 Shillings. A shilling was a British coin used from 1549 to 1982. We think you'll find this original ale brilliantly refreshing, and worth every shilling.","ibu":79,"name":"90 Shilling","state":"Colorado"},{"abv":7.5,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":106,"name":"Blonde"},{"abv":0.4296243906904307,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":87,"name":"Eric the Red","state":"Minnesota"},{"abv":7.2402626579722975,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":17,"name":"Witte Ezel","state":"West-Vlaanderen"},{"abv":10.684696846192093,"address":"23 White Deer Plaza","category":"North American Lager","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":43,"name":"Three Sisters Golden Wheat","state":"New Jersey"},{"abv":3.5320976137200444,"address":"527 Decatur Street","category":"German Ale","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":81,"name":"Weiss Beer","state":"Louisiana"},{"abv":4.1999998093,"address":"12 Toft Green","city":"York","coordinates":[53.9571,-1.0905],"country":"England","ibu":94,"name":"Yorkshire Terrier Premium Cask Bitter","website":"http://www.york-brewery.co.uk"},{"abv":8.167369517463495,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":40,"name":"Coffee Ale","state":"Wisconsin"},{"abv":5.4000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Our flagship ale, Stone Pale Ale is our Southern California interpretation of the classic British pale ale style. Deep amber in color, Stone Pale Ale is robust and full flavored. A delicate hop aroma is complemented by a rich maltiness. This is an ale for those who have learned to appreciate distinctive flavor. Stone Pale Ale is great by itself, or with food that requires a beer of character.","ibu":110,"name":"Stone Pale Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":7.080559830221444,"address":"146 Snelling Avenue North","category":"North American Lager","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":72,"name":"Honey Brown","state":"Minnesota"},{"abv":0.07801967553206168,"category":"North American Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":75,"name":"Red Eye Amber","state":"Hawaii"},{"abv":9.085242687567264,"address":"9627 East County Line Road","city":"Englewood","coordinates":[39.5678,-104.874],"country":"United States","ibu":51,"name":"Walnut Buffalo Gold Premium Ale","state":"Colorado"},{"abv":9.396875830261976,"category":"North American Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":106,"name":"Pale","state":"California"},{"abv":2.241177836003586,"city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":117,"name":"Black Forest Dunkelweizen","state":"Illinois"},{"abv":5,"address":"71 King Street North","city":"Waterloo","coordinates":[43.4676,-80.5231],"country":"Canada","ibu":4,"name":"Kings Pilsener","state":"Ontario"},{"abv":8.6999998093,"address":"420 Acorn Lane","category":"German Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"This dark amber wheat beer features fruity and spicy aromas galore. Significant strength underlies the pleasant citric appeal of this bock beer. Redolent with the flavors of harvest fruit, Moonglow typifies the traditional weizenbock-style so thoroughly enjoyed throughout Bavaria. Left unfiltered, its unique yeast strain gives Moonglow a radiance all its own.","ibu":8,"name":"Moonglow Weizenbock","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.572815129331241,"city":"Ocean","coordinates":[39.9653,-74.3118],"country":"United States","ibu":65,"name":"Old Salty","state":"New Jersey"},{"abv":5.1999998093,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Noble Pils is one of the only brews made with all five Noble hops from the world’s growing regions. its bright flavor and lively, citrus hop character reminds us that the warm days of spring are just a few weeks away.","ibu":79,"name":"Samuel Adams Noble Pils","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A mild pleasant ale with lingering hoppy notes.","ibu":54,"name":"Padawan Pale Ale","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":7.875933154886438,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":117,"name":"Strawberry Honey Amber Ale","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":8,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Bucking Bock - it's a traditional German Spring Bock Beer - golden in color and mildly hopped...... Kick'n in at 8% alcohol - it has a smooth malty character that will surely thaw you out after a long cold winter. Spring is here and so is Rahr's Bucking Bock!","ibu":101,"name":"Rahr's Bucking Bock","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.4000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Ridgeline Amber stands out as a stellar, complex choice in a sea of over-simplified amber beers available today. A malty, copper-hued treat from start to finish, Ridgeline begins with a distinctive, estery aroma. Followed with a complex, nutty malt flavor true to its Scottish-style heritage, Ridgeline delivers unparalleled character and dimension. A touch of hops rounds out its silky, full body, highlighting Ridgeline’s subtle but engrossing character. Show your friends that you care about their taste buds by turning them on to our imminently balanced and perfectly complex Ridgeline Amber. \n\n\nOf interest to Great Divide historians – Ridgeline originally debuted at the brewery as Great Divide’s first beer, Arapahoe Amber. It was renamed in 2004 to better reflect the Colorado lifestyle that Great Divide’s beers perfectly complement.","ibu":34,"name":"Ridgeline Amber","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.8000001907000005,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"An aggressively hopped American Style Pale Ale brewed with Simcoe and Amarillo hops. The use of 20% rye gives this ale a unique dry and spicy character.","ibu":9,"name":"Rye IPA","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":4.8000001907000005,"category":"Belgian and French Ale","city":"Saratoga Springs","coordinates":[43.0831,-73.7846],"country":"United States","description":"This Limited Edition unfiltered Belgian Style Ale, brewed with premium unmatted wheat has a crisp & refreshing flavor. This thirst quenching ale has a blend of sweet orange peel, a subtle hint of coriander and a delicate twist of lemon.","ibu":70,"name":"White Ale","state":"New York","website":"http://www.mendobrew.com/"},{"abv":5,"address":"23 South Main Street","category":"British Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"A full bodied special bitter brewed with British malt and American hops","ibu":16,"name":"Piston Bitter","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":7,"address":"1106 N. Charles St.","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"During the fermentation of the first batch of this Abbey-style dubbel, the yeast \"died\" and was \"resurrected\" by brewer Chris Cashell. Made with five types of barley malt and lots of sugar, this beer is quite flavorful, without being too sweet.","ibu":47,"name":"Resurrection","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"Ale Brewed with Columbian Coffee. Brewed with Sebastopol's Own Hard Core Coffee.","ibu":49,"name":"Cappuccino Stout","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.301649761828091,"address":"793 Exchange Street","category":"German Lager","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Oktoberfest is our version of the perennial favorite Bavarian Autumn beer. Oktoberfest's deep golden hue helps bring to mind the old country and its time honored traditions. Brewed with Hallertau and Tettnang hops to balance its clean, malty sweetness, it's the perfect brew for a crisp Autumn day. Available from August to November.","ibu":116,"name":"Oktoberfest","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":3.9887724008298897,"address":"175 State Road East","category":"North American Ale","city":"Westminster","coordinates":[42.5586,-71.8715],"country":"United States","description":"Nice Hoppy IPA - available in MA & NY only","ibu":13,"name":"Wachusetts IPA","state":"Massachusetts","website":"http://www.wachusettbrew.com"},{"abv":8,"address":"Rua Bahia, 5181","category":"German Ale","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":49,"name":"Eisenbahn Weizenbock","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":5.5999999046,"address":"1075 East 20th Street","category":"Irish Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nDark and rich, Sierra Nevada Porter is a delicious, medium-bodied ale with a creamy head. The Porter’s smooth flavor (malty with hints of caramel) comes from a blend of deep-roasted barley malts.\n\n\n\n“…there can be little doubt that this is one of the best porters being brewed anywhere in the world today.”\n\n\n— Christopher Finch, A Connoisseur’s Guide \n\nto the World’s Best Beer\n\n\nFIRST PLACE\n\nCalifornia Brewers Festival (Robust Porter: 2000)\n\nColorado State Fair (Porter: 1996)","ibu":80,"name":"Porter","state":"California","website":"http://www.sierranevada.com/"},{"abv":10,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Brew 10,000: One Brewer, Eighteen Years, Ten-Thousand Batches of Beer. \n\n\nBrew 10,000 is not so much a style of beer, rather it is a new recipe using some of the best ingredients John Maier has ever brewed with... Vienna, French Special Aroma, and Maris Otter Pale Malts; Yakima Summit and German Saphir Hops, Free-range Coastal Waters, and PacMan Yeast. \n\n\nBrew 10,000 was brewed only once, so its allocated and very, very limited. Its packaged in the swing-top 750-ml ceramic bottle and available only at select retailers. Note, Brew 10,000 was sold out at the brewery in early 2007, however, very limited amounts may still available in the retail trade, email Schuyler@rogue.com for a retailer near you.","ibu":59,"name":"Ten Thousand Brew Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.137786114928753,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","ibu":97,"name":"Pale Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":8.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":22,"name":"Vertical Epic 05.05.05","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":113,"name":"Alembic Pale","state":"Washington"},{"abv":4.3000001907,"address":"404 South Third Street","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":29,"name":"Dutch Girl Lager","state":"Washington"},{"abv":5.1999998093,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":99,"name":"Golden Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":9,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":8,"name":"Hitachino Nest Celebration Ale 2006","state":"Kanto"},{"abv":4.5,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan farmhouse ale that is golden, naturally cloudy, bottle conditioned and dry hopped for a perfectly refreshing balance of spicy malts, hops and yeast.","ibu":10,"name":"Bam Bière","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":4.5999999046,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":85,"name":"Pillar Point Pale Ale","state":"California"},{"abv":7.5,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":70,"name":"Jenlain Blonde"},{"abv":1.5504905962391458,"address":"1650 Dell Range Boulevard","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":89,"name":"Big Horn Wyoming Blonde","state":"Wyoming"},{"abv":12.544826915020542,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":58,"name":"#40 Golden Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":9,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":8,"name":"Bornem Triple","state":"Oost-Vlaanderen"},{"abv":6.156197539126368,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":34,"name":"Hopfenstange Pils","state":"Wisconsin"},{"abv":0.284986688412866,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":55,"name":"Stüvenbräu Maibock","state":"Wisconsin"},{"abv":11.39551623979113,"address":"351 Allen Street","category":"Irish Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"A robust, yet surprisingly refreshing porter, Mud Puppy is a favorite of dark beer lovers. Characterized by a thick, rocky head and luscious chocolate-like nose, the malty profile is balanced by liberal hopping for its style.","ibu":38,"name":"Mud Puppy Porter","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":3.158239004327198,"address":"1 Old Brewery Lane","category":"North American Lager","city":"Formosa","country":"Canada","ibu":84,"name":"Premium Lager","state":"Ontario"},{"abv":4.400861543357547,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":40,"name":"Tower ESB","state":"Colorado"},{"abv":9.832399138737651,"address":"14250 Sweetwater Lane","category":"North American Ale","city":"Centreville","coordinates":[38.8289,-77.4393],"country":"United States","ibu":97,"name":"High Desert Imperial Stout","state":"Virginia"},{"abv":2.379671163792038,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":13,"name":"Copper Wheat","state":"Nebraska"},{"abv":11.100000381,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":94,"name":"Cow Palace Scotch Ale 2001","state":"Wisconsin"},{"abv":12.11965748579056,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":83,"name":"Brown Fox Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":8.352619540907499,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":18,"name":"Hefe-Weißbier","website":"http://www.paulaner.com/"},{"abv":12.50836987622038,"category":"German Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":3,"name":"Oktoberfest","state":"Iowa"},{"abv":4.392126119705292,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":50,"name":"Steam Engine Common","state":"Wisconsin"},{"abv":13.233211554523074,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":106,"name":"Nut Brown Ale","state":"Washington","website":"http://www.redhook.com/"},{"abv":13.554973905640257,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":97,"name":"Winter Fest Beer","state":"Wisconsin"},{"abv":2.8829643269990255,"address":"7536 Fay Avenue","category":"German Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":41,"name":"Wheat","state":"California"},{"abv":5.434163298231898,"address":"316 Main Street","category":"British Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":5,"name":"Caramel Apple Ale","state":"Iowa"},{"abv":6.5751479049531705,"address":"506 Columbia Street","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":9,"name":"Old Boardhead 1999","state":"Oregon"},{"abv":5.9000000954,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":77,"name":"Best Bull","state":"Wisconsin"},{"abv":6.126051195812647,"address":"1028 Johnny Dodds Boulevard","category":"North American Lager","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":111,"name":"Market Street Wheat","state":"South Carolina"},{"abv":7,"address":"1035 Sterling Avenue","category":"British Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":58,"name":"Kilt Kicker Wee Heavy","state":"Illinois"},{"abv":7.983421315664183,"address":"Via Val Venosta, 8","category":"German Lager","city":"Lagundo / Algund","country":"Italy","ibu":29,"name":"Sixtus"},{"abv":2.681102320536022,"address":"351 Allen Street","category":"North American Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"This crisp, zesty American pale is characterized by the sharp bitterness missing in many domestic pale ales. The clean finish and slight fruity notes help make our flagship brew a delightful treat.","ibu":83,"name":"Happy Heron Pale Ale","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":9.30818376996714,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"Perhaps the most ancient style of beer, our brown ale is robust with a hint of nut flavor. With definable malt characteristics, this dark ale is sure to please any beer enthusiast’s palate.","ibu":9,"name":"Nut Brown Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":12.540512660391062,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":85,"name":"Kölsch","state":"California"},{"abv":4.074698733332461,"city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":16,"name":"Amarossa","state":"Texas"},{"abv":3.250804369637609,"address":"6863 Lundy's Lane","category":"German Lager","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":106,"name":"Eisbock","state":"Ontario"},{"abv":3.842303292026826,"address":"1201 First Avenue South","city":"Seattle","country":"United States","ibu":94,"name":"5,000 Year Ale","state":"Washington"},{"abv":10.546530663020716,"address":"309 Court Avenue","category":"North American Lager","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":73,"name":"Vimalt Wheat","state":"Iowa"},{"abv":7.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch 31, the brothers and the brewers decided to revisit one of our favorite sweet spots – IPA – and have some fun with hop flavors. Dubbed ‘Citra of Brotherly Love’ in honor of Philly Beer week, Scratch #31 has generous amounts of Apollo, Cascade and Citra hops. This is our first use of Citra hops, which is known for an intense grapefruit aroma and flavor.\n\n\nWhile showcasing the intense Citra flavor we added additional bitterness with Apollo and Chinook hops as well. Scratch #31 went through a bed of Chinook hops in the hopback and was dry-hopped with Cascade and Citra hops.","ibu":79,"name":"Scratch Beer 31 - 2010 Citra Of Brotherly Love IPA","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"This Russian Imperial Stout is dedicated to Gregory Zhukov. Arguably one of World War II's finest generals and a man bold enough to appreciate the rich, complex flavors of a beer brewed to fortify a body through the Russian winter. Like military geniuses, Russian Imperial Stouts reach their peak with a little age on them, so we release Marshal Zhukov's Russian Imperial Stout in sweltering August so that it will be at peak flavor come January or February.\n\n\nOpaque black in color, the aroma has notes of espresso, chocolate, dark sweet toffee with hints of black strap molasses. The flavor starts with an unsweetened chocolate character and supporting notes of herbal dryness from English hop varietals. It then moves into dark toffee sweetness and closes with a slap of roasty espresso. Zhukov's Imperial Stout pairs well with Mushroom Solyanka, dark chocolate, cherries and ground wars in Russia. Enjoy, comrade.","ibu":75,"name":"Marshal Zhukov's Imperial Stout","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":6.195678560367385,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"With its dark-roasted coffee aroma, espresso and chocolate flavor, this stout has flaked oats which create a velvety body and a dry finish.","ibu":44,"name":"Standing Stone Nitro Stout","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":3.287524210393118,"address":"10983 Hills Road","category":"British Ale","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Cocoa Stout boasts a beautiful black body and tan head with notes of roasted barley, coffee, and bittersweet chocolate. Enjoy with dessert ‹ especially good in a float with vanilla ice cream. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience. Contains lactose (milk sugar).","ibu":72,"name":"Round Barn Cocoa Stout","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":1.8928921140145394,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":108,"name":"Capital Oktoberfest","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":7.3000001907,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is named after a song that sparked the idea to make this ale. Brown ales seem to be there, but not really there, do you know what I mean? Well that won't be the mistake with Wynona! We Voodooed out this style and added more that's what we say. Mildly hoppy and smooth with hints of chocolate and tons of brown malt to let you know it's there. Currently 7.3% by vol. \n\n\nBottle conditioned and Refermented. \n\n\nGet down with the brown, You'll be Happy You Did!!","ibu":21,"name":"Wynona's Big Brown Ale","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":2.979396247545727,"address":"656 County Highway 33","category":"North American Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":27,"name":"Obamagang Inauguration Ale","state":"New York"},{"abv":12.100000381,"address":"127 Elm St., Unit C","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","description":"Our fourth in the Firehouse Ales Series, Pompier means \"fireman\" in French and represents our continued commitment to celebrate and honor the men and women who respond to the call day after day. Pompier is rich and smooth with complexities that come from a huge grain bill comprised of premium imported specialty malts, French Strisselspalt aroma hops and a 3 month aging process in oak hogsheads where it is combined with toasted French oak wood chips and champagne yeast. Pompier is intended to be a vintage quality English-Style Barleywine with a French twist. Appreciate its fine character and 12.1%ABV when we release this single 10 barrel batch sometime in December or you may choose to cellar it for many years to come. \n\n\nYou will find Pompier on retail shelves packaged in the same 1 Liter Swing-Top bottle that has become a signature for our specialty beers.","ibu":9,"name":"Pompier","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":2.9000000954000003,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Coopers Premium Light is brewed using malted barley and no sugar. Coopers has used traditional lager brewing techniques to produce a full-flavoured light beer. The light has a fresh aroma with clean floral hop notes, excellent head and colour presentation.","ibu":83,"name":"Coopers Premium Light","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An American pale ale made entirely with amarillo hops.","ibu":15,"name":"Broken Spoke","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":13.739253954233789,"address":"30 Germania Street","category":"British Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Ale brewed with Cherries, crisp and fruity with a hint of honey. Samuel Adams Cherry Wheat® follows the centuries old American tradition of brewing beer with native ingredients, in this case Michigan cherries as well as a touch of honey. The sweet fruitiness of the cherries is balanced against the crisp, cereal note from the malted wheat and the subtle citrus flavor from the Noble hops. The end result is a sweet, refreshing beer that is light on the palate but long on complexity.","ibu":59,"name":"Samuel Adams Cherry Wheat","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.5,"address":"1940 Olney Avenue","category":"British Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This ESB is a classic British extra special bitter made fresh with an American slant. A beautiful copper color with an amber head, this classic style features five different malts, including imported English malts, and three hop varieties. The rich malty start features caramel notes that develop into a smooth, pleasurable hop finish.","ibu":34,"name":"ESB Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":0.9790436888891019,"address":"426 St.Peter Street","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":84,"name":"Golden Prairie Blond","state":"Minnesota"},{"abv":4.741253556393556,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":50,"name":"Amber Ale","state":"New Jersey"},{"abv":8.279664565650634,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":102,"name":"Saison","state":"Wisconsin"},{"abv":12.656235368009801,"city":"Manchester","coordinates":[53.4807,-2.2344],"country":"United Kingdom","ibu":65,"name":"Pub Ale Draught","state":"Manchester"},{"abv":5,"address":"Lindenbergstraat 10","category":"Belgian and French Ale","city":"Sint-Ulriks-Kapelle","country":"Belgium","ibu":107,"name":"Gueuze 1882","state":"Vlaams Brabant"},{"abv":12.529362919828275,"address":"1004 South Olde Oneida","category":"North American Ale","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":79,"name":"Stout","state":"Wisconsin"},{"abv":5.661100112188349,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":7,"name":"Oatmeal Cream Stout","state":"Oregon"},{"abv":5.3000001907,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":60,"name":"Heavenly Helles","state":"Nebraska"},{"abv":3.7999999523,"address":"2106 North 55th Street","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":108,"name":"Warminster Special Bitter","state":"Washington"},{"abv":0.2586098882280352,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":91,"name":"Spezial-Export","state":"Baden-Wrttemberg"},{"abv":2.892116336616628,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":72,"name":"Alt-Dürrener-Weiße","state":"Baden-Wrttemberg"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":58,"name":"Bigfoot 2000","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.0999999046,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":4,"name":"Export Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5,"address":"R Pereboomweg 13 achter","city":"Haarlem","coordinates":[52.3795,4.6377],"country":"Netherlands","ibu":11,"name":"Adriaan"},{"abv":8,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":106,"name":"Achel Bruin 8°","website":"http://www.achelsekluis.org/"},{"abv":6.3000001907,"address":"1207 N. FM 3083 E.","category":"North American Ale","city":"Conroe","coordinates":[30.3489,-95.4427],"country":"United States","description":"A deep copper colored ale with a substantial malt backbone accented with British crystal malts with aggressive hop bitterness and substantial American hop flavor and aroma. The yeast profile is neutral.","ibu":28,"name":"Pine Belt Pale Ale","state":"Texas","website":"http://www.southernstarbrewery.com/"},{"abv":6,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Terrapin India Style Brown Ale is a head on collision between a hoppy, west coast IPA and a complex, malty brown ale. Brewed with 5 varieties of hops and 7 different malts, this hybrid style represents the best of both worlds.","ibu":30,"name":"India Style Brown Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"It is through the movement of the universe that life presents itself in transformation. It is in this spirit that we make ÜberSun, a tribute to the dynamic energy of summer. The alignment of wheat and barley through this hop-infused brew embodies the solar system itself... This may be a difficult task, but one our brewers revel in! They brew a galaxy of taste into every batch. ÜberSun is the ultimate experience that will challenge you with each sip. ÜberSun Imperial Summer Wheat Beer takes off where our Hop Sun finishes. Like it’s little brother, ÜberSun is clean and full of flavor, but don’t pull an Icarus– this is one big beer! Pour a glass or drink straight from the bottle, it’s meant to be consumed wisely with friends between summer solstice and autumnal equniox.","ibu":9,"name":"Über Sun Imperial Summer Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A well balanced, full flavored, amber ale. It has a rich, malty body with a pleasant caramel character derived from a specialty Caravienne malt. A complex hop aroma, with a hint of floral and citrus comes from a combination of Cascades and Liberty hops. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \n\n\nSaint Arnold Amber Ale is best consumed at 50 - 55° Fahrenheit.","ibu":36,"name":"Saint Arnold Amber Ale","state":"Texas","website":"http://www.saintarnold.com"},{"abv":7,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":47,"name":"Smooth Hoperator","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":8,"address":"303 Main Street","category":"British Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Old Chub is a Scottish strong ale brewed with hearty amounts of seven different malts, including crystal and chocolate malts, and a smidge of US and UK hops. Old Chub also gets a dash of beechwood-smoked grains imported from Bamburg, Germany, home of the world's greatest smoked beers. Old Chub is 8% alcohol by volume. While Dale's satisfies our hop addiction, Old Chub takes care of our deep affections for malt. The cola-colored beer (almost black) features a tan head, a creamy, skim-milk mouthfeel, and rich, semi-sweet flavors of caramel and chocolate throughout. The addition of smoked grains gives Old Chub a delicate kiss of smoke on the finish. Old Chub is the beer equivalent of a lightly smoked single malt scotch, or your favorite dark chocolate. We call it Rocky Mountain Mutha's Milk. People who tell us defiantly, \"I don't drink dark beer,\" often fall deeply in love with Old Chub. We can't blame them.","ibu":31,"name":"Old Chub","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":7,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Brewed with luscious apricots, finished with whole-leaf hops. A \"fruit beer for hop heads...\" Ale Street News","ibu":49,"name":"Aprihop","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.1454642892044262,"address":"23-1 Azumabashi 1-chome","category":"North American Lager","city":"Tokyo","country":"Japan","ibu":58,"name":"Asahi Super Dry","state":"Kanto"},{"abv":9.417242483006707,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":15,"name":"Holiday Spice Lager Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":9.826242802135818,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":32,"name":"Paddle Me IPA","state":"Oregon"},{"abv":8.75,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"This mammoth imperial red ale leads with a tantalizing hop aroma that is quickly complemented by an enormous malt backbone & finished with a multitude of hoppy goodness.","ibu":8,"name":"Big Hoppy Monster","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":0.4852088259503651,"category":"German Lager","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":50,"name":"Bock","state":"Iowa"},{"abv":1.2641195659325688,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":117,"name":"Lodestone Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":7.881769109621841,"address":"119 South Front Street","category":"North American Ale","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":38,"name":"Plank Road Pale Ale","state":"Michigan"},{"abv":7.976849553887386,"address":"300 North Main Street","category":"North American Ale","city":"Corona","coordinates":[33.8835,-117.565],"country":"United States","ibu":71,"name":"Hop Daddy IPA","state":"California"},{"abv":1.8189328735995647,"address":"200 North Main Street","category":"Irish Ale","city":"Las Vegas","coordinates":[36.1755,-115.145],"country":"United States","ibu":50,"name":"Black Chip Porter","state":"Nevada"},{"abv":8.774667779810114,"address":"501 State Street","category":"North American Ale","city":"Santa Barbara","coordinates":[34.4166,-119.696],"country":"United States","ibu":49,"name":"Pacific Pale","state":"California"},{"abv":14.996118130345259,"address":"102 West Main","category":"North American Ale","city":"Norman","coordinates":[35.2205,-97.4439],"country":"United States","ibu":54,"name":"IPA","state":"Oklahoma"},{"abv":1.7911308614228605,"address":"1812 North 15th Street","category":"North American Ale","city":"Tampa","coordinates":[27.9607,-82.4433],"country":"United States","ibu":12,"name":"Old Elephant Foot IPA","state":"Florida"},{"abv":1.8258742170249098,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":104,"name":"Iris 1996","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":0.9078078299578807,"address":"Hofmarkstrae 15","city":"Cham","coordinates":[49.1672,12.6399],"country":"Germany","ibu":119,"name":"Original Pils","state":"Bayern"},{"abv":10.254504696850741,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":5,"name":"Oatmeal Stout","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":4.5,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":109,"name":"Free Bike Amber","state":"Washington"},{"abv":6.242297477853453,"address":"1524 West Marine View Drive","category":"German Lager","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":32,"name":"Maibock","state":"Washington"},{"abv":5.5999999046,"address":"621 Front Street","category":"Irish Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":92,"name":"Possession Porter","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":11.163206877549571,"address":"13300 Bothell-Everett Highway #304","category":"Irish Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":89,"name":"Porter","state":"Washington"},{"abv":9.1999998093,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":56,"name":"Eisbock","state":"Bayern"},{"abv":8,"address":"Hillfoots Business Village","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":47,"name":"Old Engine Oil Special Reserve (aged in malt whisky casks)","state":"Scotland"},{"abv":7.5,"address":"Slien 2, 2. tv","category":"North American Ale","city":"København","country":"Denmark","description":"Breakfast is the most important meal of the day, many say, and if you are a beer geek there is no better way to start the day than with a powerful, complex morning stout. The unique mix of oats and coffee gives this beer large body and power, while the coffee, at the same time, creates a nice balance.","ibu":29,"name":"Beer Geek Breakfast","website":"http://www.mikkeller.dk/"},{"abv":9.4600000381,"address":"5763 Arapahoe Avenue","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":73,"name":"Fourteen","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":9.45602482703774,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":47,"name":"Sharptail Pale Ale","state":"Montana"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":73,"name":"Oatmeal Stout","state":"North Yorkshire"},{"abv":13,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Decadence is our Tenth Anniversay spiced amber ale. This is a very limited production, brewed only once, to celebrate ten fantastic years in business. This ale weighs in at 13% ABV and is a fantastic sipper, especially after dinner or consider paring it with a good book on a cool fall evening. Decadence is brewed with honey, cardamom spice and gentian (a rare botanical!) This ale is very unique and will develop finer character when aged at cellar temperatures.","ibu":106,"name":"Decadence","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.3000001907,"address":"5417 Trumpeter Way","category":"Irish Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"It's chocolate brown in color with a creamy texture. A malty beer with just enough hop presence to keep it from being too sweet. The aroma mostly comes from the malt with a hint of spice added by the hops. Moose Drool is brewed with pale, caramel, chocolate, and whole black malts; and Kent Goldings, Liberty, and Willamette hops. It has an original gravity of 13 degrees Plato, and is 4.2% alcohol by weight, 5.3% by volume.","ibu":111,"name":"Moose Drool Brown Ale","state":"Montana"},{"abv":6,"category":"German Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":59,"name":"Dusseldorfer Doppelbock","state":"Illinois"},{"abv":9.55222635723484,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":114,"name":"Red Fox Amber","state":"Illinois"},{"abv":6.875799053203413,"address":"117 South First Street","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":74,"name":"Extra Special Bitter","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":10.392079113783247,"address":"Landsberger Strae 35","category":"German Lager","city":"München","country":"Germany","ibu":12,"name":"Maximator","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5,"address":"Elisabethufer 18","city":"Jever","coordinates":[53.5755,7.9016],"country":"Germany","ibu":45,"name":"Pilsener","state":"Niedersachsen"},{"abv":5.4000000954,"address":"In den Hardtberggrten","city":"Lich","coordinates":[50.5208,8.8166],"country":"Germany","ibu":58,"name":"Export Premium","state":"Hessen"},{"abv":11.19690484746254,"ibu":95},{"abv":9.251669054478883,"address":"808 West Main Street","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":54,"name":"Witbier","state":"Wisconsin"},{"abv":0.43232748259656284,"address":"2400 State Highway 69","category":"German Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":71,"name":"Solstice Wheat","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":4.1835109324765165,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":76,"name":"Solitaire Stout","state":"Colorado"},{"abv":8,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":37,"name":"Augustijn Ale","state":"Oost-Vlaanderen"},{"abv":9.550442892775376,"address":"841 East Milwaukee Street","category":"North American Lager","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":24,"name":"Amber Lager","state":"Wisconsin"},{"abv":12.537891417751226,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":46,"name":"Winter Ale","state":"Ohio"},{"abv":6.8000001907000005,"category":"Belgian and French Ale","city":"Opwijk","coordinates":[50.9699,4.1892],"country":"Belgium","description":"A reddish-brown abbey ale brewed with dark malts. The secondary fermentation gives a fruity aroma and a unique, spicy character with a distinctive aftertaste. Secondary fermentation in the bottle. Contains barley malt.","ibu":44,"name":"Affligem Dubbel","website":"http://www.affligembeer.be/"},{"abv":4.4000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":83,"name":"Shiner Blonde","state":"Texas","website":"http://www.shiner.com"},{"abv":7.8246626094598515,"address":"2920 North Henderson Ave","category":"German Lager","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":34,"name":"Oktoberfest","state":"Texas"},{"abv":11.865090652011833,"category":"North American Ale","city":"Grand Rapids","coordinates":[42.9634,-85.6681],"country":"United States","ibu":97,"name":"Stout","state":"Michigan"},{"abv":6.665888436241284,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":87,"name":"Arkham Stout","state":"Illinois"},{"abv":7.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"he Humidor Series is a rotating offering of Cigar City Brewing beer aged on cedar. Cedar has a more subtle effect on beer than more traditional woods like oak. But, we think that once you taste it you’ll agree that cedar deserves a place alongside oak in the brewer’s wood-aging toolbox.","ibu":17,"name":"Humidor Series Jai Alai Cedar Aged India Pale Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":8.6000003815,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"The essence of Christmas is captured in this very bottle you are holding. Perfectly blended spices compliment Frosted Frog’s rich malt flavors, creating the ultimate Christmas experience. Celebrate the holidays as you savor this very special seasonal offering.","ibu":47,"name":"Frosted Frog Christmas Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"St Austell’s most legendary ale, HSD is fullbodied strong and Cornish, brimming with a kaleidoscope of flavours. Brewed with plenty of malt and lashings of English Fuggles and Golding hops, HSD is truly a classic ale of considerable depth and complexity. The real ale alternative to a well rounded premium red wine and simply superb with steaks and other red meat dishes.","ibu":114,"name":"HSD Hicks Special Draught","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":6.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A flavorful Red Ale with a generous helping of fresh Cascade hops. A full-bodied unfiltered beer with a slightly dry and roasted finish.","ibu":73,"name":"Indian Red Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":5.5,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":57,"name":"Oak Creek Amber Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":3.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Sea Dog Apricot Wheat Beer is a crisp and quenching wheat ale with a subtle essence of fresh apricots.","ibu":110,"name":"Sea Dog Apricot Wheat","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":6.3000001907,"address":"461 South Road","category":"North American Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Now here's a beer with punch! \n\n\nCoopers Best Extra Stout is a beacon for lovers of a hearty brew. With its robust flavour it is everything a stout should be. \n\n\nBrewed naturally using a top fermentation method, Coopers Stout's unique rich, dark texture comes from specially roasted black malt. \n\n\nCoopers Best Extra Stout contains no additives and no preservatives.","ibu":41,"name":"Coopers Best Extra Stout","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5,"address":"1093 Highview Drive","category":"Irish Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Full-flavored and robust ale with heavy notes of roasted malt. There are hints of coffee and chocolate flavors, complimented by medium hop bitterness and a hint of smokiness.","ibu":93,"name":"Peninsula Porter","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6.4000000954,"address":"21 W. Bay St.","category":"Other Style","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"This hard cider is fresh-pressed with delicious, sweet-tart \"Pink Lady\" apples from the Mercier Orchards in the North Georgia mountains.","ibu":56,"name":"Road Trip Hard Cider","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":4.5,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A refreshing and delightful ale with the subtle flavor and aroma of apricots. A wonderful change from the ordinary. This is not a sweet fruit beer.","ibu":109,"name":"Middle Ages Apricot Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":7.8000001907000005,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":102,"name":"Holy Moly","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.3000001907,"address":"811 Edward Street","category":"Belgian and French Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Our Belgian Style White beer is smooth, tangy and very thirst quenching. Brewed with a delicate combination of oats, wheat and barley malt, we season it ever so lightly with hops. Then we add sprinklings of coriander and orange peel for a refreshing brew with a citrus aroma. Don't be fooled by the cloudy appearance, that's expected of a classic Belgian-style \"Whitbier\" or white beer.","ibu":98,"name":"Saranac Belgian White","state":"New York","website":"http://www.saranac.com"},{"abv":13.463642443918909,"address":"310 Commercial Drive","category":"British Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"While hugely popular in Scotland, this style of beer escapes most North Americans. Designed and brewed by the Scottish punk rocker David “Malty” Macanulty, this creamy, nutty, malty, dark ale is true to its origins. David drives James crazy over this beer, insisting on rigid fermentation temperatures, traditional mild hops for bittering, and even some weird caramelizing ritual as the kettle is being filled. The beer continues to undergo subtle evolutionary changes because the stubborn Scottish bastard will never be satisfied.","ibu":76,"name":"Highland Scottish Ale","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":7.945060513187798,"address":"793 Exchange Street","category":"Belgian and French Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"White Sail is a Belgian-style white beer, craft brewed with wheat, malted barley, hops, and a little bit of coriander and orange peel. It is mild yet flavorful, with fruity undertones and a haze from the yeast and wheat. This ale is delicious on its own, or with a slice of orange.","ibu":61,"name":"White Sail","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":5.1999998093,"address":"1100 New York Ave, NW","category":"Irish Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down.","ibu":79,"name":"Irish Red Ale","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":2.032667590855083,"address":"429 W. 3rd St","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Square Feet Wheat is loosely based on a Berliner Weisse style of beer from Germany. It has a refreshing, yet slight wheat and malt sweetness that is supported by a distinct hop presence. On hot Summer days, Square Feet Wheat will cool you off. Bring it along to pool parties, picnics and backyard cookouts. Instead of a boring wedge of lemon or orange, try Square Feet Wheat with a splash of raspberry extract or a dash of essence of Woodruff – both a customary addition to Berliner Weisse beers in Berlin.","ibu":67,"name":"Square Feet Wheat","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":6,"address":"231 W. Fourth Street","category":"Irish Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big, RICH dark ale with a complex combination of beechwood smoked malts, chocolate, coffee and caramel flavors rounding out the beers smooth creamy body.","ibu":18,"name":"Smoked Porter","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":6.9000000954,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A strong India Pale Ale that is marked by intense hop flavor and high hop bitterness. This style of beer needed the high hop and alcohol to survive the trip around Africa. Medium to light body and very bitter. \n\n\nAlcohol content approximately 6.9% by volume (ALWAYS ON TAP!!)","ibu":16,"name":"The Raj India Pale Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":8,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"A dry Imperial stout with rich black color and aromas of roasted coffee, molasses, dark chocolate, toffee and caramel. Rich, powerful, and lingering.","ibu":42,"name":"Peg Leg Stout","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":14.61952893619776,"address":"1507 Montana Street","category":"North American Lager","city":"Missoula","coordinates":[46.8726,-114.02],"country":"United States","ibu":64,"name":"Hefeweizen","state":"Montana"},{"abv":4,"address":"2106 North 55th Street","category":"North American Lager","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":39,"name":"Foster Child Australian Lager","state":"Washington"},{"abv":6.5999999046,"address":"1221 East Pike Street","category":"German Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":20,"name":"Whoville Weizenbock","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7.120982018706704,"address":"13450 - 102 Avenue","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":72,"name":"Boomers Red Ale","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":11.97160866960689,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":47,"name":"Winter Gale Spiced Ale","state":"Wisconsin"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":42,"name":"Harvest Ale 2001","state":"Manchester"},{"abv":10.855557210107808,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":57,"name":"Home Town Blonde","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":1.465341235671881,"address":"Holstenstrae 224","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":70,"name":"Astra Urtyp","state":"Hamburg"},{"abv":4.885296958542135,"address":"B-4864 Cty Rd F","category":"North American Ale","city":"Unity","coordinates":[44.8516,-90.3165],"country":"United States","ibu":42,"name":"Swede Saw Red Ale","state":"Wisconsin","website":"http://www.logjambeer.com/"},{"abv":11.233547094142281,"address":"22221 Pepper Road","category":"North American Ale","city":"Lake Barrington","coordinates":[42.1865,-88.1835],"country":"United States","ibu":13,"name":"Pale Ale","state":"Illinois"},{"abv":7.1999998093,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Selected as a benchmark for the Beer Judge Certification Program used in all American based beer judgings. Centennial IPA has quickly become the IPA of choice. Pour yourself a pint of this complex flavorful ale and bask in the frothy head's floral bouquet. Relish the immense citrus accents, achieved by the abundance of dry hopping. This ale's sweet, malty undertones balance the hop character with a finish that never turns too bitter.","ibu":87,"name":"Centennial IPA","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":7.1999998093,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","ibu":3,"name":"Maibock","state":"Bayern"},{"abv":12,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":84,"name":"Dark Knight","state":"Minnesota"},{"abv":6.9000000954,"address":"7803 Ralston Road","category":"North American Ale","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":112,"name":"IPA","state":"Colorado"},{"abv":5.9000000954,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":1,"name":"Censored (aka The Kronic)","state":"California","website":"http://www.lagunitas.com/"},{"abv":12.673306365729806,"address":"5775 Lower Mountain Road","category":"North American Lager","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":33,"name":"Lager","state":"Pennsylvania"},{"abv":5.0999999046,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Pilsener is a light bodied American Wheat Beer that is judiciously hopped with Cascade and Tettnang hops. \"Dry-Hopping\" imparts the distinctive hop aroma and finish. Look for a smooth, crisp taste and brilliant golden color. Enjoy!","ibu":115,"name":"Saranac Golden Pilsner","state":"New York","website":"http://www.saranac.com"},{"abv":7,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"Great chocolate stoudt.","ibu":3,"name":"Cocoa Loco","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":10.126202641081186,"address":"1398 Haight Street","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":43,"name":"Golden Bitter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":2.1690782286668253,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":119,"name":"Agassiz Amber","state":"Arizona"},{"abv":2.4688724245900784,"category":"North American Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Chicago Fire","state":"Illinois"},{"abv":4.204019233423301,"address":"412 North Milwaukee Avenue","category":"German Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":71,"name":"Scapegoat Doppelbock","state":"Illinois"},{"abv":1.7806348389679316,"address":"45 South Barrington Road","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":54,"name":"Prairie Inn Pilsner","state":"Illinois"},{"abv":6.266857791057494,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":67,"name":"South Barrington Stout","state":"Illinois"},{"abv":9.844406909115794,"address":"25 North Madison St","category":"North American Ale","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":73,"name":"Calumet Amber","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":10.761788002424323,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":7,"name":"St. Paul Blond","state":"Antwerpen"},{"abv":4,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Our flagship brand! An amber Vienna-style lager beer that is smooth, mellow and full bodied, with delicate hop aroma. Uses two-row barley malt and caramel-roasted malt. Based on founder Tom Pastorius' favorite German bier.","ibu":81,"name":"Penn Pilsner","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.6999998093,"address":"2105 N. Atherton St.","category":"Other Style","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A light American wheat ale with the delicate aroma and flavor of apricot. ABV 4.7%","ibu":69,"name":"Apricot Wheat","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.942910311419439,"address":"8280-A Mira Mesa Boulevard","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":5,"name":"Christmas Ale","state":"California"},{"abv":6.878659515149767,"category":"North American Lager","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":10,"name":"Honey Weizen","state":"Oregon"},{"abv":12.412352665991845,"address":"1201 First Avenue South","category":"British Ale","city":"Seattle","country":"United States","ibu":14,"name":"Tilted Kilt Ale","state":"Washington"},{"abv":6.5,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":64,"name":"Dundee Export 90 Scotch Ale","state":"Nebraska"},{"abv":4.5999999046,"address":"1524 West Marine View Drive","category":"North American Lager","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":32,"name":"Hefe Weizen","state":"Washington"},{"abv":4.580919389528421,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":92,"name":"Trombipulator","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":11.893489781338525,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":10,"name":"Kronenbier","state":"Baden-Wrttemberg"},{"abv":5.5999999046,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":30,"name":"Wayan"},{"abv":6.5,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan pale ale brewed in the Grand Cru tradition. Enjoy its golden effervescence and gentle hop aroma. Coriander and Grains of Paradise round out the spicy palate, melting o so softly into a silken finish of hoppiness and bliss! Make any season a celebration!","ibu":109,"name":"Luciérnaga","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.5,"address":"121, rue de la Chapelle","city":"St-Sylvestre-Cappel","coordinates":[50.7975,2.5412],"country":"France","ibu":28,"name":"Gavroche French Red Ale","website":"http://www.brasserie-st-sylvestre.com/"},{"abv":13.645746028056374,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":73,"name":"Staghorn Oktoberfest","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":0.22277978779861818,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":71,"name":"Cheap Köln","state":"Wisconsin"},{"abv":1.034111921974834,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":44,"name":"Mariage Parfait 1995","state":"Vlaams Brabant"},{"abv":14.285959048486818,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":87,"name":"Scarlet Ale","state":"South Carolina"},{"abv":0.5587429574437919,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":37,"name":"Fox Tail Amber Ale","state":"Wisconsin"},{"abv":5.1999998093,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":25,"name":"American Pale Ale","state":"Wisconsin"},{"abv":13.255128930567995,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":64,"name":"Brown","state":"Wisconsin"},{"abv":12.66652133671139,"category":"North American Lager","city":"Wilmington","coordinates":[34.2257,-77.9447],"country":"United States","ibu":14,"name":"Golden Lager","state":"North Carolina"},{"abv":0.8812681603097605,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":25,"name":"Amber Ale","state":"California"},{"abv":8.5,"address":"235 Grandville Avenue SW","category":"British Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Founders flagship beer. Dirty Bastard is an absolute beautiful beer to behold. Dark ruby in color and brewed with ten varieties of imported malts this beer continuously lives up to its reputation as a bold and powerful ale. Dirty Bastard is complex in the finish with hints of smoke and peat paired with a malty richness, finalized with a good bit of hop attitude. This beer ain't for the wee lads.","ibu":4,"name":"Dirty Bastard Scotch Style Ale","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":4.3000001907,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"An abundance of fresh, natural fruit flavor makes this beer something special. You would think we picked the fruit moments before brewing.","ibu":51,"name":"Smashing Berry Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5,"address":"AB43 8UE","category":"British Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":50,"name":"The Physics","website":"http://brewdog.com/"},{"abv":2.0330663755508116,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"A light copper body low bitterness with good hop flavor. This is my impression of what the English troops may have been drinking when they occupied India. The pale ale they drank had mellowed considerably. The wooden casks had spent many months traveling on ships and long inland journeys to the troops, where they were then tapped and enjoyed.","ibu":103,"name":"Rock Art IPA","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":5,"address":"35 Fire Place","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A hearty sip of the Santa Fe Stout delights one’s taste buds first with a generous Irish serving of roast malt that rolls off the tongue with a creamy bitterness reminiscent of the finest coffee. Supported by the complex, yet light body only possible with a good Irish yeast strain, this coffee-like creaminess eventually yields to the warmth of a subtle variety of hops, and their mild, full flavor. A favorite with regular customers, this rare brew can occasionally be found on draft at restaurants in Santa Fe, but is more likely on tap at the Brewery's tasting room. Despite its intimidating dark color, this brew has an uncanny ability to convert those who claim not to like beer. The balance of flavors and complexity of aroma are recognized and appreciated by all who taste this fine brew.","ibu":78,"name":"Santa Fe Stout","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":13.172979525929602,"address":"195 Ottley Drive","category":"Irish Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"This is a classic American Porter, poured on tap it has a good head that stays and leaves a nice lace. It is defined by its chocolate malt, medium body, and smooth mouthfeel. Balanced by the Golding and Columbus hops on the finish is a hint of bitterness. \n\nDon’t be afraid of the dark.","ibu":44,"name":"Exodus Porter","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":9,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":98,"name":"Goose Island Imperial IPA","state":"Illinois"},{"abv":8.5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"To commemorate the 30th anniversary of Specialty Imports' specialty wine and beer import business, Midnight Sun Brewing Company brewed a very special beer--a black double IPA--to honor this Alaska company's long-term success. \n\n\nThis black double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \"Specialty Beer\" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale.\n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 01/16/2009)\n\n\n** An oak-aged version will be released in Fall 2009.","ibu":81,"name":"Specialty Beer: Black Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5999999046,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Portsmouth is a colonial era seaport town, so it goes to follow that sooner or later we'd brew an India Pale Ale as a tribute to those big, hoppy 19th century ales that made the long sea voyage from England's temperate shores, 'round the Cape of Good Hope, to the sultry climes of the faraway East Indies.\n\n\nBut there's another reason we brewed this beer, one that's closer to our home and hearts. Hopheads. \n\n\nTen years ago we brewed our first batch of Shoals Pale Ale, our American interpretation of the traditional British ESB (Extra Special Bitter) style. At the time, it was widely considered to be darned hoppy. However, a funny thing happened over the last decade - our Shoals Pale Ale didn't change; beer lovers did, and we started to hear more and more: “Why don't you guys make a really hoppy beer?”\n\n\nYou could say, then, that Smuttynose IPA is a physical salute to the glory of the American hop grower. The citrusy hop flavor coming from a mixture of Simcoe and Santiams is pleasantly balanced by a smooth bitterness from the Amarillo hops. The beer itself is light bodied and crisp with a golden color that will throw a slight haze, as we bottle it unfiltered. At 65 IBU's, this is definitely not a training-wheels IPA, but is meant for hop lovers looking to satisfy their craving in a way that's not easy to find. We think they’ll be quite pleased.","ibu":49,"name":"Smuttynose Finestkind IPA","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":3.7999999523,"address":"281 Heinlein Strasse","category":"British Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Don't let the name scare you, this is an easy drinker, slightly sweet and bitter.","ibu":109,"name":".38 Special Bitter","state":"Michigan"},{"abv":7,"address":"Walplein 26","category":"Belgian and French Ale","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","description":"Besides the goldenblond ale, a darker version of the townbeer has been created : Brugse Zot double, with 7,5 % Vol alc. It is brewed with 6 special kinds of malt, which give the beer a rich taste. The worldly renowned Tcheque Saaz hop from Zatec has been chosen to give the beer this unique bitter note. Brugse Zot double is a fill and stronger beer, highly appreciated by the beerlovers.","ibu":55,"name":"Brugse Zot Double","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":10,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A rich and very dark Imperial Stout that has a complex flavor profile with hints of molasses and caramel. Brewed in July to allow time for aging, Sick Duck finishes very smooth for such a big beer.","ibu":15,"name":"Sick Duck Imperial Stout","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":8.5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Imperial IPA is part our new High Peak Series, a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial IPA is brewed with 10 different malts and 10 different hops to make a delectably flavorful and complex Imperial IPA - at 85 IBU's and 8.5 % alc/vol.","ibu":69,"name":"Saranac Imperial IPA","state":"New York","website":"http://www.saranac.com"},{"abv":5.4000000954,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Nut Brown Ale's soft mellow malt character is rich and smooth with a medium body. Look for hints of toasted malt flavor, slight hop bitterness and amber brown color.","ibu":77,"name":"Saranac Nut Brown Ale","state":"New York","website":"http://www.saranac.com"},{"abv":11.994337627046306,"address":"Schlossalle 1","city":"Moos","country":"Germany","ibu":80,"name":"Bavarian Dark Wheat Beer","state":"Baden-Wurttemberg","website":"http://www.arcobraeu.de"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Created to celebrate Clipper City’s 10th Anniversary – extremely limited and “vintage” dated – this extravagantly malty barley wine will show well upon release but continue to evolve for years. Seasonally available in December while supplies last. Voted #1 beer by Mahaffey’s Pub.","ibu":60,"name":"Below Decks","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.5,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":116,"name":"Jade"},{"abv":9.458205912870385,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":33,"name":"Frostbite","state":"South Carolina"},{"abv":6,"address":"929 North Russell Street","category":"North American Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"Broken Halo IPA is a beer produced in the spirit of traditional IPA products shipped from the UK to India in the late 1800s. The almost excessive amounts of Cascade and Columbus hops used in Broken Halo give it notable citrus and grapefruit aromas and flavors. The beer bitterness measures high but tastes smooth due to the full-bodied, Caramel malt sweetness. The finish is juicy, clean, and short lived. A devilishly bold, heavenly smooth India Pale Ale.","ibu":59,"name":"Broken Halo IPA","state":"Oregon"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Free spirited Panty Peeler pours rambunctiously into your glass, releasing its engaging aroma. Curacao (bitter) orange peel and coriander create a beautiful yet bolder tripel by infusing color, citrus and spice. Belgian yeast adds playful character. Bottle conditioning assures a perfectly heady experience.\n\n\nBrewed as a Belgian tripel but with American boldness, Panty Peeler is delicious yet spirited. Originally named Extreme Polar White Bier, it got nicknamed \"Panty Peeler\" along the way. Then we translated it to French for a while: E'pluche-culotte. Now we're back to calling it Panty Peeler and we've kicked up the coriander and orange peel to represent its original design.\n\n\nAvailability:\n\nAK - 22-oz bottles (year-round) and draft (on occasion)\n\nOR - 22-oz bottles (year-round)","ibu":3,"name":"Panty Peeler Tripel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"1340 East Eighth Street #103","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"One of a kind ale. Brewed with 600 pounds of Arizona grown Medjool Dates added to the kettle. 1998 Gold Medal GABF. Alcohol content varies as every brew is slightly different. Usually very strong with sherry or port-like flavors. Brewed quarterly. Alcohol content approximately 7-9% by volume.","ibu":105,"name":"Blind Date Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.9000000954,"address":"Ole Steensgt. 10 Postboks 1530","category":"German Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Aass Bock is a dark \"lager\" also produced in accordance with the \"Purity law\". \n\n\nThe malted barely is produced in the Scandinavian countries. It is a combination of bayer-, color- and caramel malt. \n\n\nWe use the very best of hops from the Hallertau area in Germany, and the water is pure Norwegian mountain water. \n\n\nThe Aass Bock is largered at cool temperatures, and it is allowed to mature for as long as 6 months before bottling. \n\n\nThe beer is sold in a caracteristic nice-looking green bottle containing 11.2 fl. oz or 330 ml.","ibu":11,"name":"Bock Beer","website":"http://www.aass.no"},{"abv":4.5,"address":"2423 Amber St","category":"North American Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"This is a real drinkin' beer! - a golden session ale that boasts both a European birthright and a thirst-quenching Philadelphia sensibility. Ke n zinger is refreshingly crisp and smooth, with a spirited flavor that grabs the attention of taste buds everywhere. Get some!","ibu":13,"name":"Kenziger","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":1.9153071105830533,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":46,"name":"Summer Brau","state":"California"},{"abv":4.855795235561869,"address":"14800 San Pedro Avenue","category":"German Lager","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":115,"name":"Wicked Springfest","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":9.633714134562151,"category":"North American Ale","city":"Wauwatosa","coordinates":[43.0495,-88.0076],"country":"United States","ibu":71,"name":"Rainbow Red Ale","state":"Wisconsin"},{"abv":9.566369733474952,"address":"42 Slateford Road","city":"Edinburgh","coordinates":[55.9358,-3.2297000000000002],"country":"United Kingdom","ibu":83,"name":"Double Dark","state":"Scotland"},{"abv":5.3000001907,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Arrr this be a dark beer with strong notes of coffee and chocolate flavors.","ibu":19,"name":"Pirate's Porter","state":"Michigan"},{"abv":5.183016704552546,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":55,"name":"Lilja's Hop Nest Monster","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":5,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"Our golden American ale has a crisp body and slightly dry, hoppy finish. This is a real treat for the beer lover. Pale, wheat and torrified wheat malts are used with Northern Brewer and Mt. Hood hops.","ibu":111,"name":"Whitetail Golden Ale","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":12.699999809,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Vicious and viscous, this menacing brew pours opaque black with a creamy maduro-colored head. Its aroma offers seductive whiskey, chewy red wine, dark fruit and lavish tobacco. Berserker Imperial Stout invades your taste buds with in-your-face flavor. Weighing in at almost 13% alcohol by volume, Berserker is completely out-of-control. Give it a good fight.\n\n\nThis version of Berserker Imperial Stout was aged in both red wine and whiskey barrels. The entire batch was brought back together before being packaged in kegs and 22-oz bottles.","ibu":100,"name":"Berserker Imperial Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":8.5,"address":"Rue de Panneries 17","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A limited production, spiced Christmas ale available during the cold-weather months. (across the northern hemisphere)\n\nAbbye St. Martin Ales are pure Belgium.","ibu":25,"name":"Abbaye de Saint-Martin Cuvée de Noel","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":10,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":53,"name":"Apocalypse Cow","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Inspired by West Coast I.P.A.'s, but brewed with Michigan style. The Crooked Tree is heavily dry hopped to give it a big aroma of pine and citrus. The flavors are big, yet very balanced between fresh hops and malt. Often described as \"grapefruit\" our hops give this beer an excellent fruit flavor that finishes dry, crisp, and clean. It will pour a nice deep copper color with a bit of haziness. Because of our almost patented \"Intense Transfer Methods\" our Crooked Tree has won several medals in the India Pale Ale category.","ibu":33,"name":"Crooked Tree IPA","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":4.5,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our red is a special bitter. This means it has medium body and mild bitterness. These balance well with the rich copper color. We use American hops.","ibu":31,"name":"Trail Ridge Red","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":6.5999999046,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Our namesake IPA is a Northwest classic. Generous additions of Amarillo, Centennial, and Ahtanum hops find their way into the kettle, hop-back, and dry-hop. This judicious use of the \"brewers spice\" creates rich and resinous flavors of citrus fruit and pine. The finest organic Canadian pilsner malt and organic German Munich and Caramunich malts then bring balance to your new favorite beer.","ibu":105,"name":"Hopworks IPA","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":6.129852979603005,"address":"2100 Locust Street","category":"German Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":85,"name":"Baracktoberfest","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":13.18259187234166,"category":"North American Lager","city":"Qingdao","coordinates":[36.0663,120.383],"country":"China","ibu":29,"name":"Red Dragon Xtreme","state":"Shandong"},{"abv":5.5,"address":"79 North Eleventh Street","category":"North American Lager","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Please enjoy Brooklyn Oktoberfest, a rich, malty version of the beer brewed for the fall festival which originated in Germany with the betrothal of the Crown Prince of Bavaria in 1810. Brooklyn Oktoberfest is in the marzen style, an amber lager beer brewed in March and stored cold through the summer for sale in autumn.","ibu":80,"name":"Oktoberfest","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":9,"address":"127 Elm St., Unit C","category":"British Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":98,"name":"Bagpiper's Scottish Ale","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":36,"name":"Andelot Euphorique","state":"Oost-Vlaanderen"},{"abv":2.2089058378085227,"address":"180 - 14200 Entertainment Boulevard","category":"North American Lager","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":92,"name":"Vienna Lager","state":"British Columbia"},{"abv":10.63626954587983,"address":"Brandschenkestrasse 150","category":"German Ale","city":"Zrich","coordinates":[47.3642,8.5245],"country":"Switzerland","ibu":73,"name":"Löwen Weisse"},{"abv":7.9704552622036005,"address":"Dominikanerstrae 6","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":72,"name":"Aecht Schlenkerla Rauchbier Märzen","state":"Bayern"},{"abv":12,"address":"Franseplaats 1","city":"Nijmegen","coordinates":[51.8486,5.8639],"country":"Netherlands","ibu":43,"name":"Nieuw Ligt Grand Cru 2006"},{"abv":6.023259866375624,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","description":"0","ibu":24,"name":"Pale Ale \\\"á la Bushner\\\";\"3","state":"Wisconsin"},{"abv":7.602450786676362,"address":"800 LaSalle Plaza","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":33,"name":"Saison Goux","state":"Minnesota"},{"abv":13.570583452800824,"city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":25,"name":"Helles Naturtrub","state":"Nordrhein-Westfalen"},{"abv":7.2817047775800035,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":111,"name":"Mönchshof Original Pils","state":"Bayern"},{"abv":5.028314873311144,"address":"1525 St. Charles Avenue","category":"North American Lager","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":107,"name":"Lager","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":9.277499167065779,"address":"1500 Jackson Street","category":"North American Ale","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":44,"name":"Voyageur Extra Pale Ale","state":"Minnesota"},{"abv":5.5,"address":"425 South Melrose Drive","category":"German Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":44,"name":"Sweet Spot Hefe","state":"California"},{"abv":8.196373635896949,"address":"316 Main Street","category":"German Lager","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":64,"name":"Marzen Lager","state":"Iowa"},{"abv":4.3000001907,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Braggart Mead styled ale is light and refreshing with an essence of orange blossoms, pear, and honey in the aroma and a balanced fruity and clean finish. \n\n\nThis style was developed by our Brewmaster to have the perfect carbonation and crispness on our summer’s hot and humid Pennsylvania days.","ibu":97,"name":"Sophie's Sparkling Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.6233370361058552,"category":"Irish Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":9,"name":"Porter","state":"Nebraska"},{"abv":1.7816196625749492,"address":"10-1 Ginza 7-chome, Chuo-ku","category":"German Lager","city":"Tokyo","country":"Japan","ibu":110,"name":"Imported Black Stout Draft","state":"Kanto"},{"abv":14.877191179933192,"category":"North American Lager","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":86,"name":"Hefe Weizen","state":"Oregon"},{"abv":10.94168419754647,"category":"North American Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":4,"name":"Yellow Rose Cream Ale","state":"Texas"},{"abv":1.965657965950094,"category":"Other Style","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":0,"name":"Raspberry Weizen","state":"Oregon"},{"abv":14.199479994015583,"category":"North American Ale","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":7,"name":"Stout","state":"California"},{"abv":11.50375409012604,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":77,"name":"Burton Pale Ale","state":"California"},{"abv":3.4819575214786225,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":25,"name":"Founders Light","state":"Illinois"},{"abv":7.55123777871741,"address":"636 Massachusetts","category":"North American Ale","city":"Lawrence","coordinates":[38.9718,-95.2357],"country":"United States","ibu":62,"name":"Old Backus Barleywine 1997","state":"Kansas","website":"http://freestatebrewing.com/"},{"abv":4.431645930567532,"address":"Kreuzstrae 4-10","category":"North American Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":91,"name":"Obergärig / Münster Alt","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":6.381451815207381,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Strawberry Harvest Lager is a wheat beer made with real Louisiana strawberries.","ibu":76,"name":"Strawberry","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5.8000001907000005,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A new version of an American classic. Our Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast.","ibu":55,"name":"Pale Ale","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":7.5,"address":"254 Wilkins Street","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"“Robust, Dark and Smooth, hold on to your hat cause you’ll lose your feet on this one!” Brewed with pale, dark crystal, Munich, flaked barley, black and chocolate malts. Hops include Cascade, Crystal, Challenger and Perle.","ibu":30,"name":"Ridge Runner Barley Wine","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":8,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"The Andygator is a fearsome beast...much too big for any little bottle. Don't let his toothy grin, slightly sweet flavor and subtle fruit aroma fool you: this cold-blooded creature is a Helles Doppelbock that can sneak up on you. Sip, don't gulp and taste the wild of Abita Andygator","ibu":100,"name":"Andygator","state":"Louisiana","website":"http://www.abita.com/"},{"abv":7,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #20 has been dubbed Apollo Imperial Ale because of our experimentation with a new hop variety.\n\n \n\nApollo hops are high alpha acid with an intense aroma. Married with other high alpha hops, with almost two pounds of hops added per barrel produced, AIA has an intense staying power in the back of the throat. After a long discussion between Chris, John and the brewers, they dubbed this hop flavor stinky grapefruit with a hint of perfume. The dark color might lead you to believe the some malt may shine through; but no, the hops are the true player in this ale.\n\n \n\nScratch #20 has a dual role, also serving at The Drafting Room’s Anniversary Ale for 2009. We brewed a bit more to serve the brewery and The Drafting Room, but get it while when you see it. Before this intense hop flavor subsides, this beer will be sold out.","ibu":99,"name":"Scratch #20 2009 Apollo Imperial Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":1.8745182390898785,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":44,"name":"Canvas Back American Pale Ale","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":5.612566241906059,"address":"100 West Main Street PO Box 432","category":"Irish Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Named for our beloved State Park this Robust Porter draws its uniquely enticing roasted character from a thoughtful combination of malts. Generous hop additions ensure a satisfying beer drinking experience.","ibu":94,"name":"Poe Paddy Porter","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":3.2000000477,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A British-style mild ale. Milds are a common ale type in England where session ales are lower in alcohol but not low on flavor. Ours has a strong malt backbone and is very quaffable.","ibu":4,"name":"Arthur's Mild Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"An epic barleywine, made in the tradition of British Farmhouse Brewing. Lavished with a velvety blend of six different malts this is a warming beer with a lush mouthfeel. The complexities your discriminating palate will detect are ever changing as this barleywine matures. When young, an assertive hop character predominates and with age the beauty of the big malt balance unfolds.","ibu":57,"name":"Druid Fluid","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":11.756180216219985,"address":"636 East Main Street","category":"German Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"It is a good clean hefe.","ibu":95,"name":"Cask Hefe","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":5.3000001907,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Brewed with a special blend of domestic and Belgian malts for a delicate nut-like character, you'll love this Lager's rich taste and signature hop aroma. The exceptional full-bodied taste reflects our Brewery's extraordinary commitment to brewing beers of the highest standard of quality.","ibu":31,"name":"Saranac Season's Best","state":"New York","website":"http://www.saranac.com"},{"abv":11.800996784573751,"address":"310 Commercial Drive","category":"Other Style","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"These authentic Belgian-style ales are intensely sour, dry and complex. All three of the lambics - Raspberry, Blackberry and Black Cherry - are aged in oak casks for more than one year. 15 kg, give or take, of whole unpasteurized fruit is added to each 200 litre oak barrel of fermented beer. The naturally occurring wild yeasts cause a second, slow fermentation, breaking down the fruit sugars to total dryness.","ibu":26,"name":"Fruit Lambics","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":0.3093869152852935,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":56,"name":"Bare Knuckle Stout","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5999999046,"address":"One Busch Place","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Originally known as \"B to the E\";\"0","ibu":20,"name":"Bud Extra","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"category":"North American Lager","city":"Skopje","coordinates":[42.0038,21.4522],"country":"Macedonia, the Former Yugoslav Republic of","ibu":94,"name":"Skopsko","website":"http://www.pivaraskopje.com.mk/"},{"abv":4.5,"address":"544B W. Liberty St.","category":"North American Lager","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"Frank Duveneck was a famous Cincinnati painter who produced such masterpieces as Whistling Boy andOld Man In a Fur Cap. Our Dortmunder is a medium- bodied golden lager showcasing a delicious malt profile balanced with Noble German hops. This beer is designed to satisfy even the stodgiest of old beer curmudgeons!","ibu":37,"name":"Duveneck's Dortmunder","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.8000001907000005,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":57,"name":"Railyard Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.0999999046,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","ibu":45,"name":"Vichtenaar","state":"West-Vlaanderen"},{"abv":13.111259065824068,"address":"14 East Railroad","category":"North American Ale","city":"Kearney","coordinates":[40.6954,-99.0812],"country":"United States","ibu":29,"name":"Stout","state":"Nebraska"},{"abv":1.254406739655335,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":98,"name":"Light","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.5,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":37,"name":"Yellowjacket Pale Ale","state":"Washington"},{"abv":5.5,"address":"1514 NW Leary Way","category":"Irish Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":65,"name":"Nightwatch Dark Ale","state":"Washington"},{"abv":11.582196224129538,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":101,"name":"Schimmele Hefe Pils","state":"Baden-Wrttemberg"},{"abv":4.92805219698675,"address":"1110 Westloop Center","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":11,"name":"Bovine Belgian Winter Ale","state":"Kansas"},{"abv":7.673292520885655,"address":"7474 Towne Center Parkway #101","category":"German Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":107,"name":"EOS Hefeweizen","state":"Nebraska"},{"abv":5.9000000954,"address":"2501 Southwest Boulevard","category":"Other Style","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Nutcracker Ale is Boulevard’s holiday gift for real beer lovers. This hearty, warming brew is a classic winter ale, deep amber in color, with hints of molasses balanced by the “spiciness” of freshly harvested Chinook hops.","ibu":105,"name":"Nut Cracker Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.586296008545546,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","ibu":41,"name":"Columbus Bock","website":"http://www.stieglbrauerei.at/"},{"abv":8.712184285866673,"address":"233 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":36,"name":"Sheepshead Stout","state":"Wisconsin"},{"abv":6.397290167464337,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":6,"name":"Adler Bräu Cherry Creek Cherry Flavored Lager","state":"Wisconsin"},{"abv":5.1999998093,"address":"445 St.Paul Street","category":"North American Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":40,"name":"Genesee Cream Ale","state":"New York"},{"abv":4.409898655159827,"address":"12105 North Center Avenue","category":"North American Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":6,"name":"Whiskey Stout","state":"Oregon"},{"abv":3.0645699149851167,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":94,"name":"Christmas Ale","state":"Illinois"},{"abv":14.214260674603569,"address":"Westgate Street","category":"British Ale","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":59,"name":"Olde Suffolk","state":"Suffolk"},{"abv":4,"address":"639 Conner Street","category":"North American Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":73,"name":"Whose Ear? Red Ale","state":"Indiana"},{"abv":7.045406476493574,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":2,"name":"Caber Tossing Scottish Ale","state":"Wisconsin"},{"abv":9.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Brewed in the style of a Russian Imperial Stout. Strong, chocolatety and aggressively hopped with finest English hops.","ibu":22,"name":"Dragonslayer","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":14.442654797251631,"address":"16 North Brown Street","category":"North American Lager","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":29,"name":"Aussie Lager","state":"Wisconsin"},{"abv":5.1999998093,"address":"Chelsea Piers, Pier 59","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":39,"name":"Checker Cab Blonde Ale","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":5.793872429031896,"address":"Eigelstein 41","city":"Kln","coordinates":[50.9465,6.9563],"country":"Germany","ibu":56,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":7.1999998093,"address":"Grntenstrae 7","category":"German Lager","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":37,"name":"Doppel-Hirsch Bavarian-Doppelbock","state":"Bayern"},{"abv":2.1168456444488326,"address":"146 Snelling Avenue North","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":70,"name":"Sligo Red","state":"Minnesota"},{"abv":11.5,"address":"56 Market Street","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","ibu":83,"name":"Wheat Wine","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":9.1999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","description":"Hoppy? Brother, 471 IPA redefines hoppy. 471 is a small batch, limited edition ale that was created by our Brewmaster to separate the weak from the strong. 471 is a double IPA, that combines Pale, Munich, Caramel-30, Carapils and Torrified Wheat malts, with Chinook, Centennial, Simcoe and Fuggles hops. It has a big sweet mouthfeel, followed by more hoppiness than you've ever had at one time. Enjoy.","ibu":91,"name":"471 IPA","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A West Coast IPA. Our original single IPA made with Simcoe and Amarillo hops “in harmony.” 1.065 OG 45 IBU 7%ABV","ibu":60,"name":"Duet","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5,"address":"2401 Tulane Avenue","category":"North American Lager","city":"New Orleans","coordinates":[29.9606,-90.0871],"country":"United States","description":"Inspired by old-world brewing methods, this bewitching all-malt brew is a darkly rich, exotic lager, crafted with a touch of magical New Orleans spirit.","ibu":85,"name":"Blackened Voodoo","state":"Louisiana"},{"abv":6.919978336002951,"address":"3301-B East Fifth Street","category":"German Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"A fall classic, our Oaktoberfest emphasizes rich malt flavor. We use German malt and hops to give it an authentic Bavarian character. The rich, maltiness of this brew is a good match with spicy cuisine, as well as barbecue. Live Oak Oaktoberfest will certainly raise the level of enjoyment at your next fall gathering. Available September - December","ibu":76,"name":"Oaktoberfest","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":10.390537692882862,"address":"101 Ehalt St.","category":"North American Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":7,"name":"Greensburg Lager","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":2.120718909103947,"address":"121 North Market St.","category":"Other Style","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":50,"name":"Captain Selin's Cream","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"We wanted to see if we could grow hops at our brewery in Chico, California so we planted our own hop field selecting our prized Cascade and Centennial varieties along with some specialty hop varieties to experiment with. To our surprise, we not only could grow hops, we were also able to harvest them in late summer due to Chico’s ideal climate. \n\n\nChico Estate Harvest Ale is one of the very few estate harvest ales produced anywhere in the world today. All the hops in the beer are grown naturally on the premises of our brewery in Chico. We pick the hops ourselves and then take them directly to the brew kettle, without being dried, just after picking so they retain nearly all of their natural oils and resins. It is made with Cascade, Centennial and Chinook hops. Until now, this beer has only been available in draft. Starting this year, we will be bottling it on a very limited basis, with plans to expand its availability as we expand our Chico hop field in the coming years.","ibu":43,"name":"Chico Estate Harvest Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Rahr's Red is a delicious, medium-bodied red lager. Notes of caramel with a sound malt character. Not too hoppy, very smooth.","ibu":102,"name":"Rahr's Red","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":3.2401257615042067,"category":"North American Ale","city":"Jacksonville","coordinates":[30.3617,-81.6966],"country":"United States","ibu":32,"name":"Lone Palm Ale","state":"Florida","website":"http://www.landsharklager.com/"},{"abv":13.357357765865723,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":24,"name":"Édition 2005","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":44,"name":"Super Natural Oatmeal Stout","state":"Oregon"},{"abv":9.884649789472755,"address":"1415 First Avenue","category":"North American Lager","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":18,"name":"Weisse","state":"Washington"},{"abv":10.422097218437479,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":21,"name":"Pale Ale","state":"Washington"},{"abv":4.9000000954,"address":"1253 Johnston Street","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":6,"name":"Johnston Pilsener","state":"British Columbia"},{"abv":10.829928927048458,"address":"4301 Leary Way NW","category":"British Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":67,"name":"Wee Heavy Winter Ale","state":"Washington"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":28,"name":"Grand Cru 2006","state":"California","website":"http://alesmith.com/"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":78,"name":"Harvest Ale 2005 (Whisky)","state":"Manchester"},{"abv":8,"address":"Hollselund Strandvej 74","category":"Irish Ale","city":"Tisvildeleje","coordinates":[56.0746,12.1161],"country":"Denmark","ibu":3,"name":"Porter"},{"abv":14.327327034823202,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":119,"name":"Alt","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":3.9054436714705187,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":97,"name":"Jasper Lyte","state":"Michigan"},{"abv":8.116320358932205,"address":"100 Little Dam Road","category":"North American Lager","city":"Dillon","coordinates":[39.6282,-106.059],"country":"United States","ibu":72,"name":"Dam Straight Lager","state":"Colorado"},{"abv":13.543945279075825,"address":"412 North Milwaukee Avenue","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":31,"name":"Güdenkrisp Kölsch","state":"Illinois"},{"abv":5.1999998093,"address":"115 S. Fifth St.","category":"North American Ale","city":"Columbia","coordinates":[38.95,-92.3323],"country":"United States","description":"A great summer fruit beer, with 168 pounds of blackberry puree added to a light ale base. The blackberries add a distinct purple haze, and hopping is light to allow the berries to be the featured flavor. The ABV is 5.2% and hop bitterness is 22 BU's.","ibu":36,"name":"Blackberry Ale","state":"Missouri","website":"http://www.flatbranch.com"},{"abv":3.500912818612678,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","ibu":21,"name":"Strawberry Harvest Lager","state":"Louisiana","website":"http://www.abita.com/"},{"abv":4.5999999046,"address":"1705 Mariposa Street","category":"Other Style","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","description":"Anchor Summer is the first American wheat beer in modern times. Our first brew of this light and refreshing beer was in the summer of 1984.\n\n\nAnchor Summer is an all-malt beer, and over 50% of its malt comes from malted wheat. It is fermented with a Triticum aestivum, AKA wheat traditional top-fermenting \"ale\" yeast because we prefer the clean flavors developed by this yeast. We believe that this style best celebrates the refreshingly light flavor of malted wheat. You may notice that the head on this beer is unusually abundant, with a consistency similar to whipped egg whites. This is due to protein contributed by the wheat.\n\n\nThe brewers at Anchor are proud to have revived not only rich hearty dark beers, but also this light crisp style of a modern American wheat beer.\n\n\nSummer getaway Wheat malt contributes to an unusual lightness and dryness to the palate, and this—combined with the distinctive flavor of the wheat—makes for a perfect thirst-quenching beverage. It is the ideal drink for beer lovers who appreciate tradition and character in their beer, but also seek a lighter, refreshing style, perfect for warm weather.\n\n\n-http://www.anchorbrewing.com/beers/summerbeer.htm","ibu":96,"name":"Anchor Summer Beer","state":"California"},{"abv":7.8000001907000005,"address":"2401 Blake St.","category":"Irish Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Gonzo Imperial Porter is deep and complex. This turbo charged version of the Road Dog Porter is mysteriously dark with a rich malty body, intense roasted flavors, and a surprisingly unique hop kick. With Gonzo weighing in at 7.8% ABV, it will bite you in the ass if you don't show it the proper respect.","ibu":119,"name":"Gonzo Imperial Porter","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.1999998093,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"At the request of you hopheads, we produced this I.P.A. with a deep golden color, plenty of hop bitterness balanced by malt sweetness. Because of the extensive dry hopping, there's a floral and citrus hop finish. It's then lightly filtered to maintain the appropriate body and flavor. The beer features a combination of American, English and German malts to balance the large amount of hops. The HopFish also uses three hop varieties at five different times and has been dry-hopped for two weeks with 22lbs of Nugget whole leaf hops.","ibu":78,"name":"HopFish IPA","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6.13042275505109,"address":"124 Manhattan Beach Boulevard","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":19,"name":"Blonde","state":"California"},{"abv":0.01698463424802732,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":10,"name":"Carta Blanca","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":10.473630165542613,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":26,"name":"ESB","state":"California"},{"abv":10.64614665623051,"category":"North American Lager","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":88,"name":"Pilsner","state":"Texas"},{"abv":3.9800000191000002,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":74,"name":"Goudenband 1996","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":11.06583481605205,"category":"North American Ale","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":59,"name":"Pantown Pale Ale","state":"Minnesota"},{"abv":9.761858439874695,"address":"279 Springfield Avenue","category":"German Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":113,"name":"Octoberfest","state":"New Jersey"},{"abv":0.1195641115564472,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":88,"name":"Black River Brown","state":"New Jersey"},{"abv":5.0999999046,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":72,"name":"Meister Pilsener","state":"Hessen"},{"abv":5.466610757269467,"address":"57 Hamline Avenue South","category":"North American Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":70,"name":"Grand Marais Pale Ale","state":"Minnesota"},{"abv":14.899999619,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"The Beast is a seducer - accommodating, complicated, powerful, dark and created to last the ages. With a deep burgundy color and aromas of honey, nutmeg, mandarin orange and pineapple, this massive and challenging brew has flavors akin to a beautiful Carribean rum. Dates, plums, raisins and molasses are dominant in a rich vinous texture. Cellarable for 10+ years.","ibu":30,"name":"The Beast Grand Cru","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":1.072008016126681,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":3,"name":"Kasota IPA","state":"Minnesota"},{"abv":7.1999998093,"address":"24 North Pleasant Street","category":"British Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber in color, full-bodied strong ale with a prominent malt flavor delicately balanced with Goldings hops. Made with a hint of molasses, this beer is usually on tap for Super Bowl with a keg or two of the previous year's batch.","ibu":110,"name":"Half in the Bagpipe","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":1.190974951738204,"address":"233 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":64,"name":"Pull Chain Pail Ale","state":"Wisconsin"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":115,"name":"Belgian Burgundy Ale","state":"Hainaut"},{"abv":4.5,"address":"800 Vinial St.","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A spring fest beer that is amber in color, Penn Märzen has full flavor and body. Highly rated by the National Beverage Tasting Institure.","ibu":26,"name":"Penn Marzen","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":7.1999998093,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The Maibock style was traditionally produced in the winter and released in early May to celebrate the coming of Spring. This malty lager is deep golden in color and medium in body. The finish holds a bold sweetness that is balanced by a subtle hop flavor and aroma. \n\n\nWe will be releasing this beer every spring in celebration of our Anniversary.","ibu":77,"name":"Anniversary Maibock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":7.777601689623488,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":28,"name":"Ice","state":"Ontario"},{"abv":10.561221377806742,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":16,"name":"Stout","state":"California"},{"abv":1.6561026534899426,"address":"2920 North Henderson Ave","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":9,"name":"Cask Scotch Ale","state":"Texas"},{"abv":3.9000000954000003,"address":"2522 Fairway Park Drive","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A refreshing, flavorful filtered wheat beer. The perfect beer to accompany a meal or for a summer's day. The wheat contributes a lighter flavor while maintaining a rich body. The beer has a light hop profile -- just enough to give the beer balance and complexity. The light fruitiness is derived from a Kölsch yeast strain. A chill haze may be present, which is a characteristic of wheat beers. \n\n\nSaint Arnold Texas Wheat is best consumed at 40-45° Fahrenheit.","ibu":5,"name":"Saint Arnold Texas Weat","state":"Texas","website":"http://www.saintarnold.com"},{"abv":8.6000003815,"category":"British Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":49,"name":"Strong Scotch Ale","state":"Nebraska"},{"abv":5.6999998093,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish.","ibu":28,"name":"Sly Rye Porter","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.842800930116126,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Free Loader Double Red IPA was \"double-brewed\". [How's that for a catchy term that those BiG brewers can't TouCH. I love it, LoVe it, LOVE it.] The first batch of red IPA was mashed, sparged, and transferred to the kettle. The second batch of red IPA was mashed, sparged and transferred to the kettle using the sweet wort from batch one as its mash \"water\". Hmmm...using \"beer\" to make beer. Hence the name FREE LOADER. This Double Red IPA is just that--big, red, hoppy.","ibu":80,"name":"Free Loader Double Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.0712254062218796,"address":"130 W Gurley St","category":"Irish Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":109,"name":"Petrified Porter","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.5,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"By using an exact amount of rye, a grain seldom found in other micro brewed beers, the Rye Pale Ale acquires its signature taste. Made with five varieties of hops and a generous amount of specialty malts, it offers a complex flavor and aroma that is both aggressive and well balanced – a rare find among beers.\n\n\nThe Terrapin Rye Pale Ale was released in Athens, GA in April of 2002 at the Classic City Brew Fest. Six months later this beer which was sold only in Athens was awarded the American Pale Ale Gold Medal at the 2002 Great American Beer Festival, the most prestigious competition in North America. We hope you will agree with our peers in the brewing industry that this is truly one of the best pale ales in the country.","ibu":94,"name":"Terrapin Rye Pale Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":7.5,"address":"35 Fire Place","category":"Belgian and French Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Viszolay is a distinctly continental ale with a hint of the southwest. Belgian malt, Bavarian and Czech hops, and a secret blend of German and Belgian yeast strains provide this beer, inspired by the Trappist’s Dubbel style ale, with a strong traditional base, while a hint of New Mexico wildflower honey infuses it with that ethereal quality that we New Mexicans simply call, “enchanting”. Like the Trappist ales from which it sprung, Viszolay is light and refreshing. The hop’s subtle notes are overpowered by complex fruity flavors derived from the Belgian yeast, leaving Viszolay a very drinkable (yet rather potent) addition to the Santa Fe Brewing Company’s family of beers.","ibu":42,"name":"Viszolay Belgian","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":6.3299999237,"address":"104 Mill St.","category":"North American Ale","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"This American style amber ale will be our opening release and house beer for SCBC. AmericAle is smooth and diverse all in one shot. With a medium malt body and fresh hop aroma we hope you enjoy drinking it as much as we do making it.","ibu":9,"name":"South County American Ale","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":5.1999998093,"address":"1214 East Cary St","category":"British Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"If you don’t do dark beers, do yourself a favor and cancel that policy for this Oatmeal Stout. Keywords: Sweet Lusciousness; Roasty chocolate. Served on a nitro tap.","ibu":118,"name":"Richbrau Oatmeal Stout","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":13.270143191167827,"address":"RR 1 Box 185","category":"German Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"A German style lager. Light in color, with medium to full body and mild hop bitterness.","ibu":111,"name":"Mountaineer Maibock","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":5.0999999046,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"This medium bodied amber ale has a smooth, malt character with a hint of roasted (dark) malt flavor. This beer has just enough hops to balance and goes well with many foods.","ibu":82,"name":"Misfit Red","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5.5999999046,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":42,"name":"Gordon Biersch Czech Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":6.0999999046,"address":"540 Clover Lane","category":"North American Lager","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A German-style Munich Duenkle. Dark and smooth. Release date: February 1.","ibu":30,"name":"Dark Lager","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":13.60299746855107,"ibu":18,"name":"Beeston Chocolate, Black, Munich and Carastan malts. Perle and Centennial hops. Mocha Porter is available in a 12-ounce 6-pack, the classic 22-ounce bottle, and on draft.\""},{"abv":5,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our version of the traditional Irish Amber Ale. This beer combines the richness of German and Austrian malts with the delicate and spicy British hops for a taste worthy of the Red Rose City.","ibu":68,"name":"Celtic Rose","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":11.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Back by popular demand, our original \"Wild Dog Release\" is back, and this time it's for good. Double Dog Double Pale Ale is a generously hopped ale with a deep red color and pours with a nice frothy head. The abundance of hops will conjure some provocative aromas with hints of raisins and citrus.","ibu":56,"name":"Double Dog Double Pale Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"This beer is brewed in the Belgian Saison style (country farm house ale). A potent yet delicate ale, brewed with a unique Belgian yeast which develops a spicy, fruity flavor. Enormously complex. Available from May to around August.","ibu":18,"name":"Red Sky at Night","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":5.3000001907,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":108,"name":"Pilsner","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":9,"address":"St Lievensplein 16","city":"Sint-Lievens-Esse","coordinates":[50.8564,3.8845],"country":"Belgium","ibu":84,"name":"Kerst Pater Special Christmas Beer","state":"Oost-Vlaanderen"},{"abv":5.123929865582541,"address":"Hauptstrae 6","city":"Knigseggwald","coordinates":[47.9262,9.4204],"country":"Germany","ibu":78,"name":"WalderBräu Export","state":"Baden-Wrttemberg"},{"abv":7.5,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":78,"name":"Very Bad Elf Special Reserve Ale","state":"Oxford"},{"abv":5.345400258774675,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":60,"name":"Train Wreck IPA","state":"California"},{"abv":5.5,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","description":"Our award-winning IPA sparkles with effervescence, the result of natural-conditioning, a process where the beer is double-fermented in each bottle, keg or cask. Brewed with a blend of five hop varieties, BridgePort IPA presents a floral, citrusy aroma and full hop flavor, while downplaying the bitterness. The beer pours smooth in the glass, emitting its signature golden glow.","ibu":24,"name":"Bridgeport India Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":11.43329586202432,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":86,"name":"India Pale Ale","state":"California"},{"abv":6.8000001907000005,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":11,"name":"Torrey Pines IPA","state":"California"},{"abv":4.5999999046,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Most welcoming British pubs off a house ale or \"pub ale\" — this is ours. We use only the finest English barley, hops and yeast to create this classic English-style pale ale. It is noted for its nice malt flavor balanced with a medium hop presence. The pub ale is often referred to as our house \"session beer\" (a beer you can drink a number of and not fall off your barstool).","ibu":67,"name":"West Bank Pub Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A Golden Rye IPA.\n\nAn outstanding hop from New Zealand, Nelson Sauvin, is generously used throughout the brewing and dry-hopping of this unique beer. European rye is added for a smooth, malty addition to flavor. 1.065 OG 7%ABV","ibu":118,"name":"Nelson","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5,"address":"Hoogstraat 2A","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7668,4.3081],"country":"Belgium","ibu":7,"name":"Drie Fonteinen Kriek","state":"Vlaams Brabant","website":"http://www.3fonteinen.be/index.htm"},{"abv":4.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","description":"ESB was launched into the Fuller's family in 1971, as a winter brew to replace a beer named Old Burton Extra. The potential of the beer was soon realised and ESB was installed as a permanent fixture, creating an immediate impact. \n\n\nNot only was it one of the strongest regularly brewed draught beers in the country (at 5.5% ABV), it was also one of the tastiest, and as the awareness of the beer grew, so did its popularity. ESB's reputation was soon enhanced after being named CAMRA's (Campaign for Real Ale) Beer of the Year in 1978, and the beer has not stopped winning since! \n\n\nWith three CAMRA Beer of the Year awards, two World Champion Beer awards, and numerous other gold medals to speak of, ESB is, quite simply, the Champion Ale.","ibu":63,"name":"Fuller's ESB","state":"London","website":"http://www.fullers.co.uk/"},{"abv":5.8000001907000005,"address":"2501 Southwest Boulevard","category":"German Lager","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard’s fall seasonal beer, Bob’s ’47 Oktoberfest is a medium-bodied, dark amber brew with a malty flavor and well-balanced hop character. With this Munich-style lager we solute our friend Bob Werkowitch, Master Brewer and 1947 graduate of the U.S. Brewer‘s Academy. Available from September through October in bottles and on draught.","ibu":44,"name":"Bob's '47 Oktoberfest","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":10.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A massively hopped Imperial IPA brewed to celebrate Valley Brews 10th anniversary. 1 pound of hops were added every 10 minutes during a 100 minute boil, a total of 10 different boiling hops. 4 different fresh hops were used in the hopback and then the beer was passed through a chamber containing 10 lbs of fresh hops on the way from the serving tanks to the bar taps. Hopperiffic.","ibu":103,"name":"Uberhoppy Imperial IPA","state":"California","website":"http://www.valleybrew.com/"},{"abv":14.269034077056894,"address":"2050 Yavapai Dr","category":"German Lager","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":9,"name":"Oak Creek Micro Light","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":8.1000003815,"address":"11197 Brockway Road","category":"Belgian and French Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"There are hundreds of Trappist Monasteries in the world, many of them make fruitcake. This beer is not made by Monks nor does it resemble fruitcake. Furthermore, Truckee has no Trappist Monastery and that, my friend, is why we at FiftyFifty bring you Trifecta. This is one of FiftyFifty's seasonal ales, and is a high alcohol Belgian style beer. Brewed with inspiration from Belgian Trappist Ales, Trifecta also includes locally grown Purple Sage Honey. With a complex spiciness tempered by the sweeter notes from the sage honey, flavors of spicy sage, alcohol, and mild malt sweetness are apparent, and sage and clove like aromas predominate. Coming in at over 8%, this beer is deceptively strong.","ibu":42,"name":"Trifecta Belgian Style Tripel","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":14,"name":"Oak Aged Unearthly Imperial Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"We brewed this traditional witbier with orange peel and coriander, and then added a hint of blackberry. The flavor is very complex with malt and cereal notes, intense spice and citrus flavors and a smooth, sweet/tart finish. It will be available in January in its own 6-pack and in the Samuel Adams® Brewmaster's Collection Variety 6 & 12-packs.","ibu":77,"name":"Samuel Adams Blackberry Witbier","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":0.42103090830794665,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":21,"name":"Prohibition Pale Ale","state":"California"},{"abv":3.524133377646409,"category":"North American Ale","city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":0,"name":"Brown Ale","state":"Colorado"},{"abv":11.800000191,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Grand Champion in the 2000, and again in 2004 at United States Beer Tasting Championship, Weyerbacher QUAD is the first quadrupel style beer to be commercially brewed and bottled in the United States.\n\n\nIn December 2002 QUAD won Mid-Atlantic Champion at the USBTC for the third year in a row.\n\n\nMassively big and delicious, QUAD is an elegant and dark ale. Rich with complexity and flavor, try savoring it after a long day or during a fine dinner. You also might enjoy it as an aperitif or as an accompaniment to a dessert, but QUAD stands alone quite well. We recommend enjoying QUAD in a brandy snifter or wineglass so you can drink in the aroma of this fine elixir. QUAD, with an alcohol content of 11.8% (by volume) is the strongest beer we make, so please pay proper accord as you enjoy it.\n\n\nAs with any higher alcohol beers, QUAD will be at its best after a period of 6 or 12 months in the bottle, perhaps longer. We expect a shelf life of 3-5 years, but go ahead, we know you can't wait (we couldn't either). Enjoy one now, and another every month or two, and you'll be truly amazed as QUAD gains smoothness and complexity over time as it ages.","ibu":112,"name":"Quad","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":2.8833485806623305,"address":"3410 Sassafras Street","city":"Pittsburgh","coordinates":[40.4616,-79.9653],"country":"United States","ibu":77,"name":"Evil Eye Ale","state":"Pennsylvania"},{"abv":12.428597687823864,"category":"North American Ale","city":"Emeryville","coordinates":[37.8313,-122.285],"country":"United States","ibu":58,"name":"Amber","state":"California"},{"abv":1.2787347776797697,"address":"91 South Royal Brougham","category":"German Lager","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":67,"name":"Oktoberfest","state":"Washington"},{"abv":8.284215898634107,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":94,"name":"Hard Core Crisp Apple Cider","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":91,"name":"N.W. Pale Ale","state":"Washington"},{"abv":10.39554865115475,"address":"Rue Maurice Grevisse 36","city":"Habay-Rulles","coordinates":[49.7185,5.5571],"country":"Belgium","ibu":44,"name":"Bière de Gamme","state":"Luxembourg"},{"abv":4.8000001907000005,"address":"Coppermines Road","city":"Coniston","country":"United Kingdom","ibu":113,"name":"Old Man Ale","state":"Cumbria"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":26,"name":"Harvest Ale 2005 (Calvados)","state":"Manchester"},{"abv":4.3000001907,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":33,"name":"Schwarzbier","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":2.930806516742781,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":86,"name":"Sandbagger Gold","state":"Montana"},{"abv":10,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":105,"name":"16","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.117085808516652,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Maple syrup is added to each barrel of Maple Nut Brown Ale to impart roasted sweetness balancing the nut flavor produced by chocolate malts.","ibu":107,"name":"Maple Nut Brown Ale Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Exactly what it says, Bud Light and Lime. Brewed in Georgia.","ibu":18,"name":"Bud Light Lime","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.5,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A holiday ale brewed with honey and spiced with fresh ginger and cinnamon. Availability, November to December.","ibu":20,"name":"Christmas Ale","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":6,"address":"529 Grant St. Suite B","category":"North American Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A Traditional German Lager brewed with all German grain & yeast. Very drinkable.","ibu":61,"name":"Labrador Lager","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9.646929746491809,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Let Battle Commence... Trafalgar is a Gold Medal Award winning bottle conditioned India Pale Ale brewed to a 19th Century recipe. Listed in the Top 500 Ales in the World, Trafalgar measures 6% ABV. Brewed in the Royal Forest of Dean at Freeminer Brewery in the UK and distributed by Rogue Ales in the US.\n\n\nTrafalgar IPA is a true India Pale Ale, brewed to an original 19th Century recipe. IPA's were brewed at high APV and heavily hopped to enable their preservation on the long journey to the colonies from England. This Ale is brewed from the oldest working traditional floor maltings in Warminster, Wiltshire. The hops are traditional \"Goldings\" variety grown around Ledbury, Herefordshire as they have been for centuries.","ibu":2,"name":"Trafalgar IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A Belgian - Style Pale Ale. The Belgian yeast produces flavors of cloves, banana, and other spices that meld perfectly with the malt and hops. Ingredients: Pilsner Malt, Saaz Hops, Blegian Yeast, Free Range Cascade Water.\n\nNo Chemicals, Additives or Preservatives.","ibu":30,"name":"Golden Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"HazelNut Brown Nectar is a nutty twist to a traditional European Brown Ale. Dark brown in color with a hazelnut aroma, a rich nutty flavor and a smooth malty finish. Dedicated to the homebrewer in each of us--the homebrewer who inspired this creation is Chris Studach, a friend of Rogues resident wizard John Maier, who added a Northwest twist to the classic style by adding hazelnuts for the host homebrew at the 1993 American Homebrewers Association convention. Chris put the nut in nut brown!\n\n\nHazelnut Brown Nectar Ale is a blend of Great Western 2-row Pale, Munich, Hugh Baird Brown, Crystal 80 and Crystal 135, Carastan, and Beeston Pale Chocolate malts; hazelnut extract; Perle and Saaz hops. HazelNut Brown Nectar is available in a 22-ounce bottle, a special commemorative 3-litre bottle with ceramic swing-top, and on draft.","ibu":100,"name":"Hazelnut Brown Nectar","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"5429 Shaune Drive","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Based on the traditional style of Kölsch beer brewed in Cologne, Germany.\n\n\nAlaskan Summer Ale balances a softly malted palate with the clean freshness of Hallertauer hops. In the tradition of the style, neither overpowers the other. Both hops and malt come together to refresh and renew the palate. The straw-gold color and easy drinkability are an enjoyable way to celebrate summer.\n\n\nAlaskan Summer Ale is made from glacier-fed water and a generous blend of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall Juneau receives each year.","ibu":79,"name":"Alaskan Summer Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":103,"name":"Original","state":"Nordrhein-Westfalen"},{"abv":4.5999999046,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Dark Island is an iconic beer: a standard-bearer for traditional Scottish ales. In cask, this beer has twice won CAMRA’s Champion Beer of Scotland.\n\nOn the nose, this dark beer offers bitter chocolate, figs, toffee and hints of fruit.\n\n\nOn the palate, this resolves into beautiful, silky-smooth, coffee-and-chocolate flavours, followed by figs, dates and dried fruits, with a very appealing, lingering aftertaste of fruits and hop bitterness.","ibu":8,"name":"Dark Island","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":10.329009438047441,"address":"21290 Center Ridge Road","category":"North American Ale","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":14,"name":"Bombardier Brown","state":"Ohio"},{"abv":4.301624403895118,"address":"6515 Kingston Pike","category":"North American Ale","city":"Knoxville","coordinates":[35.932,-84.012],"country":"United States","ibu":30,"name":"Cherokee Red Ale","state":"Tennessee"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":89,"name":"Red Lager","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.714344319163715,"address":"114 North Main Street","category":"Other Style","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":18,"name":"Apple Ale","state":"Michigan"},{"abv":9.5,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Double the malt, double the hops, and double the flavor of the original Rye Pale Ale recipe. (Hence the name Rye Squared.) With its mammoth hop aroma, bitterness and flavor, this beer is not for the faint at heart. The Rye Squared clocks in at a hefty 9.5% ABV so double your pleasure and double your fun because Terrapin went a little crazy with this one!","ibu":19,"name":"Rye Squared","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":3.8726627591964267,"address":"66 East Eighth Street","category":"Other Style","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A refreshing wheat ale, Zoomer is brewed to quench your summer thirst. American-grown wheat provides Zoomer's straw color and its soft, clean body. With subtle, yet flavorful hints of citrus fruit in its finish, Zoomer is the perfect companion to all things summer. Food pairings include artisan cheeses, fresh greens, fish and chicken.","ibu":69,"name":"Zoomer","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":11.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"LUST Belgian-style Dark Strong Ale stirs shameless desire in men (and women) with its captivating appearance, enticing aroma and satisfying flavors. Aged in bourbon oak barrels for twelve months, Lust is worldly, smooth and decadent. Sour cherries contribute tartness while brettanomyces brings muskiness to this naughty brew. \n\n\nThe pleasure you derive from this dark beer is beyond words. \n\n\nLUST. Regret. Repent. Repeat.","ibu":44,"name":"Lust","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.454998048520317,"address":"Franz-Brombach-Strae 1-20","category":"German Ale","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":88,"name":"Weißbier Pikantus","state":"Bayern"},{"abv":7.395636655841078,"address":"110 Wisconsin Dells Parkway South","category":"German Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":102,"name":"Oktoberfest","state":"Wisconsin"},{"abv":4.96710365936635,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":72,"name":"Hacker-Pschorr Dunkel Weisse","website":"http://www.paulaner.com/"},{"abv":6.6999998093,"address":"11197 Brockway Road","category":"Irish Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"Sustenance to get you through those long, cold winters, the Donner Party Porter is another of FiftyFifty's flagship beers. Reminiscent of dark chocolate, espresso, and dark dried fruits with a long complex finish, this beer is good for one of those nights where you've dug yourself into a snow bank because the ski trip didn't go quite as planned. Deep brown with mahogany highlights, the hops and malt are very well balanced leaving one to contemplate the myriad of flavors as the beer warms. Moderate to slightly heavy, this beer is heaven in a glass.","ibu":55,"name":"Donner Party Porter","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":4.8000001907000005,"address":"Bergstrae 2","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":17,"name":"Hell","state":"Bayern"},{"abv":7.233379399320523,"address":"The Eagle Maltings","category":"British Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":80,"name":"Old Devil","state":"Oxford"},{"abv":6,"category":"Irish Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":92,"name":"Porter","state":"Wisconsin"},{"abv":1.8275930959829878,"category":"German Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":117,"name":"Hoptoberfest","state":"Washington","website":"http://www.redhook.com/"},{"abv":2.219422843134332,"address":"10450-L Friars Road","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":5,"name":"Old 395 Barleywine","state":"California"},{"abv":8.418415890853352,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":96,"name":"Speciale Noël","state":"Luxembourg"},{"abv":0.9870983628821739,"address":"30 Butterfield Road","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":114,"name":"Prairie Path Golden Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":4.9000000954,"address":"Oberer Markt 1","city":"Neuhaus","coordinates":[49.6283,11.5498],"country":"Germany","ibu":76,"name":"Original Lager","state":"Bayern"},{"abv":5.1999998093,"address":"Mill Lane","city":"Skegness","coordinates":[53.1691,0.3169],"country":"United Kingdom","ibu":113,"name":"Victory Ale","state":"Lincoln"},{"abv":8.385239563655405,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":77,"name":"Best Brown","state":"California"},{"abv":14.58582672345471,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":114,"name":"IPA","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":2.8825288181951727,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":29,"name":"Bourbon Barleywine","state":"Wisconsin"},{"abv":6.7267416077899,"address":"Circunvalacin Sur Km. 3 1/2","category":"North American Lager","city":"Holguin","country":"Cuba","ibu":99,"name":"Fuerte"},{"abv":5.3000001907,"address":"Alte Akademie 2","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":3,"name":"Hefeweissbier Dunkel","state":"Bayern"},{"abv":2.7531836350569208,"address":"Broughton","category":"North American Ale","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":94,"name":"Kinmount Willie Stout","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":0.18480198294449024,"address":"7734 Terrace Avenue","category":"German Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":112,"name":"Capital Weizen Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":12.362273085836055,"address":"1107 Railroad Avenue","category":"German Lager","city":"Bellingham","coordinates":[48.7475,-122.481],"country":"United States","ibu":105,"name":"Doppel Bock","state":"Washington"},{"abv":8,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":101,"name":"La Quintine Blonde","state":"Hainaut"},{"abv":1.7963625634226432,"city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":1,"name":"Original ESB","state":"Ohio"},{"abv":12.985992662322289,"address":"7734 Terrace Avenue","category":"German Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":84,"name":"Capital Kloster Weizen","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.824098972214909,"address":"412 North Milwaukee Avenue","category":"Irish Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":87,"name":"Porter","state":"Illinois"},{"abv":4.491241550037127,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":43,"name":"Red Amber Ale","state":"Missouri"},{"abv":5.966309938039536,"address":"4301 West Wisconsin","category":"German Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":54,"name":"What the Helles Bock","state":"Wisconsin"},{"abv":6.222691381220429,"address":"RR 1 Box 185","category":"Belgian and French Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"A Belgian-style summer favorite. Malted wheat, Pale, Munich and Cara Vienna malt, then moderately hopped with Saaz and a double dose of Hallertau. Served unfiltered with an orange wedge, this is fun in a glass.","ibu":22,"name":"Iron Arm Belgian Style Wheat","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":4.581758596325781,"address":"One Busch Place","category":"German Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":27,"name":"Michelob Golden Pilsner","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Gratefully dedicated to the Rogue in each of us. In the early 1990s Dead Guy Ale was created as a private tap sticker to celebrate the Mayan Day of the Dead (November 1st, All Souls Day) for Casa U Betcha in Portland, Oregon. The Dead Guy design proved popular and was incorporated into a bottled product a few years later with Maierbock as the elixir. Strangely, the association with the Grateful Dead is pure coincidence.\n\n\nDead Guy is a German-style Maibock made with Rogues proprietary \"PacMan\" ale yeast. It is deep honey in color with a malty aroma, rich hearty flavor and a well balanced finish. Dead Guy is created from Northwest Harrington, Klages, Maier Munich and Carastan malts, along with Perle and Saaz Hops. Dead Guy Ale is available in 22-ounce bottles, 12-ounce 6-pack, and on draft.","ibu":117,"name":"Dead Guy Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"1100 New York Ave, NW","category":"North American Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center.","ibu":9,"name":"Amber Waves","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":4.5,"address":"8111 Dimond Hook Drive","category":"German Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This is our perennial summer seasonal beer, first brewed in Summer 1995 when we opened. \n\n\nAffectionately called \"Spunky and Chunky\", Old Whiskers Hefeweizen is a traditional Bavarian-style unfiltered wheat beer. Created with equal parts malted wheat and pale two-row malt, Old Whiskers is lightly hopped to style. A unique Bavarian strain of yeast imparts a clove- or banana-like aroma and flavor. (We swear we did not put cloves into the brew. It is the magical powers of The Yeast.) Old Whisker is delicious and refeshing--the perfect summer quencher, served with or without a slice of lemon.","ibu":76,"name":"Old Whiskers","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.8000001907000005,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Our Wit (white) beer is an old style Belgian wheat-ale, spiced with Curacao bitter orange peel and corriander. Light and exotic... A party in your mouth!","ibu":62,"name":"Wild Wacky Wit","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":7,"address":"6 Verkhny per., d. 3","category":"Other Lager","city":"St. Petersburg","country":"Russia","description":"appearance: deep, dark brown to black, deep tan head\nsmell/taste: sweet, malty, roasted coffee, molasses\nfull-bodied, smooth, minimal carbonation","ibu":20,"name":"Baltika 6","website":"http://baltikabeer.com/"},{"abv":6,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Extra Special Bitter, or ESB, were the benchmark beers for British brewers to serve to their special customers. Brewed with British pale and crystal malt, this reddish copper beer finishes with a subtle dose of English Fuggles hops.","ibu":23,"name":"Barrel Aged Synapse ESB","state":"Michigan","website":"http://liverybrew.com/"},{"abv":11.00078467201148,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":18,"name":"Capital U.S. Pale Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.5,"address":"2713 El Paseo Lane","category":"German Lager","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A stronger German lager brewed with lots and lots of Munich malt for a toasty bready like aroma.","ibu":70,"name":"Sacramento Bock","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":7.5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":35,"name":"Odd Notion Winter 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":14.980816757678197,"address":"1621 Dana Ave.","category":"Other Style","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","ibu":30,"name":"#42 Cream Ale","state":"Ohio","website":"http://www.listermann.com/"},{"abv":8.8999996185,"address":"Roeselarestraat 12b","category":"Belgian and French Ale","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":69,"name":"Bos Keun","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":6.395583437209863,"address":"Rua Bahia, 5181","category":"German Lager","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":60,"name":"Eisenbahn Escura","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":7,"address":"1777 Alamar Way","category":"North American Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":72,"name":"Certified Organic India Pale Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":11,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":111,"name":"Malheur Brut Reserve","state":"Oost-Vlaanderen"},{"abv":6.5,"address":"Papenstrae 4-7","category":"German Lager","city":"Einbeck","coordinates":[51.8162,9.8643],"country":"Germany","ibu":50,"name":"Ur-Bock Hell","state":"Niedersachsen"},{"abv":5.654856229544066,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":102,"name":"Capital Brown Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":5.336454940219674,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":9,"name":"Beer","state":"Bremen"},{"abv":6.5,"address":"Rijksweg 16","category":"German Lager","city":"Gulpen","coordinates":[50.8109,5.9213000000000005],"country":"Netherlands","ibu":71,"name":"Dort"},{"abv":14.094861798517048,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":51,"name":"Dark Walnut Stout","state":"Wisconsin"},{"abv":7,"address":"14 Wickliffe Street","category":"British Ale","city":"Dunedin","coordinates":[-45.872,170.518],"country":"New Zealand","ibu":64,"name":"Old 95"},{"abv":4.1999998093,"address":"808 West Main Street","category":"North American Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":9,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":6.3865391621451995,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":112,"name":"El Niño IPA","state":"Minnesota"},{"abv":9,"category":"British Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":65,"name":"Anniversary Ale","state":"Minnesota"},{"abv":13,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Gargantuan Russian Stout brewed with coffee, molasses, and honey.","ibu":53,"name":"Dark Lord Russian Imperial Stout","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":1.3789544585520852,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"The Cappucino of beers. Roasty, smooth and sweet.\n\nSamuel Adams® Cream Stout is a true cream stout, balancing body and sweetness with the natural spiciness of grain and hand selected English hops. Our Brewers use generous portions of roasted chocolate and caramel malts as well as unroasted barley to impart a fullness of body, a roasty malt character and rich, creamy head. Its dark mahogany color make it almost as easy on the eyes as it is on the palate.","ibu":44,"name":"Samuel Adams Cream Stout","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":13.12314688892375,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":46,"name":"Chapeau Pêche Lambic","state":"Vlaams Brabant"},{"abv":5.5,"address":"Markt 1","city":"Ichtegem","coordinates":[51.0923,3.01],"country":"Belgium","ibu":79,"name":"Vlas Kop","state":"West-Vlaanderen"},{"abv":13.696115140013614,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":118,"name":"Allgood Amber Ale","state":"Colorado"},{"abv":8,"address":"515 Jefferson Street SE","category":"German Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":1,"name":"Detonator Doppelbock","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":8.46825612425323,"address":"618 S. Wheeling Ave","category":"Other Style","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":60,"name":"Sundown Wheat","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":7.785519555909807,"ibu":7},{"abv":6.414487240532224,"city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":79,"name":"Rudolf Red Barleywine","state":"California"},{"abv":1.2708386197437282,"address":"75-5629 Kuakini Highway","category":"North American Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":7,"name":"Stout","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":7.396127780557929,"city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":12,"name":"Macadamia Nut Brown Ale","state":"Hawaii"},{"abv":6.9360664900186295,"category":"North American Lager","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":66,"name":"Honey Wheat","state":"North Carolina"},{"abv":10.80430672376201,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":67,"name":"Original Munich Premium Lager","website":"http://www.paulaner.com/"},{"abv":11.31485170442745,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Save Our Shores (S.O.S) is an unfiltered weizen pils and has a brilliant golden color. A Charitable Pilsner","ibu":95,"name":"S.O.S","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Originally brewed for thirsty British troops stationed on the subcontinent of India, India Pale Ales had to withstand the sea voyage around Africa. Brewers need to take full advantage of two preservatives at the time: hops and alcohol. They increased their hopping rates, doubled their malt useage to increase alcohol content, and dry-hopped the brew before it set out on its voyage.\n\nOur Imperial IPA carries on this tradition- and then some! The fruity and citrusy hop aroma intermingles perfectly with an assertive malty backbone. Our brewers added a generous supply of hops to this brew throughout the entire process to provide an enormous hop flavor and balance the elevated alcohol content.\n\n\nThis beer is 11% alcohol by volume, and 135 IBU!","ibu":100,"name":"Otter Creek Imperial India Pale Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":4.004623156153984,"address":"Kendlerstraße 1","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This dark wheat beer specialty is a natural and spicy beer brand.","ibu":1,"name":"Weizengold Dunkel","website":"http://www.stieglbrauerei.at/"},{"abv":5,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"Other Style","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":70,"name":"Baltika #8","state":"Sankt-Peterburg"},{"abv":9.3999996185,"address":"1245 Puerta del Sol","category":"North American Ale","city":"San Clemente","coordinates":[33.4577,-117.589],"country":"United States","description":"Here at Left Coast Brewing Co. we pride ourselves on being one of the first breweries to pioneer a Double IPA style beer. In 2003, we brewed our first Double IPA, and haven't looked back since. This hop monster uses Premium American 2- Row and a touch of light crystal malt to create a solid malt foundation. The recipe calls for hops to be used in every step of the brewing process; in the mash, in a hop back, in the fermenter, and in the bright tanks. We use hop extract, hop pellets and hop flowers, hence the name Hop Juice. Hop Juice spends more than 4 weeks dry hopping in the fermenter and the bright beer tank. It is approximately 9.4% abv and has massive IBUs. Hop usage is over 4lbs per barrel. Hopeheads, step up to the plate!","ibu":16,"name":"Hop Juice Double IPA","state":"California"},{"abv":6.4000000954,"address":"1214 East Cary St","category":"Irish Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"This dark brown porter has more bark than bite. It is actually fairly sweet and fruity with a nutty/chocolate flavor as well. Highly recommended.","ibu":33,"name":"Big Nasty Porter","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":7.5,"address":"905 Line Street","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","ibu":2,"name":"Weyerbacher Fireside Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":14.003363857891273,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Turbodog is a dark brown ale brewed with Willamette hops and a combination of British pale, crystal and chocolate malts.\n\n\nThis combination gives Turbodog its rich body and color and a sweet chocolate-toffee like flavor. Turbodog began as a specialty ale but has gained a huge loyal following and has become one of our three flagship brews.\n\n\nJust a bit stronger than our other brews, so . . .beware of the dog!","ibu":32,"name":"Turbodog","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5.0999999046,"address":"91 S Royal Brougham Way","category":"Other Style","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma. \n\n\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.","ibu":12,"name":"Pyramid Apricot Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":4.9000000954,"address":"91 S Royal Brougham Way","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Inspired by the traditional Kölsch style beers of Cologne, Germany, Curve Ball boasts a clean, crisp slightly herbal taste and a lighter body. With its sporty packaging and refreshing taste, Curve Ball is the perfect accompaniment to summer grilling and ballpark outings. Try swingin' at it on a hot summer day!","ibu":45,"name":"Curve Ball","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":7.636629210307252,"address":"1516 Sansom Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":54,"name":"3C Extreme","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":9.5,"address":"Krommekeerstraat 21","category":"Belgian and French Ale","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":113,"name":"Urthel Hop-It","state":"West-Vlaanderen"},{"abv":4.965092686837805,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":82,"name":"Dry Hopped IPA","state":"Washington"},{"abv":4.8000001907000005,"address":"7160 Oliver Street","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":0,"name":"Blonde Draft","state":"British Columbia"},{"abv":7.6999998093,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","ibu":109,"name":"Grotten Flemish Ale","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":13.617489064362127,"address":"113 North Broadway","category":"North American Lager","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":102,"name":"Whitetail Wheat","state":"Montana"},{"abv":7,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":11,"name":"Kriek","state":"West-Vlaanderen"},{"abv":12.38629583911894,"address":"138 Nassau Street","category":"North American Lager","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":57,"name":"Honey Wheat","state":"New Jersey"},{"abv":5.547346949289354,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":94,"name":"Old Krogh Oatmeal Stout","state":"New Jersey"},{"abv":0.7472735768823258,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":119,"name":"Ungespundetes","state":"Bayern"},{"abv":5.6999998093,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":8,"name":"Braunbier","state":"Bayern"},{"abv":7.769014702720215,"address":"Laurenziplatz 20","city":"Bamberg","coordinates":[49.8851,10.8823],"country":"Germany","ibu":98,"name":"Lagerbier","state":"Bayern"},{"abv":14.772735588999177,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":119,"name":"Irish Red Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6.5,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":106,"name":"French Country Spring Beer","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":13.25262642839895,"address":"906 Washington Street","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":101,"name":"Cask ESB","state":"California"},{"abv":4.5999999046,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A dry Irish-style stout served via nitrogen. Black Mo is a very smooth and creamy beer with a pleasant roasted malt character.","ibu":95,"name":"Black Mo Stout","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":0.7485974951337471,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"A rich, dark and malty ale with plenty of roasted barley flavor. Blackbird has a silky smooth oatmeal finish. It is one of our NEW flagship's and is now available year round.","ibu":93,"name":"Blackbird Oatmeal Stout","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":1.4230439983292265,"category":"Irish Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":115,"name":"Blacksmith Porter","state":"Oregon"},{"abv":10.056924776319358,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":34,"name":"IPA Series (Zeus)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6.1999998093,"address":"1680-F East Waterloo Rd.","category":"Irish Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Dark, robust and silky-smooth, with many flavors of roasted, toasted and caramel malts. Porter is an old-world beer style, so popular that it helped start the industrial revolution. Taste the history.","ibu":35,"name":"Silk Porter","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"AB43 8UE","category":"North American Lager","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":96,"name":"Hop Rocker","website":"http://brewdog.com/"},{"abv":5.0999999046,"address":"225 Heritage Ave","category":"Other Style","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Smuttynose Pumpkin Ale is our homage to the craft and heritage of America’s brewers. Recipes calling for the use of pumpkins in beer date back to early colonial times, when brewers sought to extend their supply of costly imported malt with locally grown ingredients, such as squash and “pompions.”\n\n\nIn that spirit, we brew our ale with the addition of pumpkin to the mash, along with traditional spices to create a delicious American original.","ibu":17,"name":"Smuttynose Pumpkin Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.25,"address":"35 Fire Place","category":"Other Style","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A true Bavarian wheat yeast, sixty percent wheat malt, and German hops make Santa Fe Wheat Beer as true to the style as any American rendition can be. German Wheat Beer, with its hints of banana and clove, its delectable, spicy, hops, and its pale golden color, is becoming increasingly popular in America’s craft brewing world, and with good reason: wheat beers are both light enough to please light beer drinkers, and complex enough to please true micro-brew connoisseurs. To mimic a classic German Hefeweisen, after pouring your Santa Fe Wheat Beer into a glass, swirl the last few drops in the bottle to loosen the yeast from the bottom, then pour the yeast over the top of your beer.","ibu":81,"name":"Santa Fe Wheat","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":13.71249538686995,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":58,"name":"Timmermans Kriek","website":"http://www.anthonymartin.be/"},{"abv":15,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is an Imperial Stout that is Brewed to great strength and complexity. We then gently age that beer in Elaigh Craig 13 1/2 year old Bourbon Barrels for 1 yr. and then primed and bottled to bottle condition for continued aging and celler life. Black Magick should be able to be aged up to about 5 years, to heighten the complexity and smooth nature of this beer. This beer should be opened to breath, pour into snifter and enjoy at 55-60 F. \n\n\nThis is a truly Barrel aged ale and is not to have a large carbonation. We bottle condition it to achieve cask like characteristics.","ibu":96,"name":"Black Magick","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":5.4000000954,"address":"2713 El Paseo Lane","category":"North American Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A malty dark ale wtih ale with a chocolate and biscuit like flavor and balanced finish.","ibu":117,"name":"Sacramento Nut Brown Ale","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":6,"address":"1705 Mariposa Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","description":"San Francisco's famouse Liberty Ale was first brewed on the 18th of April, 1975 to celebrate the 200th anniversary of Paul Revere's historic ride. It is virtually handmade by the brewers of Anchor Steam Beer in one of the smallest and most traditional breweries in the world. Liberty Ale is made with the finest barley malt, fresh, whole hops, top fermenting yeast, pure water and the simple natural methods which reflect our exceptional respect for the ancient art of brewing. It is \"dry hopped,\" a classic ale tradition, and slowly completes its fermentation in sealed vats in our cellars. This unique process creates Liberty Ale's distinctive bouquet and uncommonly delicate, entirely natural carbonation.","ibu":63,"name":"Liberty Ale","state":"California"},{"abv":12.94248910076827,"address":"1634 18th Street","category":"North American Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"This blonde beer has a very light body and mild flavors of hops and pale malts. A hint of caramel malt gives color to this popular choice for craft beer newcomers","ibu":102,"name":"Light Rail Ale","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":3.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Our unique contribution to the fruit ale category features the nutty quench of wheat ale combined with the delightful aromatics and subtle fruit flavor contributed by Maine wild blueberries.","ibu":91,"name":"Sea Dog Blue Paw Wheat","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":5,"address":"620 South Madison Street","category":"North American Lager","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"This amber Austrian lager has a distinct bready malt aroma and flavor, followed by a crisp, clean finish typical of lager styles. The nose also shows plenty of the spicy hop aroma contributed by the use of Saaz hops.","ibu":16,"name":"Vienna Red Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4.5,"address":"545 Canal Street","category":"German Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Our Altbier is brewed in the classic German-style brown ale tradition. The “alt” translates to \"old\" in German and is one of the original ale types brewed in Germany. Brown Aled Girl is dark brown in color, medium in carbonation with a great balance between malt and hops.","ibu":68,"name":"Brown Aged Girl","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Stretching the longer summer days into Twilight! There is something magical about the time of day that falls between light and dark, the high-desert summer day fading into a warm evening with brilliant skies.\n\n\nTwilight Ale is a lighter, but full flavored ale with a balanced malt profile and a harmonious blend of four hops. A final dry hopping of bold Amarillos creates the distinctive finishing touch. Twilight is best enjoyed when chilled and consumed outdoors.","ibu":3,"name":"Twilight Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Michelob ULTRA Amber is an American-style amber lager that boasts a beautifully rich, dark-amber color with a full-bodied, malty taste that also is low in calories and carbohydrates.","ibu":12,"name":"Michelob Ultra Amber","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":12.284616383043511,"address":"289 Huger Street","category":"North American Ale","city":"Charleston","coordinates":[32.8017,-79.9455],"country":"United States","ibu":76,"name":"Pale Ale","state":"South Carolina"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Rogues annual holiday offering, Santas Private Reserve, is a variation of the classic Saint Rogue Red, but with double the hops--including Chinook, and Centennial, and a mystery hop called Rudolph by head brewer John \"more hops\" Maier!This holiday elixir is brewed with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, Carastan 13-17, and Crystal 70-80 malts, plus free range coastal water and Johns proprietary top-fermenting Pacman yeast. Available in both 22-ounce bottles, 12oz Loose packs for Winter 2005, and 12oz six packs for 2006.","ibu":35,"name":"Santas Private Reserve","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Light golden color. Sweet dry aroma with crisp, clear bitterness. Brewed with imported German hops.The perfect beer to have when you'd like to have more than one.","ibu":35,"name":"South Park Blonde","state":"California","website":"http://www.21st-amendment.com/"},{"abv":3.659595718380295,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":22,"name":"Admiral ESB","state":"Washington"},{"abv":3.2444873585568104,"address":"611 North Pine","category":"German Lager","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":104,"name":"Spring Bock","state":"Washington"},{"abv":4.6999998093,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":0,"name":"Cypress Honey Lager","state":"British Columbia"},{"abv":7.273986691260078,"address":"Konradigasse 2","category":"German Ale","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":37,"name":"Weizen","state":"Baden-Wrttemberg"},{"abv":3.047455683683361,"city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":115,"name":"Huusbier"},{"abv":6.0999999046,"address":"Spott Road","category":"North American Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":85,"name":"Twisted Thistle India Pale Ale","state":"Scotland"},{"abv":6.5,"address":"Spitalstrasse 50","city":"Raeren","coordinates":[50.6718,6.122],"country":"Belgium","ibu":9,"name":"Rader Blonde","state":"Lige"},{"abv":3.7999999523,"address":"830 Main Street","category":"Irish Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":69,"name":"Zone 7 Porter","state":"California"},{"abv":9,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"We think the russian tsar would have liked his stout this way. A dark, rich ale in which a generous sweetness with roasted malt bitterness. Serving temp.10°C/50°F. Great with vanilla ice cream or dark chocolate.","ibu":48,"name":"Nøgne Ø Imperial Stout","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":89,"name":"La Divine Tripel Amber","state":"Hainaut"},{"abv":2.97980643477902,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":2,"name":"Golden Ale","state":"Wisconsin"},{"abv":8.024276781866002,"address":"1260 Lincoln Avenue #100","category":"German Ale","city":"Pasadena","coordinates":[34.1696,-118.159],"country":"United States","ibu":49,"name":"Heavenly Hefe","state":"California"},{"abv":9.191443556559864,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":104,"name":"IPA","state":"Wisconsin"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":75,"name":"Bigfoot 1994","state":"California","website":"http://www.sierranevada.com/"},{"abv":13.953411835502779,"address":"426 St.Peter Street","category":"North American Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":24,"name":"Saint Peter Pale Ale","state":"Minnesota"},{"abv":11.727587973166955,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":80,"name":"Hefe Weiss","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":5.0999999046,"address":"Hofbräuallee 1","city":"München","country":"Germany","ibu":96,"name":"Original","state":"Bayern"},{"abv":11.423197195486821,"category":"Irish Ale","city":"Redmond","coordinates":[47.6701,-122.118],"country":"United States","ibu":110,"name":"Three Threads Porter","state":"Washington"},{"abv":6,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Hope and King is a full-body brew and is rich in malt complexity. Brewed with both English and American barley and many, many specialty malts this deeply colored ale has hints of roasted chocolate, caramel and raisins with very little hop presence. Our interpretation of the classic ale that originated in Glasgow, Scotland.","ibu":94,"name":"Hope & King Scotch Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":9.733936611501827,"address":"2565 North Highway 14","category":"North American Lager","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":63,"name":"Mojave Red","state":"California"},{"abv":12.6498463288801,"address":"1647 South Tejon Street","category":"North American Ale","city":"Colorado Springs","coordinates":[38.8097,-104.826],"country":"United States","ibu":95,"name":"Winter Warlock Oatmeal Stout","state":"Colorado"},{"abv":7.026403774564826,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","ibu":50,"name":"XP Pale Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":12.21271192143179,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":15,"name":"East Bay Brown","state":"South Carolina"},{"abv":12.14694801014241,"address":"114 North Main Street","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":83,"name":"Tripel","state":"Michigan"},{"abv":8.275340964621344,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":42,"name":"Jamaica Brand Red Ale","state":"California"},{"abv":13.144714701154584,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":22,"name":"Main Street Brown Ale","state":"Wisconsin"},{"abv":9.66220227773819,"address":"Krekelput 16-18","city":"Oudenaarde","coordinates":[50.8431,3.6077],"country":"Belgium","ibu":46,"name":"St.Hermes Abbey Ale","state":"Oost-Vlaanderen"},{"abv":2.7116533505080733,"address":"2145 Blake Street","category":"German Lager","city":"Denver","coordinates":[39.7557,-104.993],"country":"United States","ibu":119,"name":"Oktoberfest","state":"Colorado"},{"abv":4.198613742300975,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":69,"name":"Little Point Pale","state":"California"},{"abv":5.8000001907000005,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"At the heart of Saranac Winter Wassail is a classic English ale brewed with English Malt & Fuggles Hops. Look for hits of cinnamon, nutmeg, orange and allspice. Cheers to the holiday season!","ibu":36,"name":"Saranac Winter Wassail","state":"New York","website":"http://www.saranac.com"},{"abv":1.4920067824303296,"city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":119,"name":"Pilsner","state":"North Carolina"},{"abv":10.47643008468307,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":113,"name":"Blackwood Mountain Stout","state":"North Carolina"},{"abv":11.114122064826295,"category":"Irish Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":61,"name":"Porter","state":"Hawaii"},{"abv":2.1880783259825884,"address":"196 Alps Road","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"A black IPA.","ibu":67,"name":"Capt'n Krunkles","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":1.9015404020026938,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":53,"name":"Redwood Amber","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":2.8122376962648046,"address":"113 18th Street","category":"North American Lager","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":30,"name":"Wigged Pig Wheat","state":"Illinois"},{"abv":6.847966120758753,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"There’s nothing quite likes Mom’s apple pie…But I am willing to bet this beer is pretty darn close. An American Tripel, dry-hoped with Amarillo hops and aged in Apple Brandy barrels from one of this country’s oldest distilleries. The tropical aroma of the hops and the delicate apple aroma from the barrels are a perfect match. Straight from the Captain’s cellar to yours, we hope you enjoy.","ibu":46,"name":"Golden Delicious","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":7.590748189455048,"address":"50 Catoctin Ct. NE #100","category":"North American Ale","city":"Leesburg","coordinates":[39.1126,-77.5537],"country":"United States","ibu":107,"name":"Point Of Rocks Pale Ale","state":"Virginia","website":"http://www.vintage50.com/"},{"abv":5.8000001907000005,"address":"5919 Chicago Road","category":"North American Ale","city":"Warren","coordinates":[42.5278,-83.0472],"country":"United States","description":"Black ale beer, made with real coffee. This java stout goes through a unique process, involving caramelizing brown sugar to give it an intense caramel & vanilla aroma.","ibu":52,"name":"Creme Brulee Java Stout","state":"Michigan","website":"http://www.kbrewery.com/"},{"abv":0.6491156015552269,"address":"104 Mill St.","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"Crisp and smooth. This beer is deep amber in color. Toasty, malty flavor. Full-bodied with a clean finish.","ibu":77,"name":"South County Munich Dunkel Lager","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":9.80163403405964,"address":"7734 Terrace Avenue","category":"Belgian and French Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":78,"name":"Capital Prairie Gold","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.5584974423972318,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Another one of our first recipes, which we have improved with experience. This ale is pleasantly malty with nutty and toffee like undertones. East Kent Golding hops were used to compliment this English style ale.","ibu":72,"name":"Bube's Brown Ale","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.4000000954,"address":"24 North Pleasant Street","category":"Other Style","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"2003 Silver medal winner herb and spice catagory Great American Beer Fest, made without hops, 100% heather flowers giving it a flowery aroma, subtle sweetness, and crisp, clean finish.","ibu":32,"name":"Heather Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":14.010027373743428,"address":"206 W. Pratt St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":62,"name":"Oliver Irish Red","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"Irish Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":59,"name":"Odd Notion Spring 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"As the story goes, I was redesigning our I.P.A. to be bigger and better but as it came together it started to take on a life of its own. After much deliberation and several pints of our new creation we decided to name him after the master of macabre, Edgar Allen Poe, as a tribute to his aptly named short story \"HOP FROG.\" As Edgar fermented and spewed his almost abusive hop aroma throughout the pub, his legend and our thirst grew until finally one day, he was released into the world. We hope Edgar amuses you as much as he has us but stay on his good side because much like the story, this Hop Frog bites back!","ibu":117,"name":"Edgar I.P.A.","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":7,"address":"111 Main Street","category":"British Ale","city":"Lucan","coordinates":[44.4105,-95.4107],"country":"United States","description":"Originally brewed exclusively for beer shows, this award-winning ale has always been a Brau Brothers favorite! This is not your typical Scotch Ale. Combined with traditional malt\n\nsweetness is a distinct smoke flavor derived from authentic peat-smoked malt. This beer will change your opinion about Scottish ales due to its drinkability. Hop flavor and bitterness are minor, yet balance out this malty beer.\n\n\nBrau Scotch Ale is copper to amber in color with an off-white head of tightly laced bubbles. Wide-bowled glassware will allow the sweet and smoky aroma to escape. This ale can be served from 34- 50 degrees Fahrenheit. Lower temps will make it easier to drink while higher temps will enhance both malt and hop flavor. Portion control is important as this beer.","ibu":84,"name":"Scotch Ale","state":"Minnesota","website":"http://www.braubrothersbrewing.com/"},{"abv":2.570299696434626,"address":"1501 East Wilson","category":"North American Lager","city":"Batavia","coordinates":[41.8539,-88.2776],"country":"United States","ibu":44,"name":"Light","state":"Illinois"},{"abv":12.008754631990913,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":89,"name":"Endless Summer Gold","state":"California"},{"abv":5.334447279859688,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":84,"name":"Lucky U Denver Special Bitter","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.6999998093,"address":"Heitzerstrae 2","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":0,"name":"Barock-Dunkel","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":10.988332616865383,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":32,"name":"Vashon Old Stock Ale","state":"Washington"},{"abv":5.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":16,"name":"IPA","state":"Washington"},{"abv":12.50847040768819,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":44,"name":"Faux Paddy Irish Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6,"address":"Unit 21-24 Batten Road Industrial Estate","city":"Salisbury","country":"United Kingdom","ibu":64,"name":"Pickled Santa","state":"Wiltshire"},{"abv":13.508303189334693,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":90,"name":"Harvest Ale","state":"Montana"},{"abv":7,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":67,"name":"Imperial Stout","state":"North Yorkshire"},{"abv":6.8000001907000005,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"In 1859 Col. Edwin L. Drake successfully drilled the first oil well in Northwest Pennsylvania. Because of the project known as \"Drake's Folly,\" Pennsylvania was actually responsible for almost half of the world's oil production until the 1901 oil boom in Texas. Erie Brewing Co. reflects on our regions oil history and oil rush by producing a crude oil Black, silky smooth, malt bonanza oatmeal stout.","ibu":81,"name":"Drake's Crude","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.5,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our Spring Saison is light blonde in color with a fresh hoppiness and a wild and rustic Brettanomyces character. Lighter in color and alcohol than our Saison Rue, yet equally complex in its own way. Perfect for warmer weather and Spring celebrations.","ibu":76,"name":"Saison De Lente","state":"California","website":"http://www.thebruery.com/"},{"abv":8.5399999619,"address":"104 Mill St.","category":"Irish Ale","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"Our Brigantine Smoked Porter, much like the high seas, can be a wild ride. This beer is dark brown and full bodied with roasted tones and a hint of chocolate. As if that weren't enough it finishes with a smoked flavor that seems right at home during cooler months here in Southern York County.","ibu":3,"name":"Brigantine Smoked Porter","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":7.1999998093,"category":"North American Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"Constant addition of fresh Cascade and Willamette hops from Brad’s Stillwater hop garden during boil and fermentation process. Aromatic and caramel malts compliment the hop character for an incredibly balanced beer that celebrates the hop harvest without killing your tongue.","ibu":2,"name":"Harvestör Fresh Hop Ale","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":12.016630163965331,"address":"2050 Yavapai Dr","category":"Irish Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":46,"name":"Pullman Porter","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.3000001907,"address":"Brouwerslaan 1","category":"German Ale","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","ibu":107,"name":"Grolsch Amber Ale","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":5,"address":"529 Grant St. Suite B","category":"British Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Caramelized sugars lend a unique flavor and aroma to this lightly hopped, malty smooth, Scottish Export Ale.","ibu":26,"name":"Twisted Kilt Scotch Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":1.2889296504720715,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Chamomellow is an herbal golden ale infused with chamomile, which provides an enticing floral aroma. Chamomile is one of the oldest garden herbs used by ancient Egyptians and other cultures to battle illness, promote calm and relieve anxiety, hence the name Chamomellow. Dedicated to Caleb McLoughlin, a revolutionary brewer who created this elixir at Rogues Issaquah Brewhouse and won a Gold medal in the Herbs & Spice category at the 2003 Great American Beer Festival.\n\n\nChamemollow is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops, and infused with Chamomile. Available in a limited edition 22-ounce bottles (originally as Test Batch 1 - Gold Medal Series), and on draft at Rogues six Public Houses.","ibu":72,"name":"Chamomellow","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.1999998093,"address":"563 Second Street","category":"British Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Traditional English E.S.B. made with English malt and hops. Fruity aroma with an imparted tart flavor brought about by replicating the water profile in England at Burton on Trent.","ibu":23,"name":"Potrero ESB","state":"California","website":"http://www.21st-amendment.com/"},{"abv":2.091018240768092,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":25,"name":"Little Barley Bitter","state":"Minnesota"},{"abv":1.6031754670649712,"address":"636 Massachusetts","category":"North American Ale","city":"Lawrence","coordinates":[38.9718,-95.2357],"country":"United States","ibu":66,"name":"Ad Astra Ale","state":"Kansas","website":"http://freestatebrewing.com/"},{"abv":8.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":39,"name":"Moinette Blonde","state":"Hainaut"},{"abv":7.497024284149575,"category":"German Ale","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":112,"name":"Weiss","state":"Colorado"},{"abv":9.820152850679644,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":43,"name":"Barrel Select Pils","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":6.206966219633369,"address":"842 East 65th Street","category":"North American Lager","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":100,"name":"Wheat Beer","state":"Indiana"},{"abv":8.022917563683317,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":39,"name":"Buzz Beer","state":"Ohio"},{"abv":1.4494784836497387,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":66,"name":"Firehouse Red","state":"Washington"},{"abv":2.26126754363953,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":34,"name":"Red Truck Ale","state":"British Columbia"},{"abv":11.873495117371993,"address":"1650 Dell Range Boulevard","category":"Irish Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":38,"name":"Big Horn Total Disorder Porter","state":"Wyoming"},{"abv":6.081698869042057,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":19,"name":"River Back Jack IPA","state":"Illinois"},{"abv":4.314637414884316,"address":"2002 Broadway","category":"Irish Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":7,"name":"Old Fort Porter","state":"Indiana"},{"abv":5.3000001907,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Trail Blaze Organic American Brown Ale exhibits a beautiful deep copper color and an evident hop bitterness & aroma. This is balanced against roasted caramel-like characteristics and hints of chocolate. \n\n\nOur first in a series of organic beers is named for the markers that keep a hiker on the correct path. Many of the hiking trails in our area have simple to very distinguished trail blazes. After a long hike, there is nothing better at the end of the trail than ABC organic ale.","ibu":90,"name":"Trail Blaze Organic Brown Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.79756882822479,"city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":102,"name":"Black Lion Lev Czech Premium Dark Beer"},{"abv":1.7534243180853182,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":65,"name":"Kozlov Stout","state":"California"},{"abv":13.004941458370842,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":77,"name":"Dunkelweizen","state":"Texas"},{"abv":6.0637594591174695,"address":"200 North Tenth Street","category":"German Lager","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":78,"name":"Maibock","state":"Iowa"},{"abv":4.885565704879696,"category":"German Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":50,"name":"Hefeweizen","state":"Wisconsin"},{"abv":7.8000001907000005,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":69,"name":"Scratch #24 2009 Van de Hoorn","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.0999999046,"address":"3300 Old Seward Highway","category":"North American Ale","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"A hop lover and beer connoisseur's favorite, this ale is surprisingly drinkable and fully delights with its hoppy aromatics. Stick your nose in this one.","ibu":6,"name":"Fairweather IPA","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":5.8000001907000005,"address":"2501 Southwest Boulevard","category":"Irish Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Irish Ale, Boulevard’s spring seasonal beer, is our Midwestern tribute to the legendary red ales of old Ireland. Our recipe combines six kinds of pale and roasted barley malts to provide a rich, toasty flavor and tawny reddish hue.","ibu":112,"name":"Boulevard Irish Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"address":"35 Soi Prommit, Sukumvit 39","category":"North American Lager","city":"Bangkok","coordinates":[13.7234,100.476],"country":"Thailand","description":"Phuket Beer was created as a refreshing ‘boutique’ beer in view of the exotic island of Phuket with a much lower formula of bitterness than any other domestic rivals in Thailand.\n\n\nPhuket Beer is the first regional beer brewed in Thailand and is positioned to appeal to both the international markets as well as the local population. This is manifested through the label and packaging designs presented in both English and Thai languages.\n\n\nPhuket Beer is well positioned as a premium brand located somewhere between the local standard brands and the imported premium brands. The efforts were inspired from the feeling of being in a tropical paradise. Thai beer consumers have become more sophisticated over the years, by selecting and demanding premium and high-end beers. initial consumer target was Phuket Island's significant tourist sector, a sector that is prone to taste and drink locally produced brands.However, strategic positioning and selected marketing of Phuket Beer has resulted in a ray of successful export markets with overwhelming response from the initial markets overseas.\n\n\nThe philosophy is to provide a ‘tropical lifestyle’ drinking experience in a fresh clean light tasting lager beer with 5% alcohol by volume, which is in total contrast to the other Thai beers that are very bitter with higher alcohol content.","ibu":85,"name":"Phuket Lager","website":"http://www.tropbevco.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"It's our very first beer - golden medium-bodied and brewed as a traditional Munich Helles style pale lager. It features a rounded maltiness without being too heavy. And like every proud Texan, it has a good head, is pleaseant but never overly sweet.","ibu":93,"name":"Blonde Lager","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":9,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","ibu":66,"name":"Green Flash Imperial India Pale Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":9.481376071395376,"address":"102 North Market Street","category":"German Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This traditional German-style wheat beer is rich in banana and clove undertones, with a wonderful frothy head.","ibu":106,"name":"Bube's Hefeweizen","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.5,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A refreshing neo-BerlinerWeisse fermented with honest-to-goodness peaches to (get this!) 4.5% abv! Because extreme beers don't have to be extremely boozy! Available in 4-pack and draft during the sweaty months.","ibu":112,"name":"Festina Pêche","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.0999999046,"address":"1201 First Avenue South","category":"North American Ale","city":"Seattle","country":"United States","ibu":38,"name":"DPA","state":"Washington"},{"abv":5.5,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":55,"name":"Salmon Bay E.S.B.","state":"Washington"},{"abv":0.6973283850309608,"address":"13450 - 102 Avenue","category":"North American Ale","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":23,"name":"Steelhead Stout","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":10.5,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":11,"name":"Grand Cru","state":"Lige"},{"abv":16.030000687,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":65,"name":"Mephistopheles Stout","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":2.3913240962508695,"address":"636 East Main Street","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":119,"name":"Hell for Certain","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":116,"name":"Ertvelds Wit","state":"Oost-Vlaanderen"},{"abv":5.029352698644223,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":100,"name":"Classic Oatmeal Stout","state":"Wisconsin"},{"abv":5.663472353677681,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":57,"name":"Double Hop Premium Ale","state":"Cheshire"},{"abv":1.7853296819725717,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":93,"name":"Roundhouse Rye","state":"Wisconsin"},{"abv":8.916037300308643,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":113,"name":"Christmas Ale 2003","state":"California"},{"abv":5.6999998093,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light in color, full bodied and very malty, this lager has a toasted malt flavor. Brewed in February and usually on tap by May with a keg of the previous year's batch.","ibu":17,"name":"Boltwood Bock","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":6.6501450294324735,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":113,"name":"Monk Brown Ale","state":"Antwerpen"},{"abv":3.7326055025390636,"category":"Irish Ale","city":"Marblehead","coordinates":[41.5403,-82.7355],"country":"United States","ibu":2,"name":"Port Clinton Porter","state":"Ohio"},{"abv":4.467520306611396,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":1,"name":"Märzen","state":"Illinois"},{"abv":8.5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This Specialty Beer Black Double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \"Specialty Beer\" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale. Then this ale was aged in oak barrels for several month","ibu":59,"name":"Specialty Beer: Oak-Aged Black Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.6999998093,"address":"2800 North Reading Road","category":"North American Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Stoudt's Gold Lager is widely recognized as one of the finest German-style beers brewed in America. Brewed with the finest specialty malts and noble hops, this light bodied, easy drinking lager features a subtle balance of sweet malt and clean crisp hops.","ibu":24,"name":"Stoudt's Gold Lager","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":5.4000000954,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Our Crisp, lighter in body, yet still full flavored brew. Before Prohibition, thirst quenching lagers were firm and substantial, and enjoyed in huge volumes. This recipe incorporates yeast from the C. Schmidt Brewery of Philadelphia and a small portion of brewer's corn to recreate an \"industrial\" lager of the turn of the century. \n\n\nReleased April 6 to celebrate Prohibition's repeal 73 yrs. ago, Throwback Lager is a draft only release that should flow into June","ibu":114,"name":"Throwback Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.6999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This amber ale is dosed with cinnamon, nutmeg, ginger, and fresh orange zest. It is well balanced with low hop flavor and nice hint of the spices in the finish. This spiced ale is not overbearing; rather it is smooth and very drinkable.","ibu":40,"name":"Grinnin' Grizzly Spiced Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":9.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Strong and sensual, this golden, Belgian-style ale glows with goodness. The richness of German malts and Belgian yeast are tempered by a sparkling approach and overall light body. Considerable depth of character with abundant herbal, fruity notes make this one to savor.","ibu":76,"name":"Golden Monkey Tripel","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5,"address":"102 Kifissou Avenue","city":"Athens","country":"Greece","ibu":65,"name":"Athenian"},{"abv":10.298664397206194,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":83,"name":"Valencia Wheat","state":"California"},{"abv":8,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":113,"name":"Brune / Brown","state":"Lige"},{"abv":9.8999996185,"category":"North American Lager","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":94,"name":"Imperial Gold Malt Liquor","state":"Oregon"},{"abv":2.642613666004351,"address":"Werbellinstrasse 50","city":"Berlin","coordinates":[52.4793,13.4293],"country":"Germany","ibu":34,"name":"Weisse","state":"Berlin"},{"abv":5,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"Medium-bodied with an appealing amber hue, this is the First Ale of the Republic. Its organic pale, Munich, and crystal malts create a gentle sweet character that is difficult to resist. From organic Hallertauer hops come a zesty flavor and aroma that beautifully balance Organic Amber's malt profile. The result: Truly delicious ale that salutes organic farmers and all the goodness they bring to our tables.","ibu":9,"name":"Organic Amber Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":10.324876917424977,"address":"Kaiser-Ludwig-Platz 1","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":3,"name":"Kloster Edel-Hell","state":"Bayern"},{"abv":4.3000001907,"address":"Dominikanerstrae 6","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":104,"name":"Schlenkerla Helles Lagerbier","state":"Bayern"},{"abv":4.9000000954,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":0,"name":"Pilsner","state":"Bayern"},{"abv":6.0999999046,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"The September hop harvest is a once-a-year opportunity to brew with fresh hops, also called “wet hops.” Given the perishable nature of just-harvested hop cones, they are shipped overnight to Great Divide shortly after harvest. The morning of the scheduled hop delivery in Denver, Great Divide’s brewers begin brewing Fresh Hop and are ready to hop the beer just as the fresh hops are delivered.\n\n\nUsing fresh hops is a big endeavor, requiring four to five times the volume of hops compared to the usual process of using pelletized hops. This complex process brings impressive results: Fresh Hop is an American-Style Pale Ale with moderate hop bitterness marked by a unique and intensely grassy hop flavor and aroma. Fresh Hop is a superbly refreshing, medium bodied, light-copper colored pale ale.","ibu":26,"name":"Fresh Hop Pale Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":11.869383180840549,"address":"471 Kalamath Street","category":"North American Lager","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":103,"name":"Hefe Proper Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7.5,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":69,"name":"Imperial Hefeweizen","state":"California"},{"abv":6,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":36,"name":"Oak Aged IPA","state":"Nebraska"},{"abv":3.690106795918109,"address":"1401 Miner Street","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":27,"name":"Cocoa Porter","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.105908199074182,"address":"123 East Doty Street","category":"Other Style","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":87,"name":"Raspberry Ale","state":"Wisconsin"},{"abv":7.243875854820589,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":99,"name":"St. Paul Double","state":"Antwerpen"},{"abv":3.6453312982633412,"city":"Henley-on-Thames","coordinates":[51.5375,-0.9046000000000001],"country":"United Kingdom","ibu":30,"name":"Henley Ale","state":"Oxford"},{"abv":10.681701521139997,"address":"23 Commerce Street","category":"North American Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":118,"name":"Mahogany Ale","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":0.2687436465950066,"address":"Wisbech PE13 1LN","category":"Irish Ale","city":"Wisbech","coordinates":[52.6643,0.1595],"country":"United Kingdom","ibu":107,"name":"Flag Porter 1825 Original","state":"Cambridge"},{"abv":12.892883076971236,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":10,"name":"IPA","state":"Indiana"},{"abv":9.882674007108076,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":69,"name":"1,2,3 Ale","state":"Michigan"},{"abv":5.829153375168756,"city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":13,"name":"Pumpkin Ale","state":"Indiana"},{"abv":4.8000001907000005,"address":"50 North Airport Parkway","category":"North American Lager","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":56,"name":"Meridian Street Premium Lager","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":11.875440723977167,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":59,"name":"Queen Anne Light","state":"Minnesota"},{"abv":14.313676554684971,"address":"426 St.Peter Street","category":"North American Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":16,"name":"Brown Trout Brown","state":"Minnesota"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":117,"name":"Pale Pale Boss Ale","state":"Iowa"},{"abv":4.5,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":55,"name":"Premium"},{"abv":6.045450251959876,"address":"279 Springfield Avenue","category":"German Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":90,"name":"Blackforest Lager","state":"New Jersey"},{"abv":11.8578798800704,"address":"1 Fairmount Road","category":"Irish Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":99,"name":"Lazy Jake Porter","state":"New Jersey"},{"abv":12.653097498030734,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":106,"name":"Oatmeal Stout","state":"New Jersey"},{"abv":4.989519735809234,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":22,"name":"Witbier","state":"Wisconsin"},{"abv":4.1999998093,"address":"701 West Glendale Avenue","category":"German Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This coarse-filtered wheat ale is fermented with a German yeast culture for a refreshingly light spiciness and hints of citrus fruit. A cloudy appearance and an immense creamy head are characteristic of this lightly hopped Bavarian Brew.","ibu":25,"name":"Hefe Weiss","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.979170681746431,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":94,"name":"Reichelbräu Eisbock","state":"Bayern"},{"abv":5.260889913111178,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":104,"name":"Iris","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":9.6000003815,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":25,"name":"Dorado Double IPA","state":"California","website":"http://www.ballastpoint.com/"},{"abv":0.3545273671108218,"address":"333 North Main Avenue","category":"Irish Ale","city":"Gresham","coordinates":[45.5001,-122.431],"country":"United States","ibu":15,"name":"Powell Porter","state":"Oregon"},{"abv":6.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Close your eyes. The delicate aroma, flavor, texture of this beer whisper “witbier”. Now open your eyes. The color is deceiving. You take another sip. Yes, witbier … but black as night. It is something quite peculiar—BuT it is brilliant—something shimmering and [not so] white.","ibu":33,"name":"Cosmic Black Witbier","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.6999998093,"address":"4405 Honoapiilani Highway #217","category":"Irish Ale","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"Our Coconut Porter is a classic robust porter spiced with all natural toasted coconut. It is black in color and crowned with a creamy, dark tan head. It begins with a malty-toasted coconut aroma followed by a rich, silky feel with tastes of dark malt, chocolate, and hints of coffee. It then finishes with flavors of toasted coconut and hoppy spice to balance the finish.","ibu":67,"name":"Maui Coconut Porter","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":4.5999999046,"address":"5401 Linda Vista Road #406","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"So where can you taste a Kolsch? There are no Kolsches being imported into the United States. So you could fly to Cologne. A better idea is to come to Ballast Point Brewing Company and try our Yellowtail Pale Ale Kolsch. We make it with 5% Wheat, finish hop it with Liberty and Tettnanger hops, and ferment it with a yeast we borrowed from a brewery in Cologne. So come on in and enjoy a taste of the Rhineland!!","ibu":35,"name":"Yellowtail Pale Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":7.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"There is a long story to this malty ale. It was first brewed in the spring 2006 in Nørrebro Bryghus in Copenhagen, Denmark, as a joint brew between Nøgne Ø and Nørrebro. Nørrebro calls their version “Double Knot Brown”. It is the perfect thing to drink with almost any cheese.","ibu":70,"name":"Nøgne Ø Imperial Brown Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A Belgian, lightly spiced pale ale. This caramel colored, light-bodied brew has a mild caramel flavor, a hint of orange peel and coriander and slight hop bitterness.","ibu":87,"name":"Celis Pale Bock","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7.0999999046,"address":"701 S. 50th Street","category":"Belgian and French Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A swanky interpretation of a double strength wheat beer, fermented solely by champagne yeast. Notes of tart citrus and white grape soothe the pallet in this sparkling ale.","ibu":43,"name":"Bubbly Wit","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":5.0999999046,"address":"800 Paxton Street","category":"North American Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Old world brewing techniques combine with Noble hops for Scratch #6-2007.\n\nThis Export Lager features a single stage decoction—a first for Tröegs Brewery. After combining barley and water we transfer a portion of the mash to the brew kettle for a quick boil. The heated mash is then returned to the mash kettle and the brewing process continues. This process deepens the malt character and adds a subtle toffee backbone to this delicious lager.\n\n\nWe’ve added Magnum hops for bittering and Czech Saaz hops for aroma to create a classic European Noble hop flavor. \n\n\nScratch #6-2007 is unfiltered, so there will be a slight haze to the beer.","ibu":86,"name":"Scratch #6 2007","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":10.5,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"\"Piraat is a 'living' beer, which means that after the primary fermentation in the keg, the beer also continues to evolve during the secondary fermentation in the bottle or in the keg after packaging. This is a world-class amber colored beer. American beer connoisseurs give it 98 out of 100. No other beer scores better. The flavor is so complex and so rich that every swallow conjures up new associations. Note the spicy light sweetness, which is richly balanced with the robust bitterness of the hops. It is an adventure of a beer, a treat.\";\"0","ibu":70,"name":"Piraat 10.5%","state":"Oost-Vlaanderen"},{"abv":9,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Imperial Red is the newest addition to Rogues award winning Imperial Family of XS products. The Imperial Red recipe originates from Rogues Eugene City Brewery and is being produced in Newport for distribution (note, initially during 2007 in kegs only to JLS accounts. A 750-ml ceramic swing-top bottle and 13.2 gallon kegs will be available in 2008.) Imperial Red has already garnered international acclaim and awards, including a Bronze Medal at the 2006 Great American Beer Festiva and recently it was named Grand Champion at the US Beer Tasting Championships! \n\n\nDeep copper chestnut color with toffee, brown sugar, nuts, and spice amomas. A rich supple entry leads to an off-dry medium body of tangy raisins and citrus marmalade, bittersweet chocolate, and mild spice flavors. It finishes with a long nutty, fruity fade. \n\n\nImperial Red is brewed with Crystal, Chocolate, Munich and two-row Pale Malts; Palisade and Aroma Crystal hops, Pacman Yeast, and Free Range Coastal Waters.","ibu":88,"name":"Imperial Red","state":"Oregon","website":"http://www.rogue.com"},{"abv":9.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Above and beyond an India Pale Ale--I2PA is radically hopped with an intense aroma and hop bitterness. Unfiltered and aged for 9 months before it leaves the brewery--not for the faint of heart. I2PA is brewed with two-row Pipkin Pale malts, Saaz, Cascade and Northwest Golding hops. I2PA is available in a new 750ml Silkscreened black ceramic bottle and on draft.","ibu":112,"name":"Imperial India Pale Ale / I2PA","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.529146081076737,"address":"233 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":50,"name":"Rye I Oughta","state":"Wisconsin"},{"abv":7.623298676751987,"address":"256 Moody Street","category":"North American Ale","city":"Waltham","coordinates":[42.3718,-71.2367],"country":"United States","ibu":94,"name":"Hops Explosion IPA","state":"Massachusetts"},{"abv":5.276790133197169,"address":"100 Little Dam Road","city":"Dillon","coordinates":[39.6282,-106.059],"country":"United States","ibu":25,"name":"Extra Special Bitter","state":"Colorado"},{"abv":5.302256932910653,"address":"11 North Palouse","category":"Irish Ale","city":"Walla Walla","coordinates":[46.0697,-118.336],"country":"United States","ibu":119,"name":"Penitentiary Porter","state":"Washington"},{"abv":3.9253848371228894,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":41,"name":"Grumpy Two","state":"Wisconsin"},{"abv":6.437632380295603,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":101,"name":"Storm Ale","state":"Nebraska"},{"abv":5.5,"address":"50 North Airport Parkway","category":"North American Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":90,"name":"Indiana Amber","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":4.0999999046,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced in 1994.","ibu":109,"name":"Bud Ice Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.566956245160036,"ibu":16,"name":"07/22/10 08:00 PM"},{"abv":6.5999999046,"address":"Dinant","category":"North American Ale","city":"Dinant","coordinates":[50.2606,4.9122],"country":"Belgium","ibu":46,"name":"Leffe Blonde","state":"Namur"},{"abv":5.1999998093,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A refreshing, blond colored pale ale. Bell's pale ale is made almost exclusively from pale malt. It expresses a spicy floral hop aroma and taste.","ibu":111,"name":"Pale Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"Irish Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Inspired by local artist & roaster Michael Allen's eccentricly-named blend of coffee beans, Midnight Sun's brewers designed a beer recipe and infusion process that perfectly captures the alluring aroma, satisfying flavor and curious legend of Allen's Arctic Rhino Coffee. \n\n\nArctic Rhino Coffee Porter combines two quintessential Pacific Northwest favorites: coffee and ale. The result is wonderfully romantic and robust--a duel-fueled porter that melds charismatic dark malt with freshly roasted coffee beans. The (un)rest is up to you.","ibu":66,"name":"Arctic Rhino Coffee Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5999999046,"category":"North American Lager","city":"Latrobe","coordinates":[40.3212,-79.3795],"country":"United States","ibu":104,"name":"Rolling Rock","state":"Pennsylvania"},{"abv":12.213462204605143,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":9,"name":"Wintertime Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5.5999999046,"address":"rstadvgen","category":"British Ale","city":"Falkenberg","coordinates":[56.9002,12.5405],"country":"Sweden","ibu":14,"name":"Falcon Lagrad Gammelbrygd"},{"abv":11.521667600333192,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":38,"name":"No Doubt Stout","state":"Oregon"},{"abv":8.748605520569921,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":60,"name":"Nitro Stout","state":"California","website":"http://avbc.com/"},{"abv":14.160323378904014,"category":"Irish Ale","city":"Mountain View","coordinates":[37.3861,-122.084],"country":"United States","ibu":79,"name":"Rosed Porter","state":"California"},{"abv":9.438762536394634,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":94,"name":"Classic Pale","state":"Texas"},{"abv":14.0434232076808,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":23,"name":"India Ale","state":"North Yorkshire"},{"abv":7.804703392938578,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":10,"name":"Barnstormer Pale Ale","state":"Iowa"},{"abv":11.671202247505214,"address":"Waffnergasse 6-8","category":"North American Lager","city":"Regensburg","coordinates":[49.0156,12.0913],"country":"Germany","ibu":13,"name":"Schierlinger Roggen","state":"Bayern"},{"abv":11.57617481145803,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"No mere beverage could satisfy the thirst of the courageous and gallant soldiers who stood guardover the colonies of the British Empire. Their thirst could only be quenched by a full-bodied hearty Ale; an Ale balanced with rich flavorful hops. We are proud to offer our interpretation of this English style India Pale Ale for those who loong for the time when once your duty was complete, the taste of a fine Ale was reward enough for a job well done.","ibu":21,"name":"Cricket Hill Hopnotic","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":9.583764283136055,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This clean, crisp ale was dry-hopped and is as refreshing as a plunge in the Slippery Rock Creek.","ibu":9,"name":"Paddlers Pale Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":7,"address":"725 Fourth Street","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Brown ale aged in Pinot Noir wine barrels for one year with sour cherries, Brettanomyces yeast, and Lactobacillus & Pedicoccus bacteria.","ibu":83,"name":"Supplication","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4,"category":"British Ale","country":"New Zealand","ibu":1,"name":"Speight's Gold Medal Ale","website":"http://www.steinlager.co.nz/"},{"abv":8.5,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Saison Rue is an unfiltered, bottle conditioned, Belgian/French-style farmhouse ale. This is a beer of subtlety and complexity, with malted rye, spicy, fruity yeast notes, biscuit-like malt backbone, and a slight citrus hop character. With age, this beer will dry out and will become more complex with rustic notes of leather and earth from the contribution of a wild yeast strain. Being a Saison, Saison Rue is ambiguous unto itself as it is a different beer when fresh and when aged. We hope you enjoy it in all of its incarnations.","ibu":7,"name":"Saison Rue","state":"California","website":"http://www.thebruery.com/"},{"abv":8.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","description":"Schneider & Brooklyner Hopfen-Weisse is a collaboration between brewmasters Hans-Peter Drexler of the Schneider Weissbier Brewery and Garrett Oliver of the Brooklyn Brewery. Garrett and Hans-Peter have long admired each others beers. Now together they bring you a new sensation, a pale weissbock robustly dry-hopped with the Hallertauer Saphir variety grown in the fields near the Schneider brewery. Hoppy, zesty and supremely refreshing, Scheider & Brooklyner Hopfen-Weisse is a delicious blend of Bavarian craftsmanship and American ingenuity.","ibu":33,"name":"Hopfen Weisse","website":"http://www.schneider-weisse.de"},{"abv":7.8000001907000005,"address":"6923 Susquehanna St.","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"THE UGLY AMERICAN is a perfectly enjoyable classic Belgian Trippel corrupted almost beyond recognition with a completely inappropriate amount of US hops. Only in America can such excessive excesses be fully appreciated, celebrated, and enjoyed...and for now, only at East End Brewing! To make this one a little more cellar-able, and a lot more portable, it's going into the bottle.","ibu":74,"name":"Ugly American","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":6.0999999046,"category":"North American Ale","city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":67,"name":"Regiment Pale Ale","state":"Pennsylvania"},{"abv":7.1999998093,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":110,"name":"Cambonator Doppelbock","state":"Bayern"},{"abv":11,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":3,"name":"Kasteel Bier Donker-Foncee","state":"West-Vlaanderen"},{"abv":6.5,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":71,"name":"Cream Stout","state":"Suffolk"},{"abv":0.6682145824153862,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":29,"name":"Bière de Noël"},{"abv":5.4000000954,"address":"279 Springfield Avenue","category":"North American Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":68,"name":"Hathor Red Lager","state":"New Jersey"},{"abv":2.4803342641935844,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":95,"name":"Beer Line 2000","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":14.873890651664178,"address":"375 West 910 South","category":"North American Ale","city":"Heber City","coordinates":[40.496,-111.42],"country":"United States","ibu":44,"name":"Tie Die Red","state":"Utah"},{"abv":8,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":79,"name":"Saxo","state":"Namur"},{"abv":11.660349443344485,"address":"2565 North Highway 14","category":"North American Lager","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":48,"name":"Mojave Gold","state":"California"},{"abv":9.5,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":62,"name":"Russian Imperial Stout","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6,"address":"302 N. Plum St.","category":"German Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Light and refreshing! This very bubbly Munich style weizen beer is highlighted by a spicy, banana finish.\n\n\nAvailable at the Brewery from May - October","ibu":39,"name":"Lancaster Hefe Weizen","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"Belgian and French Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An Abbey-style Dubbel ale. This dark amber brown ale is full of apple, raisin, and banana esters with a smooth malty finish.","ibu":76,"name":"Dubbel Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.6000003815,"address":"2105 N. Atherton St.","category":"Belgian and French Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An Abbey-style Tripel ale. This light colored traditional tripel is made with Pils malt and candisugar and fermented with a traditional yeast strain. Esterey and strong best describe this unique specialty beer.","ibu":42,"name":"Tripel Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.8000001907000005,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Cask conditioned ale has been the popular choice among brews since long before prohibition. We continue this pioneer spirit with our Wisconsin farmhouse ale. Brewed with flaked barley and the finest Wisconsin malts. We even give a nod to our farmers with a little hint of corn. \n\n\nNaturally cloudy we allow the yeast to remain in the bottle to enhance fullness of flavors, which cannot be duplicated otherwise. \n\n\nExpect this ale to be fun, fruity and satisfying. You know you're in Wisconsin when you see the Spotted Cow.","ibu":50,"name":"Spotted Cow","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":0.0018507548751911518,"address":"Utica NY 13502","category":"North American Lager","city":"Utica","coordinates":[43.1467,-75.1779],"country":"United States","ibu":52,"name":"Three Stooges Beer","state":"New York"},{"abv":1.6598580433086019,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":117,"name":"Dunkel Weizen","state":"Texas"},{"abv":6.932966657905361,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":68,"name":"Best Bitter","state":"Ontario"},{"abv":7.994570396268017,"city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":23,"name":"Harvest Gold","state":"Florida"},{"abv":7.0999999046,"category":"North American Ale","city":"Eugene","country":"United States","ibu":18,"name":"Watershed IPA","state":"Or"},{"abv":6.357188810262184,"address":"1800 North Clybourn Avenue","category":"Irish Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"We begin with a custom mixture of dark and roasted barley malts, then we add the choicest hops. The resulting ale has a dark chestnut color and a deep nutty flavor. Brewed specially for Trader Joe's.","ibu":106,"name":"Black Toad Dark Ale","state":"Illinois"},{"abv":5,"address":"190 5th Street","category":"German Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A lightly hopped, refreshing, Bavarian style wheat ale that has hints of banana and clove in the finish. Available May until October.","ibu":56,"name":"The Livery Hefe Weizen","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.1999998093,"address":"40 Van Dyke St","category":"North American Ale","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","ibu":10,"name":"Hop Obama","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.516486509251867,"address":"100 Searsport Avenue","category":"British Ale","city":"Belfast","coordinates":[44.4295,-68.975],"country":"United States","ibu":5,"name":"McGovern's Oatmeal Stout","state":"Maine","website":"http://www.belfastbaybrewing.com/"},{"abv":0.7665435352319949,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A red ale with rich and smooth flavors of malted barley, balanced by underlying hints of dark fruit. Brewed in homage to our hometown tulip festival, Red Tulip evokes spring’s renewing spirit. Excellent with roasted pork, red-meats and dried fruit.","ibu":55,"name":"Red Tulip","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.4000000954,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"\"The Traditional British Pint\" lives on at Deschutes Brewery & Public House. One of the original three packaged beers, it is still available year-round, but only at our pub. Coppery in color and robust in flavor, Bachelor Bitter will leave your taste buds humming. Galena, Willamette and Kent Golding hops create fantastic hop bitterness, aroma and flavor.\n\n\nBachelor Bitter also kicked off the Bond Street Series that launched in April 2005. The Bond Street Series is a specialty line of beers available in 22-ounce bottles.","ibu":93,"name":"Bachelor Bitter","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":9.109917453609503,"address":"636 East Main Street","category":"German Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"It is a nice example of a Hefeweizen.","ibu":32,"name":"Hoppy Hefe","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":6,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A hop lover's delight! Our I.P.A. is loaded with Ahtanum, Tohmahawk, Palisade, East Kent, Goldings and finished with the ever popular Cascades, balanced with generous amounts of floor malted crisp Maris Otter barley.","ibu":38,"name":"Afterburner IPA","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.5999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bigger..Richer...Smoother, are all ways to describe a Marzenbier. Look for a toasted malt character balanced with slight hop bitterness. Marzenbiers are traditionally aged for months and unveiled to great celebration.","ibu":119,"name":"Saranac Marzenbier","state":"New York","website":"http://www.saranac.com"},{"abv":8.854635003498807,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"a special bottle dedicated to Jim Steen, member of the Professional Rodeo Coyboys Association and rogue extrodinaire.","ibu":77,"name":"Roughstock Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":8,"address":"1940 Olney Avenue","category":"Irish Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This robust dark brew has been created using rich Colombian dark roast coffee to celebrate our 10th anniversary in royal fashion. The enticing regal aromas of toffee and licorice lead to the coronation of taste; a palate of malty richness exhibiting chocolate and coffee notes, balanced by the noble and novel Mt. Rainer hop, all topped with a rich creamy crown. This very special offering will warm your soul and lift your spirits. Oh yeah, it also packs a royal kick at 8% alcohol.","ibu":62,"name":"Imperial Espresso Porter","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":46,"name":"Moinette Brune","state":"Hainaut"},{"abv":9,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":16,"name":"Gouden Carolus Tripel","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5.6999998093,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":57,"name":"Piranha Pale Ale","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6.253184790051105,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":55,"name":"Red Ale","state":"California"},{"abv":4.8000001907000005,"address":"390 Capistrano Road","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":28,"name":"Harbor Light Ale","state":"California"},{"abv":8.5,"address":"Hauwaart 105","city":"Oudenaarde","coordinates":[50.831,3.6759],"country":"Belgium","ibu":14,"name":"Ename Tripel","state":"Oost-Vlaanderen"},{"abv":6.75,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":40,"name":"Uff-Da Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.1999998093,"address":"1 Jefferson Avenue","category":"German Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"In 1888, After enduring one of the coldest winters on record, the employees of Jacob Leinenkugel's spring brewery crafted their first seasonal beer to celebrate the coming of spring. They blended dark and pale roasted malted barley with select hops and allowed for longer aging to create a robust beer with an exceptionally creamy head. Unchanged since 1888, You'll find our bock's sturdy bod and deep color perfect to draw you out of one season and the into next.","ibu":48,"name":"1888 Bock","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":13.927929049368178,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":113,"name":"Wallace","state":"Scotland"},{"abv":1.2510877342607718,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":0,"name":"Vondel","state":"West-Vlaanderen"},{"abv":14.123392951331258,"address":"Delaunoystraat 58/60","category":"Belgian and French Ale","city":"Molenbeek","coordinates":[50.8527,4.3311],"country":"Belgium","ibu":19,"name":"Gueuze","state":"Brussel"},{"abv":2.5484815286051954,"city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":68,"name":"Derailer ESB","state":"Colorado"},{"abv":7.689468972898654,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":8,"name":"Cyclops Barleywine","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":1.4206236945620965,"address":"424 South Gay Street","category":"North American Ale","city":"Knoxville","coordinates":[35.9657,-83.9181],"country":"United States","ibu":90,"name":"Black Bear Ale","state":"Tennessee"},{"abv":10.74757124446852,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":100,"name":"Stout","state":"Ohio"},{"abv":9.686619240884859,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":6,"name":"Nut Brown Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.85527894440757,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":70,"name":"Burning Skye Scottish Ale","state":"Nebraska"},{"abv":4.436073856344285,"address":"33 Main Street","category":"North American Ale","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":48,"name":"Hop Garden Pale Ale","state":"New Jersey"},{"abv":1.441891954186152,"address":"1295 North West Street","category":"North American Ale","city":"Wilson","coordinates":[43.4988,-110.877],"country":"United States","ibu":29,"name":"Moose Juice Stout","state":"Wyoming"},{"abv":7.8636566986126955,"address":"Alte Akademie 2","category":"German Lager","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":6,"name":"Festbier","state":"Bayern"},{"abv":2.0367020285972104,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":112,"name":"Reserve Speciale / Spéciale Noël","state":"Hainaut"},{"abv":7.5,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":54,"name":"Northwind Imperial Stout","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":5,"city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":115,"name":"Classic Pilsener","state":"Wisconsin"},{"abv":14.53655173042756,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":118,"name":"Mermaid Red","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":4.8000001907000005,"address":"620 South Madison Street","category":"British Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"English style best bitter. It is a traditional English pub ale that is easy drinking, often referred to as a \"session beer\". It is medium-bodied and copper colored with a noticeable malt flavor up front that finishes with a hop bitterness and floral hop flavor.","ibu":90,"name":"Anvil Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":13.280182150028857,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":3,"name":"Hop Hazard","state":"Pennsylvania"},{"abv":7,"address":"555 North Mill Street","category":"North American Ale","city":"Aspen","country":"United States","description":"Have you ever heard of an ESB? In most cases, it stands for Extra Special Bitter, and man is this red extra special. Conundrum walks the line between a malt-centric sweet ale and a hop-centric bitter ale so well, it","ibu":65,"name":"Conundrum Red Ale","state":"Colorado","website":"http://aspenbrewingcompany.com"},{"abv":9,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A dry and stupendously hopped medium bodied Imperial IPA brewed with Canadian two-row malt, dextrose sugar and lots of American hops. Arctic Panzer Wolf has superior aromas of marmalade, white wine, pine and apricot all mixed with an intense American hop bitterness.","ibu":93,"name":"Arctic Panzer Wolf","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":9.3999996185,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":53,"name":"Canadian Breakfast Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":1.3350104694338893,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":67,"name":"2xIPA","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A unique 7% Belgian blonde ale, flavoured with juniper berries. The beer has bittersweet malt flavours, and a heady perfumed aroma of orange and juniper.","ibu":90,"name":"Abbaye de St Amand","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":8,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Country of origin: India \n\nBeer type: Lager \n\nAlcohol content by volume: < 8 % by volume \n\nCarbohydrates: - \n\nTaste: Smooth and strong with a rich malty taste \n\nMalts: Indian malts, 6 row barley \n\nHops: Hops extract from Germany and Indian hops palate \n\nColour: Golden yellow \n\nAvailability: India \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml, 330 ml Indian standard glass bottle ; 500 ml cans and 330 ml cans,( in select markets) \n\n\nhttp://www.sabmiller.in/brands_knock-out.html","ibu":17,"name":"Knock Out","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":12.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"\"Black, dense, and rich, this is a great ale for the cellar.\" This big brew is made with molasses and brewer's licorice.","ibu":58,"name":"Bell's Batch 9000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.4000000954,"address":"Cnr Turumaha and Herbert St","category":"Irish Ale","city":"Greymouth","coordinates":[-42.4505,171.207],"country":"New Zealand","description":"Monteith’s Celtic Beer is considered an ‘Irish-style ale’ in the heritage of beers of a burnt-red colour traditionally brewed in the Emerald Isle.\n\n\nMonteith’s Celtic Beer has a dry roasted malt flavour characteristic of this style of brewing. This malty characteristic and crisp dryness is derived from malts of the roasted chocolate malt style. The hop character is medium to allow the chocolate malts to show through.\n\n\nMonteith’s brewers have been able to develop traditional ale fermentation characters while allowing the interesting roasted malt notes to come through in the aroma.","ibu":111,"name":"Monteith's Celtic Beer","website":"http://www.monteiths.com/nz/"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"A massive beer in every sense of the word. A stronger and more contemplative version of our Lost and Found Ale. Judgment Day is the base beer for our Cuvee de Tomme. Many of the Trappist Breweries produce a version of beer which ages incredibly well for many years to come. And, since none of us knows when the end of the world is coming, we suggest you stock up with lots of Lost Abbey beers so that when the end of the world magically appears from no where, you’ll have a beer or two on hand for even the stingiest of angels. Available in 750ml bottles and on draft at select inspired locations.","ibu":47,"name":"Judgement Day","state":"California","website":"http://www.lostabbey.com/"},{"abv":9,"address":"701 Galveston Ave","category":"Other Style","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Warm up the long, cold nights of winter with Rahr's latest seasonal offering. Wonderfully robust, rich and full-bodied, Rahr's Winter Warmer is crated in the fine British tradition of holiday ales. Perfect for either holiday gatherings or quiet evenings at home.","ibu":20,"name":"Rahr's Winter Warmer","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Rahr's Buffalo Butt is a smooth, medium-bodied amber lager. Notes of caramel with a sound malt character. Nice hop finish, it's as smooth as a baby buffalo's...!","ibu":38,"name":"Buffalo Butt","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.5,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Munich Dark is a blend of dark malts that creates a deeper hue than some other beers brewed in this style. The grains which create a malty chocolate-like flavor also add a warm malty nose that mingles with the subtle hop aroma. This medium bodied beer is balanced quite well with a moderately bitter hop finish.","ibu":25,"name":"Harpoon Munich Dark","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.8000001907000005,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"The ale by which all others should be measured. With its famous cloudy sediment and its distinctive balance of malt, hops and fruity characters, the old 'Red Label' is a tasty slice of Coopers history. \n\n\nLittle has changed since Thomas Cooper produced his first batch of Coopers Sparkling Ale in 1862. It's still brewed naturally using the century old top fermentation method and it still tastes great! \n\n\nSparkling Ale contains no additives or preservatives.","ibu":108,"name":"Coopers Sparkling Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":11.213361463167155,"address":"Brauhausplatz 1","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":48,"name":"Golden Abbot Lager","state":"Brandenburg"},{"abv":9.807466907583946,"address":"2323 N Milwaukee Ave","category":"North American Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"An amber pale ale dry hopped with a blend of American hops.","ibu":14,"name":"Iron Fist Pale Ale","state":"Illinois","website":"http://revbrew.com/"},{"abv":13.035250900834368,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":99,"name":"Blur IPA","state":"California"},{"abv":0.8408063725918569,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":98,"name":"Stillwater Rye","state":"Montana"},{"abv":8.3163430303359,"address":"7474 Towne Center Parkway #101","category":"Irish Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":74,"name":"Porter","state":"Nebraska"},{"abv":2.9891452001235153,"address":"1101 North Water Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":71,"name":"Old World Oktoberfest","state":"Wisconsin"},{"abv":3.317514942225178,"address":"233 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":101,"name":"Downtown Lites Honey Ale","state":"Wisconsin"},{"abv":14.96320891717907,"category":"Other Style","city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":19,"name":"Raspberry","state":"Texas"},{"abv":5.8000001907000005,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":103,"name":"Mt.Tam Pale Ale","state":"California"},{"abv":11,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":42,"name":"Immort Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":13.31572053860648,"address":"467 North High Street","category":"North American Ale","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":14,"name":"Pale Ale","state":"Ohio"},{"abv":1.189265867640219,"address":"639 Conner Street","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":42,"name":"Hazelnut Brown","state":"Indiana"},{"abv":8.408096757595583,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":11,"name":"Imperial Pale Ale","state":"Missouri"},{"abv":14.047735351701409,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":33,"name":"Auburn","state":"Indiana"},{"abv":18,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A strong ale brewed with a ridiculous amount of pureed raspberries (over a ton of em!).","ibu":36,"name":"Fort","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.1999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Arrogant Bastard Ale aged in oak barrels.","ibu":74,"name":"Oaked Arrogant Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.3000001907,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light in color, medium body, with a hop bitterness and Cascade hop finish.","ibu":43,"name":"Cascade IPA","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":6.329063489362107,"address":"310 Commercial Drive","category":"North American Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"Derives its name from the historical fact that at one time in Europe beer was about the only safe liquid to drink. Black Plague is Irish style dry stout brewed only in fall and winter and only in small batches to ensure the freshness so paramount to such an intensely roasted beer.","ibu":107,"name":"Black Plague Stout","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":5,"address":"929 North Russell Street","category":"North American Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"A rich, flavorful Amber that's smooth and easy to drink. Drop Top is fermented by an American Ale yeast to produce beer with a clean flavor and fruity aroma. The velvet texture is from using Honey malt and a touch of milk sugar. The Alchemy bittering hops provide soft bitterness. Simcoe, a newly developed hop variety, adds unique hop flavor and aroma. 2004 GABF Gold Medal Award Winner","ibu":55,"name":"Drop Top Amber Ale","state":"Oregon"},{"abv":3.599999904599999,"address":"563 Second Street","category":"British Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"An American session beer. Loaded with hop character and a malty presence, but lower in alcohol.","ibu":14,"name":"Bitter American","state":"California","website":"http://www.21st-amendment.com/"},{"abv":7.1999998093,"address":"50 N. Cameron St.","category":"German Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Volks Weizenbock combines the strong malty component of a bock bier with the tangy, spiciness of the Hefe Weizen. This beer is brewed 1 1/2 times stronger than our Hefe Weizen and is aged commensurately longer for extra smoothness! \n\nVolks Weizenbock is \"The Peoples Beer\"!","ibu":59,"name":"Volks Weizenbock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":14.986044920118399,"address":"2920 North Henderson Ave","category":"North American Ale","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":30,"name":"Icehaus Pale Ale","state":"Texas"},{"abv":13.569816663618484,"address":"2730 NW 31st Avenue","city":"Portland","coordinates":[45.5415,-122.713],"country":"United States","ibu":72,"name":"Zig Zag Lager","state":"Oregon"},{"abv":5.445910222580881,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":3,"name":"Ruby Mild","state":"Illinois"},{"abv":14.26954802160742,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":4,"name":"Golden Light","state":"Illinois"},{"abv":11.795536134268024,"address":"1208 14th Avenue","category":"North American Ale","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":98,"name":"Dempsey Stout","state":"Wisconsin"},{"abv":13.863558406885494,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":109,"name":"Black Hawk Stout","state":"Iowa"},{"abv":13.948618194570386,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Robust in character yet smooth in delivery, Cabin Fever is a roasty brown ale and a hearty, comforting companion for long, mind-bending winters. Its rye, roast and raisin notes play off a subtle caramel sweetness and culminate in a dry finish. Excellent with roasts, stews, caramelized onions and snowfall.","ibu":82,"name":"Cabin Fever","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":1.244685420494731,"address":"61 US Highway 1 South","category":"North American Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":53,"name":"Oatmeal Stout","state":"New Jersey"},{"abv":14.663986535211869,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":34,"name":"Dunkel","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5.1999998093,"address":"Moosstrae 46","category":"German Ale","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":4,"name":"Eine Bamberger Weisse Hell","state":"Bayern"},{"abv":3.4000000954000003,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":31,"name":"Best Bitter","state":"Oxford"},{"abv":2.9425908586090554,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":46,"name":"Prostrator Doppelbock","state":"Wisconsin"},{"abv":11,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Pliny the Younger was Pliny the Elder's nephew, in the case of this beer, the \"Younger\" is a triple IPA. Pliny the Younger is hopped three times more than our standard IPA, and is dry hopped four different times.","ibu":67,"name":"Pliny the Younger","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":2.689266150321589,"address":"310 Commercial Drive","category":"North American Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"“A complex, flavourful and fascinating ale lies just on the edge of being totally out of control.” —Stephan Beaumont, Celebrator Beer News\n\n\nIndia Pale Ale dates back to the 1700’s when Britain needed a hearty beer to ship to her troops in India. Because the ships had to cross the equator twice to get there, spoilage was a major problem until some clever brewer realized that both alcohol and hops are natural preservatives. James brews Hurricane I.P.A. in this tradition, and packs it with enough hops and alcohol to survive crossing the orbit of Mercury twice. The grist is 100% Gambrinus premium 2-row barley malt, copiously hopped with fresh Centennial and Willamette. The result is a rich, golden, intense beer with bitterness in perfect balance with residual sweetness.","ibu":14,"name":"HURRICANE I.P.A.","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":3.0472902452271566,"address":"375 Water Street","category":"Irish Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"As you look out over Vancouver's Coal Harbour, relax with this creamy delight. Don't let the colour fool you - this porter is rich but not overpowering with a head that lingers all the way down the glass. Just about anything goes with our Coal Porter, and you don't have to belong to \"High Society\" to enjoy a glass with oysters.","ibu":15,"name":"Coal Porter","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":10.60539707140885,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":50,"name":"Carhenge Wheat","state":"Nebraska"},{"abv":8.670842730806003,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":68,"name":"Hinterland Maple Bock","state":"Wisconsin"},{"abv":5.1999998093,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":94,"name":"Bruegel Amber Ale","state":"Oost-Vlaanderen"},{"abv":13.27846114134038,"address":"1 Worcester Road","category":"North American Lager","city":"Framingham","coordinates":[42.3037,-71.3966],"country":"United States","ibu":72,"name":"Wilmington Roggen Beer","state":"Massachusetts"},{"abv":10.735966988494065,"category":"North American Ale","city":"Colorado Springs","coordinates":[38.8339,-104.821],"country":"United States","ibu":83,"name":"Blind Side Pale Ale","state":"Colorado"},{"abv":13.958309852905149,"category":"German Ale","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":118,"name":"Hefeweizen","state":"California"},{"abv":6,"address":"Farmers Row","city":"Llanelli","coordinates":[51.6987,-4.1456],"country":"United Kingdom","ibu":20,"name":"Thames Welsh Ale","state":"Wales"},{"abv":5.5,"category":"North American Ale","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":33,"name":"Artist Colony Ale","state":"Iowa"},{"abv":8.287640885098524,"address":"23 Commerce Street","category":"German Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":52,"name":"Dunkel Doppel Weizen Bock","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":14.831942235582533,"category":"North American Ale","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":26,"name":"Sunset Amber","state":"Mississippi"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"This incredibly intriguing Imperial Stout is made by aging our Old Heathen in some very famous Oak barrels that were used for aging bourbon! What do we have when we are done? A stout whose very essence has been enhanced. A stout whose complexity has been increased. A stout with notes of Oak, whiskey and vanilla melding together to create a new sensation. Have we gone too far this time? We don't think so. Heresy is a step above and a leap beyond the extraordinary. Taste it and see what everyone is talking about. 8.0% ABV","ibu":37,"name":"Heresy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":1.8804557683479883,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":57,"name":"Sealane Steam","state":"California"},{"abv":7.995826766831195,"city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":92,"name":"Extra Special Bitter Ale","state":"Colorado"},{"abv":3.05188478660447,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":7,"name":"Limestone Crisp-Hoppy Pale Ale (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":1.3863603796730772,"city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":94,"name":"Raspberry Porter","state":"Nebraska"},{"abv":11.854442363899764,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":68,"name":"Kristall Weiss","state":"Illinois"},{"abv":9.914950562144757,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":44,"name":"Great Lakes Amber Ale","state":"Michigan"},{"abv":5,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":96,"name":"Fraoch Heather Ale","state":"Scotland"},{"abv":5,"address":"Niigata-ken Nishikanbara-gun","category":"Other Style","country":"Japan","description":"Japanese Rice Lager","ibu":82,"name":"Koshihikari Echigo Beer","website":"http://www.echigo-beer.jp/"},{"abv":8.1999998093,"address":"1680-F East Waterloo Rd.","category":"British Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Rich, malty flavors of caramelized and toasted grains dominate this strong Scotch ale. A hint of rye adds a crisp, Scotch-like, old-world beer character, reminiscent of a simpler life from centuries ago. “It is a wee bit heavy”","ibu":98,"name":"Outta Kilter Wee-Heavy Scotch Red Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.1999998093,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"The latest in our Brewers’ Select One-offs, India is a West Coast style IPA at [7.2%] ABV, with incredibly delicious hoppiness! Golden in color, this beer is tilted way over toward the hops by way of less specialty malts used in the mash. Draft will be going out to select wholesalers in PA, NJ, FL, and MD.” 70+ IBU’s.","ibu":6,"name":"Weyerbacher India","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":9,"address":"2051A Stoneman Circle","category":"North American Lager","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Neolithic humans evolved from nomadic hunters into a more settled agricultural society, changing life forever. The ‘founder’ crops they raised included wheat and barley. It is little surprise that the first examples of brewing appeared during this age.\n\n\nBrewers owe much to the epoch. Similarly, we thank our farmer friends of today for cultivating the ingredients the are responsible for the beers we now enjoy. Their laborious days spent ourdoors under the hot sun earn them respect, as well as a mark of distinction: the farmer's tan. Yes, the inevitable red and white hallmark of hard work.","ibu":105,"name":"Farmer's Tan Imperial Pale Lager","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":12,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"The irony of existentialism, the parody of being and the inherent contradictions of post-modernism, all so delicately conveyed by the blocky, pixelated arcade action have all been painstakingly recreated in this bottles contents.\n\n\nThis imperial stout is brewed with copious amounts of speciality malts, jasmine and cranberries. After fermentation we then dry-hop this killer stout with a bucketload of our favourite hops before carefully ageing the beer on French toasted oak chips.\n\n\nIt is all about moderation. Everything in moderation, including moderation itself. What logically follows is that you must, from time, have excess. This beer is for those times.","ibu":99,"name":"Tokyo","website":"http://brewdog.com/"},{"abv":4.8000001907000005,"address":"2519 Main St.","category":"Other Style","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"This beer is lighter style and dry to the palate and with the distinct flavor of wheat makes for a perfect thirst-quenching beer. It is the ideal drink for beer drinker who appreciates tradition and personality in their beer, but also seeks a lighter, refreshing style, perfect for the summer months.","ibu":34,"name":"Goofy Foot Summer Wheat","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":2.6715206633053192,"address":"1022 Main Ave.","category":"North American Lager","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"A light bodied golden ale, low in hop character with a spicy aroma from whole Czech Saaz hops.","ibu":93,"name":"Lightner Creek Lager","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":3.356727609421987,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":26,"name":"Genesis","state":"California","website":"http://www.shmaltz.com/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":119,"name":"Espresso Oak Aged Yeti","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":8.1999998093,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":104,"name":"Hop Stoopid","state":"California","website":"http://www.lagunitas.com/"},{"abv":4.5999999046,"address":"5N404 Harvest Lane","category":"Other Style","city":"St Charles","coordinates":[41.9455,-88.4507],"country":"United States","description":"An ale flavored with fresh tomatoes, oregano, basil and garlic.","ibu":87,"name":"Mamma Mia! Pizza Beer","state":"Illinois","website":"http://www.mammamiapizzabeer.com/"},{"abv":5.0999999046,"address":"1 Jefferson Avenue","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":63,"name":"Oktoberfest","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.5,"address":"1213 Veshecco Drive","category":"North American Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Anthony Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him a promotion to the rank of brigadier general and the sobriquet of \"Mad Anthony\". Erie Brewing Co’s Classic American Pale Ale features a balanced malt and hop flavor, which we feel the Nutty General would approve of despite his revolutionary tendencies.","ibu":36,"name":"Mad Anthony's Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":2.5556963105074217,"ibu":68,"name":"07/22/10 08:00 PM"},{"abv":4.9000000954,"address":"929 North Russell Street","category":"German Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"A golden unfiltered wheat beer that is truly cloudy and clearly superb. Ever since Widmer introduced Hefeweizen to America in 1986, ours has been the standard by which all other Hefeweizens are judged.\n\n1998 and 2006 GABF Gold Medal Award Winner\n\n2004 Gold Medal Beer Cup","ibu":22,"name":"Widmer Hefeweizen","state":"Oregon"},{"abv":7.6999998093,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A brew that gives you either sympathy for the devil or the courage to face him. Goes especially well with your favorite lost my girl/truck/dog/trailer song.","ibu":60,"name":"Hell Hath No Fury Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6,"address":"231 W. Fourth Street","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"This lightly colored ale has a delicate floral aroma and flavor reminiscent of Williamsports first breweries, clean and crisp with just a touch of lingering sweetness leading to a dry, balanced finish.","ibu":43,"name":"Billtown Blonde","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":1.0295928345290373,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":33,"name":"Czech Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":9,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":53,"name":"Grand Cru","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":8.278539817007239,"address":"1265 Boston Avenue","category":"North American Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":117,"name":"Sawtooth Ale","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":6.6999998093,"address":"2380 Larsen Drive","city":"Camino","coordinates":[49.1482,-122.862],"country":"United States","ibu":57,"name":"Farm House Ale","state":"California"},{"abv":6.27473617205141,"address":"1900-B East Lincoln Avenue","category":"German Lager","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","ibu":104,"name":"The Kidd Lager","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":5.4000000954,"address":"Kuli vart 7","city":"Klaipda","country":"Lithuania","ibu":43,"name":"1784 Anniversary Beer"},{"abv":4.5,"address":"Unit 21-24 Batten Road Industrial Estate","category":"North American Ale","city":"Salisbury","country":"United Kingdom","ibu":18,"name":"Entire Stout","state":"Wiltshire"},{"abv":5.815112220995612,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":29,"name":"Witbier","state":"Nebraska"},{"abv":12.451519620242719,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":96,"name":"Über-Sticke Altbier","state":"Wisconsin"},{"abv":6.7007700128558625,"address":"117 South First Street","category":"North American Ale","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":69,"name":"India Pale Ale","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":6,"name":"Pilsner","state":"Wisconsin"},{"abv":4.8499999046,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":107,"name":"Hazed & Infused Dry-Hopped Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.8745705112785,"address":"Augsburgerstrae 41","category":"German Ale","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":90,"name":"König Ludwig Weissbier Hell","state":"Bayern"},{"abv":11.899999619,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":78,"name":"Czar Imperial Stout","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":7.5999999046,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"At once cuddly and ferocious, (512) BRUIN combines a smooth, rich maltiness and mahogany color with a solid hop backbone and stealthy 7.6% alcohol. Made with Organic 2 Row and Munich malts, plus Chocolate and Crystal malts, domestic hops, and a touch of molasses, this brew has notes of raisins, dark sugars, and cocoa, and pairs perfectly with food and the crisp fall air.","ibu":26,"name":"(512) Bruin","state":"Texas","website":"http://512brewing.com/"},{"abv":9.833547271934487,"ibu":78},{"abv":10.600000381000001,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Big DIPA – Double IPA, is the first in the Heavy Seas Special Edition Series due to be released in mid June. Hopped 3 times in the brewing process, Big DIPA has an earthy hop aroma. In keeping with the Heavy Seas philosophy we've made a big beer with a surprising balance. The best part is that you’ll hardly notice it’s 10.6% ABV (est). The label artwork was created by Kurt Krol, one of our brewers who also helped to develop the recipe.","ibu":41,"name":"Heavy Seas Big DIPA","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.827832953131726,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":110,"name":"Sky High Rye","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":12.07537631233343,"address":"101 Oak Street","category":"Belgian and French Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A Belgian \"seasonal\" ale brewed during winter for the spring and summer months. This is a crisp, refreshing beer with hints of spice and fruit.","ibu":59,"name":"Standing Stone Saison","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":4.886657490947927,"address":"9750 Indiana Parkway","category":"German Lager","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":50,"name":"Munsterfest","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":4.1999998093,"address":"470 Prospect Village Dr.","category":"Other Style","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"This is one of our most popular beers. It is a light and refreshing raspberry-flavored wheat ale. We use pure raspberry extract to give this beer its fruity aroma and flavor.","ibu":109,"name":"Long's Peak Raspberry Wheat","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":4,"address":"2713 El Paseo Lane","category":"British Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"Low in alcohol but big in flavor. This beer is dry hopped like an IPA but the alcohol and bitterness have been reduced for a great session beer.","ibu":37,"name":"Barristers Bitter","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":7,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"This big, glowing, powerful IPA is packed with assertive Northwest hops that are floral, citrusy and resinous. A healthy dose of Munich malt helps to provide backbone and balance against the hoppy attack. The result? Explosive!","ibu":114,"name":"Hop Lava","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":5.3000001907,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"Brewed in honor of Andrew’s Grandfather LeRoy, this big bad nut brown ale has a fantastic malt character made up of caramel and chocolate flavors. One taste and you will see why this is the baddest beer in the whole damn town!!!","ibu":95,"name":"LeRoy's Brown Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":7.8964564457699336,"address":"102 North Market Street","category":"North American Lager","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","ibu":96,"name":"Bube's Munich Lager","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":9,"address":"1430 Vantage Court #104A","category":"Belgian and French Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Extreme ale converging San Diego-style imperial pale ale and Belgian-style trippel.","ibu":29,"name":"Le Freak Belgian Style IPA","state":"California","website":"http://www.greenflashbrew.com"},{"abv":7.1999998093,"address":"40 Van Dyke St","category":"Other Style","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Righteous Ale is actually a Rye Beer, brewed with a high amount of hops.","ibu":97,"name":"Righteous Ale","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":7,"address":"905 Line Street","category":"Irish Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Coming in at an ABV of 7.0%, Our Black Hole satisfies the transition from dark ale to stout. We think of this as slightly \"Porter-ish\" with a strong malt body and a very light hop finish. This is brewed year round and is available in Pennsylvania in the regular Variety Pack. This will help the ale drinker among us maintain their own balance!","ibu":80,"name":"Black Hole","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.5999999046,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":52,"name":"Hart Espresso Stout","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":13.443389370444692,"address":"519 Seabright Avenue #107","category":"German Lager","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":78,"name":"Oktoberfest","state":"California"},{"abv":6,"address":"Bergerstrae 1","category":"North American Ale","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":45,"name":"Sticke","state":"Nordrhein-Westfalen"},{"abv":12.385800105796582,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":93,"name":"Trappist Bruin Bier / Bière Brune","state":"Limburg"},{"abv":4.371789299796167,"address":"2 - 836 Devonshire Road","category":"North American Ale","city":"Victoria","coordinates":[48.4358,-123.396],"country":"Canada","ibu":44,"name":"Beacon India Pale Ale","state":"British Columbia"},{"abv":8.924444310923539,"address":"202 - 13018 80th Avenue","category":"British Ale","city":"Surrey","country":"Canada","ibu":21,"name":"Cream Ale","state":"British Columbia"},{"abv":4.5,"address":"22 rue Wormhout","city":"Esquelbecq","coordinates":[50.8851,2.4329],"country":"France","ibu":28,"name":"XTra"},{"abv":9.817640377196241,"address":"111 South Murphy Avenue","category":"North American Lager","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":110,"name":"Hefeweizen","state":"California"},{"abv":9.279999733,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":92,"name":"Undercover Investigation Shut-Down Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":10,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":102,"name":"Burton Baton","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.599999904599999,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A stupendous Midland Mild Ale whose epic malt infused acts of sweet caramel sensations leave all who pour it speechless. Its roasted notes of sun soaked grain are appearing in the Summer Variety Show in a not to be missed engagement. Brewed with Belgian Candi Sugar.","ibu":38,"name":"Odd Notion Summer 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"Other Style","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"An American wheat ale brewed with Saaz hops. Spicy and fruity, Oberon is the color and scent of a summer afternoon.","ibu":80,"name":"Oberon Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Don de Dieu displays an appealing orange-golden hue with a stable, creamy head of foam. Its fruity, malty and yeasty flavor is quickly succeeded by a palate-warming finish of roasted nuts and spices.\n\n\nThis smooth, exceptionally strong triple wheat\n\nale offers a complex flavor that is slightly\n\nfruity, malty, nutty and yeasty, with a hint of \n\nunfiltered sake.","ibu":88,"name":"Don De Dieu","state":"Quebec","website":"http://www.unibroue.com"},{"abv":3.7999999523,"address":"514 South Eleventh Street","category":"North American Lager","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our lightest beer has all of the great attributes of a light American lager with the unmatched freshness and taste only a local brew pub like Upstream can offer. If you like great tasting beer, O! Gold is the beer for you.","ibu":71,"name":"O! Gold Light Beer","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":13.261095920756809,"category":"German Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":15,"name":"Freys Weizen","state":"Wisconsin"},{"abv":4.894433924144733,"category":"Irish Ale","city":"Reedsburg","coordinates":[43.5325,-90.0026],"country":"United States","ibu":48,"name":"Porter","state":"Wisconsin"},{"abv":0.1600564354591416,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":42,"name":"Amber","state":"Wisconsin"},{"abv":14.913817024150651,"address":"3832 Hillside Drive","category":"German Lager","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":0,"name":"Oktoberfest","state":"Wisconsin"},{"abv":6.65239414472627,"address":"14600 East Eleven Mile Road","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","ibu":118,"name":"Excalibur Barleywine","state":"Michigan"},{"abv":11.78329373473598,"address":"1535 Pearl Street","category":"North American Lager","city":"Boulder","coordinates":[40.019,-105.275],"country":"United States","ibu":90,"name":"Chazz Cat Rye","state":"Colorado"},{"abv":6.2628725518108075,"address":"143 Highway 59 Building 6","category":"North American Ale","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":65,"name":"Copper","state":"New York"},{"abv":7.703977762766766,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":35,"name":"Schlafly Oatmeal Stout","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":13.991091813750993,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":93,"name":"Buckeye Brown","state":"Ohio"},{"abv":8.89948657960066,"address":"Laurenziplatz 20","category":"German Ale","city":"Bamberg","coordinates":[49.8851,10.8823],"country":"Germany","ibu":107,"name":"Weizen","state":"Bayern"},{"abv":0.46030006050424954,"address":"Unter Taschenmacher 5-7","city":"Kln","coordinates":[50.9394,6.9594000000000005],"country":"Germany","ibu":106,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":3.5,"address":"1257, Kounsosu","category":"North American Ale","city":"Ibaraki","country":"Japan","ibu":36,"name":"Hitachino Nest Sweet Stout","state":"Kanto"},{"abv":5,"address":"701 West Glendale Avenue","category":"North American Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A delicate balance of toasted malt and fresh hops give this medium-bodied German-style lager an intriguing, complex malt flavor. A creamy head, deep golden color and an impressive hop bouquet make this a very special beer.","ibu":12,"name":"Special Amber","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.778737360388101,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Triplebock 1995","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":0.15730957329215034,"address":"680 rue de la Brasserie","category":"British Ale","city":"Dommartin les Remiremont","coordinates":[48.0028,6.6583],"country":"France","ibu":61,"name":"Bête des Vosges"},{"abv":6,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":50,"name":"Steamroller Stout","state":"California"},{"abv":6.5,"address":"Spott Road","category":"British Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":61,"name":"Wee Heavy","state":"Scotland"},{"abv":1.2703908017657384,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":67,"name":"Our Special Ale 1996","state":"California"},{"abv":3.518914960916597,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":93,"name":"Amber Ale","state":"Washington"},{"abv":8.326334907973337,"category":"British Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":35,"name":"Magnificent Mild","state":"Illinois"},{"abv":5.800894889213306,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":45,"name":"Blacksmith Stout","state":"Illinois"},{"abv":5.3000001907,"address":"71 King Street North","category":"North American Lager","city":"Waterloo","coordinates":[43.4676,-80.5231],"country":"Canada","ibu":98,"name":"Premium Lager","state":"Ontario"},{"abv":4.1999998093,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Our flagship brand, Miller Lite, is the great tasting, less filling beer that defined the American light beer category in 1975. We deliver a clear, simple message to consumers: \"Miller Lite is the better beer choice.\" What's our proof? \n\n1) Miller Lite is the original light beer. \n\n2) Miller Lite has real beer taste because it's never watered down. \n\n3) Miller Lite is the only beer to win four gold awards in the World Beer Cup for best American-style light lager. (2006, 2002, 1998, 1996) \n\n4) Miller Lite has half the carbs of Bud Light and fewer calories*. \"Miller Lite. Good Call.\";\"0","ibu":61,"name":"Miller Lite","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":5.214798016761514,"category":"North American Ale","city":"Lake Villa","coordinates":[42.417,-88.074],"country":"United States","ibu":86,"name":"Da Bier Altbier","state":"Illinois"},{"abv":14.346201765036854,"address":"311 Tenth Street","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","ibu":20,"name":"Blue Moon Abbey Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":7.850081395348779,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":69,"name":"Wisconsin Belgian Red Brand","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":92,"name":"Bigfoot 1999","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.48197159434197,"address":"1500 Jackson Street","category":"North American Lager","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":112,"name":"Iron Range Amber Lager","state":"Minnesota"},{"abv":4.204874147511063,"category":"North American Ale","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":65,"name":"Pale","state":"California"},{"abv":6.57416199521271,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":110,"name":"Red Winter Ale","state":"Missouri"},{"abv":4.3000001907,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"Adored since 1959, it","ibu":93,"name":"Guinness Draught","website":"http://www.guinness.com"},{"abv":7.1999998093,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":92,"name":"Optimator","state":"Bayern"},{"abv":3.9909453940738193,"address":"Darmstädter Landstrasse 185","category":"German Ale","city":"Frankfurt/Main","country":"Germany","description":"alcohol-free Hefeweizen with the tipical taste, isotonic,","ibu":112,"name":"Schöfferhofer Hefeweizen alkoholfrei","state":"Hessen","website":"http://www.schoefferhofer.de/"},{"abv":8,"address":"8938 Krum Ave.","category":"German Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A traditional dopplebock fermented with a Bohemian lager yeast. Reddish brown in color, with a mild hop profile, Consecrator is a well balanced, full bodied beer with hints of caramel and molasses in its smooth, malty finish.","ibu":67,"name":"Consecrator Doppelbock Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":7.5,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This is the old tried and true Blind Date Ale of old. It is based on an English Olde Ale but has an addition of 300 pounds of Arizona grown Medjool dates. The dates contribute a complexity and sweetness that the malt alone cannot. This Blind Date has been aged for three months in Jim Beam oak bourbon barrels. The oak and bourbon lend flavors of vanilla, wood, and of course, bourbon. These flavors layered with the dates created a big, multi-leveled ale. The alcohol content is about 7.5% alc/vol. You'll have to get to Four Peaks quick since we only have a few kegs of this unique beer.","ibu":44,"name":"Barrel-Aged Blind Date Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":8.5,"address":"905 Line Street","category":"German Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","ibu":22,"name":"Weyerbacher Juliet","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":6,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"Don't let the golden color fool you - this isn't your father's lite beer!\n\n\nBrewed with imported German malts and US-grown hops, this beer is a full-flavored introduction to craft-brewed beer. We add the hops late in the boil, allowing you to enjoy the flavor and aroma of the hops without an aggressive bitterness.","ibu":101,"name":"Captin Lawrence Liquid Gold","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":18.200000763,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":25,"name":"Tokyo*","website":"http://brewdog.com/"},{"abv":4.0999999046,"address":"AB43 8UE","category":"British Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A titillating, neurotic, peroxide, punk of a pale ale. Combining attitude, style substance and a little bit of low self esteem for good measure; what would your mother say?\n\n\nYou really should just leave it alone...\n\n\n...but you just cant get the compulsive malt body and gorgeous dirty blonde colour out of your head. The seductive lure of the sassy passion fruit hop proves too much to resist. All that is even before we get onto the fact that there are no additives preservatives, pasteurization or strings attached.\n\n\nAll wrapped up with the customary Brewdog bite and imaginative twist. This trashy blonde is going to get you into a lot of trouble.","ibu":56,"name":"Trashy Blonde","website":"http://brewdog.com/"},{"abv":5.5,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Anything but a typical American Pale, Santa Fe Pale Ale is as full bodied as its most robust English counterparts, while asserting its American origin with a healthy nose resplendent with Cascade and Willamette hops. It finishes with a well-balanced combination of the subtle, almost Pilsner-like maltiness accentuated by the German yeast used to brew this Santa Fe classic, and a hop bite sufficient to leave a lingering smile on the face of any fan of American Pale Ales.","ibu":58,"name":"Sante Fe Pale Ale","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":4.8000001907000005,"address":"SKOL Breweries Limited","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"BEER TYPE Indus Pride is a 100% malt beer \n\nPRODUCT PROPOSITION Made of 100% malt lending it a unique rich flavor \n\nALCOHOL CONTENT BY VOLUME 4.8% by volume \n\nTASTE Rich in flavors with a clean head and foam \n\nCOLOUR Sunrise Yellow \n\nSERVING TEMPERATURE 7 degree Celsius \n\nPACKAGING 650 ml glass bottles : 12 bottles per case\n\n330 ml pack : 24 bottles per case \n\n\nhttp://www.sabmiller.in/induspride.html","ibu":109,"name":"Indus Pride","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":5.9000000954,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"This is your solution to the same ol' ho hum brown ale you drink all the time. This ale might be dark and intimidating in a glass, yet the first sip proves to be a surprisingly refreshing assault on your taste buds. Complex blends of chocolate and roasted oats complement the essence of bittering hops, and sweet malts. The balanced combination makes this full flavored ale one to be enjoyed in any occasion.","ibu":36,"name":"Tailgate Brown Ale","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pour 422 Pale Wheat Ale into a pint glass, give it a long whiff and you’ll realize that this isn’t your average pale golden wheat. Preserved in its unfiltered state, 422 is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of orange and sweet malts waft to the fore as a touch of bitterness contributes to a smooth finish. 422 is brewed as a tribute to preserving our precious planet and it’s environment. It is responsibly packaged with over 80% recycled consumer products and is completely recyclable. Enjoy 422 all year as to take one stride closer to a eco-friendly life.","ibu":91,"name":"422 Pale Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":57,"name":"Broodoo","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6,"address":"3301-B East Fifth Street","category":"North American Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"With about 6.0% ABV, this one will surely warm the ol' gullet during a cold central Texas winter - both days! Our India Pale Ale (IPA) is light in color and strong in hop character. Dry hopping with Cascade hops, gives this winter favorite a delicious citrus note reminiscent of a Texas Ruby Red. Yes, it's warming but you don't need to be huddled around the furnace to enjoy this one! IPA fans really love this ale during a beautiful Texas winter on the porch or indoors. Available December - April","ibu":2,"name":"Liberation Ale","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":10.575976405940086,"address":"3301-B East Fifth Street","category":"German Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"Crisp, clean, and refreshing, this pilsner is styled after the original Bohemian classic from the town of Pizen, Czech Republic, Pilz is a golden-colored brew that balances a pleasant hoppiness with its smooth malt flavor. It finishes dry with a moderate bitterness that is a hallmark of the style.","ibu":14,"name":"Live Oak Pilz","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":8.75,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"\"Ale to the Chief! We the Brewers of Avery Brewing Company, in order to form a more perfect ale, require new leadership that can liberate us from our quagmires in foreign lands; embrace environmentally sound energy alternatives to imported oil; heal our ailing healthcare system; free us from tyrannical debt and resurrect the collapsing dollar. We hereby pledge to provide him with an ample amount of our Presidential Pale Ale to support in the struggle for the aforementioned goals! Hail to the New Chief!","ibu":42,"name":"Ale To The Chief","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8.098234898192944,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","ibu":108,"name":"Obamanator Maibock","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":10.04265165752261,"address":"101 Ehalt St.","category":"German Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":119,"name":"Red Star Pilsner","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":7,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"From the French word “Garde” meaning something worth keeping, this Biere de Garde styled Farmhouse Ale is a most delicious companion to a loaf of freshly baked bread from the oven. Grab a seat on the porch, some soft cheese and a tree ripened apple from your grandmother’s old orchard. Relax and watch the evening arrive as the afternoon sun is consumed by the illuminating moon over the gardens. We brewed Avant Garde for you, our friends and families. Here’s to things worth guarding over.","ibu":58,"name":"Avant Garde","state":"California","website":"http://www.lostabbey.com/"},{"abv":8.26174948983189,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":90,"name":"Spring Ale","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":10.772495244583954,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":93,"name":"Smoked Rye Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.776463129779106,"address":"1415 First Avenue","category":"British Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":117,"name":"Kilt Lifter Scotch Ale","state":"Washington"},{"abv":5.5,"address":"rstadvgen","category":"Irish Ale","city":"Falkenberg","coordinates":[56.9002,12.5405],"country":"Sweden","ibu":54,"name":"Carnegie Stark-Porter"},{"abv":5.5,"address":"Camwal Road","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":71,"name":"Morocco Ale","state":"North Yorkshire"},{"abv":5.9400000572,"address":"2880 Wilderness Place","category":"Other Style","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":94,"name":"Never Summer Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":3.837678187159288,"address":"61 Bridge Street","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":87,"name":"Best Bitter","state":"New Jersey"},{"abv":5.1999998093,"address":"Klnische Strae 94-104","category":"German Ale","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":57,"name":"Weissbier Hell","state":"Hessen"},{"abv":9.222688728371475,"address":"146 Snelling Avenue North","category":"North American Ale","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":87,"name":"Light Amber Ale","state":"Minnesota"},{"abv":4.046811836249566,"address":"400 Union Square","city":"New Hope","coordinates":[40.3659,-74.9544],"country":"United States","ibu":111,"name":"Kellerbier","state":"Pennsylvania","website":"http://www.triumphbrewing.com/"},{"abv":5.5,"address":"Aschaffenburger Straße 3-5","category":"North American Lager","city":"Großostheim","coordinates":[49.9211,9.0715],"country":"Germany","description":"A classically brewed export beer with a slight aroma of hops.\n\n\n\nAwarded with the gold medal by\n\nGerman Agriculture Society-DLG\n\n2005, 2006 and 2007\n\nMonde Selection, Brüssel 2003 and 2005\n\n2007 with Grand Gold\n\nand with the silver medal by\n\nWorld Beer Cup, Colorado 2002","ibu":65,"name":"Schlappeseppl Export","state":"Bavaria","website":"http://www.eder-heylands.de"},{"abv":5.8000001907000005,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A smooth lager that strikes a delicate balance between sweet malt and dry hop flavors.","ibu":7,"name":"Dortmunder Gold","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"Named in honor of Ed Kiessling, the worlds greatest contractor. This American pale ale is assertively hopped and dangerously drinkable. Hopheads rejoice!","ibu":10,"name":"Fast Eddies Pale Ale","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":5.4000000954,"address":"814 W Hamilton St","category":"Other Style","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Unfiltered wheat beer brewed with apricots creating a smooth and thirst quenching full flavored fruit beer.","ibu":17,"name":"Apricot Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":0.9363041008199657,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":14,"name":"O-Tay Bockwheat","state":"Wisconsin"},{"abv":7.1999998093,"address":"26 Osiers Road","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":39,"name":"Old Nick","website":"http://www.youngs.co.uk"},{"abv":9.803614128881671,"category":"British Ale","city":"Lincoln","coordinates":[38.8916,-121.293],"country":"United States","ibu":70,"name":"Lincolnshire Mild","state":"California"},{"abv":5.5,"address":"610 Third Street","category":"Irish Ale","city":"Santa Rosa","coordinates":[38.4398,-122.713],"country":"United States","ibu":117,"name":"Old Redwood Porter","state":"California","website":"http://www.thirdstreetaleworks.com"},{"abv":8.424849579626418,"address":"921 South Riverside Drive","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":19,"name":"Trailblazer Blond Ale","state":"Missouri"},{"abv":1.4792960808286515,"address":"1501 Arboretum Drive","category":"Irish Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":91,"name":"Titan Porter","state":"Wisconsin"},{"abv":5.5999999046,"address":"725 Fourth Street","category":"North American Lager","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"\"If you can't feel good about your beer... what else is worth feeling good about.","ibu":79,"name":"Beer Esteem","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Lager","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"The best selling premium irish import lager in the world today. This rich, golden pilsner style lager, with a smooth, refreshing hoppy taste, is brewed the irish way, using only the finest barley and pure spring water from the Cooley Mountains of Dundalk, Ireland.","ibu":92,"name":"Harp Lager","website":"http://www.guinness.com"},{"abv":6.0999999046,"address":"150 Simcoe Street","category":"German Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Bleue Dry, the second addition to the Bleue family, is brewed with the same care and attention to detail as Labatt Bleue. Labatt Bleue Dry is mashed longer than regular beers to leave less carbohydrate (sugar) in the finished beer, giving a clean, crisp finish. Using select aromatic hops and a blend of the finest quality North American barley malts, this lager is clean-flavoured with no aftertaste.","ibu":41,"name":"Labatt Bleue Dry","state":"Ontario"},{"abv":8.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"We celebrate the pioneering spirit of old Horace 'Hop' Wallop and those who dare mighty adventurous things in this vivid, robust ale. As our annual homage to the hop harvest, expect loads of aromatic splendor and bitter beauty.","ibu":16,"name":"Hop Wallop","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":1.8221916863398901,"category":"German Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":37,"name":"Hefe Weizen","state":"California"},{"abv":5.095399616891613,"address":"401 Cross Street","category":"Irish Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":85,"name":"Limestone English Style Porter (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":4.339476575920416,"address":"200 Village Green","category":"Other Style","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":21,"name":"Olde Orchard Ale","state":"Illinois"},{"abv":7.1999998093,"address":"8845 Quail Lane","category":"North American Ale","city":"Manhattan","country":"United States","description":"Oasis is a Double ESB/IPAish beer that came about from playing around with one of Jeff","ibu":93,"name":"Oasis","state":"KS","website":"http://www.tallgrassbeer.com"},{"abv":6.548525189083973,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Fresh, natural fruit flavor and a hint of chocolate malt makes this dark beer something really special. The just picked, fresh fruit flavor is very evident in this beer.","ibu":74,"name":"Smashing Berry Dark","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"35 Fire Place","category":"German Lager","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"As its name suggests, this Pilsner does not like to be categorized. Inquiring whether it is a German, Czech, Bavarian, American, or any other style pilsner will result in an impatient sigh and the explanation that the whole philosophy behind this pilsner is that it does not fall into any categories. True, it is brewed with traditional ingredients (soft water, pilsner malt, saaz hops, and German yeast), but it is the way that these ingredients interact, and the characteristics of the yeast, that cause this particular pilsner to defiantly stand alone. The assertively hopped Freestyle pils exudes the flavor and the aroma of the classic Saaz hop (a tribute to “the original” pilsner), while maintaining enough body to balance but not overpower this hop’s pleasant, spicy tone. An unhurried lagering process so frequently overlooked by American craft brewers is strictly adhered to in the production of Freestyle, which makes this beer by far the most light, clean, and quenching beer in the Santa Fe Brewing Company’s line up.","ibu":57,"name":"Freestyle Pilsner","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":6,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Lancaster Brewing Company’s newest release is their limited series of Shoo-Fly Porter. From the heart of Pennsylvania Dutch Country comes a delicious porter made with Lancaster County molasses, eight different malts and grains, and four different styles of hops. This beer has a deep, rich, brown color, medium to full body, and finishes with a smooth mouth feel.","ibu":95,"name":"Shoo-Fly Porter","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.228717217225527,"ibu":67,"name":"07/22/10 08:00 PM"},{"abv":6,"address":"5401 Linda Vista Road #406","category":"Irish Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"Ballast Point Black Marlin Porter is a rich dark chocolaty Porter with a distinctive American hop character. It is a great beer to go with hearty foods and is surprisingly one of the few beers that goes well with dessert. One of our favorite combinations here at Ballast Point is Black Marlin Porter with apple pie a la mode.","ibu":58,"name":"Black Marlin Porter","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #15-2008 is our first collaborative beer in the Scratch series. We teamed up with St. Thomas Roasters of Linglestown to create a Double Espresso Oatmeal Stout.\n\n\nThe double in the name refers to the espresso (not the alcohol). Scratch #15’s espresso blend is a medium city-type roast featuring beans from three continents. St. Thomas Roasters roasted and ground the beans; we used them in our hopback. At the end of the boil the hot wort passed through the espresso beans to give a lush coffee espresso nose and hints of coffee flavor.\n\n\nChocolate, roasted and caramel malt flavors stand out, while the addition of oats gives Scratch #15 a full, round mouth feel. Galena and Ken Goldings hops are added to balance the overall flavor and not drive up the bitterness. The head retention diminishes quickly because of the oils from the espresso beans.","ibu":79,"name":"Scratch #15 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"category":"Belgian and French Ale","city":"Tournai","coordinates":[50.6059,3.3884],"country":"Belgium","description":"Daas Blond is the authentic Belgian strong golden beer, its honey spice aroma and perfect balance of bitter sweet flavours are followed by a classic dry hop finish. A perfect aperitif beer.\n\n\nDaas Beer is the only Belgian beer brewed in Belgium to carry both the UK Soil Assoc organic certification and the Belgian Certsys certification whist still upholding its Belgian tradition of brewing excellence using the finest organic ingredients.","ibu":100,"name":"Daas Organic Blond","website":"http://www.daasbeer.com/"},{"abv":7.529420250488352,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"Styled after an English classic, this beer is brewed with American flair. Hearty brown in color and full-bodied, this beer has a distinct chocolate-malt finish.","ibu":79,"name":"Liberty Nut Brown Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":4.6999998093,"address":"Avenida Tocantins, 199 / Caixa Postal 621","category":"German Lager","city":"Ponta Grossa","coordinates":[-25.1688,-50.1298],"country":"Brazil","ibu":86,"name":"Xingu","state":"Paran"},{"abv":5.111192952057495,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":77,"name":"India Pale Ale","state":"Washington"},{"abv":4.6999998093,"address":"104 North Lewis Street","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":111,"name":"Pilsner","state":"Washington"},{"abv":1.1023011542044092,"address":"Trappistenweg 23","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","ibu":60,"name":"Bière Blanche","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":8.740896801733625,"address":"Bridge Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":36,"name":"Olde Expensive Ale","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":4.5999999046,"address":"Bayerischer Platz 1","city":"Leipzig","coordinates":[51.3397,12.3714],"country":"Germany","ibu":111,"name":"Gose","state":"Sachsen"},{"abv":11.904176901260739,"address":"Franz-Brombach-Strae 1-20","category":"German Ale","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":11,"name":"Weißbier Mit Feiner Hefe","state":"Bayern"},{"abv":0.24722103428970077,"city":"Henley-on-Thames","coordinates":[51.5375,-0.9046000000000001],"country":"United Kingdom","ibu":95,"name":"Coniston Bluebird Bitter","state":"Oxford"},{"abv":14.192196851358853,"address":"1429 West Service Drive","category":"North American Ale","city":"Winona","coordinates":[44.0486,-91.6774],"country":"United States","ibu":34,"name":"Cat Tail Pale Ale","state":"Minnesota"},{"abv":2.0701423100424954,"address":"2617 Water Street","category":"German Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":80,"name":"Spring Bock","state":"Wisconsin"},{"abv":7,"city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":17,"name":"Belgian Double","state":"California"},{"abv":8,"address":"Level 15, 20 Hunter Street","category":"British Ale","city":"Sydney","coordinates":[-33.8687,151.217],"country":"Australia","ibu":15,"name":"Hahn Special Vintage 2000","state":"New South Wales"},{"abv":4.7420142390650515,"address":"603 West 13th Street #1A-345","category":"North American Lager","city":"Austin","coordinates":[30.2767,-97.7463],"country":"United States","ibu":106,"name":"Pecan Street Lager","state":"Texas"},{"abv":8.625127225936891,"address":"107 North Lincoln Avenue","category":"German Lager","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":58,"name":"Bock Dark","state":"Nebraska"},{"abv":3.4513816563090858,"address":"200 Village Green","category":"North American Lager","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":21,"name":"Prairie Wheat Beer","state":"Illinois"},{"abv":8.078432350350164,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":46,"name":"Doppelbock (discontinued)","state":"Nebraska"},{"abv":6.5,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"This smooth brew ushers in Autumn with an invitingly tawny color complemented by an assertive maltiness. A noble crispness from German and Czech hops completes this very traditional lager-style beer, Available from August to November.\n\n\nAvailable at the Brewery and in bottles & cases from September - December.","ibu":106,"name":"Lancaster Oktoberfest","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":6.4000000954,"address":"2401 Blake St.","category":"British Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"The psycho in the pack... K-9 Cruiser is a dark, sweet and malty winter warmer that will captivate any adventurous craft brew drinker. A true Flying Dog original, K-9 Cruiser is the perfect brew to warm you up in those cold winter months.","ibu":27,"name":"K-9 Cruiser Winter Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":3.9000000954000003,"address":"830 Main Street","category":"North American Lager","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":71,"name":"Honey Wheat","state":"California"},{"abv":4.5,"address":"24 Kulick Road","category":"North American Lager","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Cricket's Nocturne: a dark lager that combines a mild crispness with subtle toasty, chocolate notes to make it the perfect thirst quencher on days when there's a chill in the air. It;s a great accompaniment to hearty winter meals, or dessert by the fireside.","ibu":19,"name":"Cricket's Nocturne","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":5.8000001907000005,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"With Organic 2-row malted barley, (512) Pale is a copper colored American Pale Ale that balances earthy hop bitterness and hop flavor with a rich malty body.","ibu":75,"name":"(512) Pale","state":"Texas","website":"http://512brewing.com/"},{"abv":8,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Abbaye Saint-Martin Brune was named World's Best Abbey (Dark) Beer @ the 2009 World Beer Awards (London). Aroma of caramel and liquorice. Less sweet than most traditional Dark Abbey Ales. Many people prefer this double at room temperature. It is especially popular when paired with dessert.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":99,"name":"Abbaye de Saint-Martin Brune","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.1999998093,"address":"1284 McD Drive","category":"North American Ale","city":"Dover","coordinates":[39.154,-75.4884],"country":"United States","description":"Dominion Oak Barrel Stout raises the bar for American stouts. We use smoked and peated malts to create an intricate malt foundation. Willamette and Cascade hops balance the malt character and our method of dry hopping with vanilla beans and oak chips pushes the depth of our stout's flavor spectrum even further.","ibu":0,"name":"Oak Barrel Stout","state":"Delaware","website":"http://www.olddominion.com/"},{"abv":4.1999998093,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"An easy drinking ale that goes well with our food offerings. Also a great introduction to the world of craft brewing.","ibu":85,"name":"Bistro Blonde","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":8,"address":"3804 S.W 30th Ave","category":"North American Ale","city":"Fort Lauderdale","coordinates":[26.0745,-80.1806],"country":"United States","ibu":7,"name":"Holy Mackerel Mack In Black","state":"Florida","website":"http://holymackerelbeers.com/"},{"abv":5.9000000954,"address":"306 Northern Avenue","category":"Other Style","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Winter Warmer was Harpoon’s first seasonal beer. It was designed to be enjoyed during the holiday season. \n\n\nWhen you bring a glass of this dark copper ale to your lips to take your first sip you will notice the aroma of cinnamon. There is no aromatic hop added that might overpower the distinct spice scent. The medium body of this beer is formed from caramel and pale malts. These create enough body to support the spices without making the beer excessively rich. Bittering hops are added to counter the sweetness of the malt and spice. The finish of the beer is a blend of cinnamon and nutmeg. The combination of these two spices results in a balanced, pumpkin-pie flavor. \n\n\nThe overall character is a smooth, medium bodied ale spiced with cinnamon and nutmeg","ibu":41,"name":"Harpoon Winter Warmer","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":7.1999998093,"address":"1300 Central Avenue","category":"North American Ale","city":"McKinleyville","coordinates":[40.9491,-124.102],"country":"United States","ibu":116,"name":"Six Rivers IPA","state":"California","website":"http://www.sixriversbrewery.com/"},{"abv":10.366809450025071,"address":"339 Fairground Rd","category":"Belgian and French Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"This beer is medium dark in color but it has a light body and a smooth mouthfeel. Coriander and orange will surround your senses and keep you coming back for more.","ibu":31,"name":"Lucky 393 Grand Cru","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":1.578140119675785,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","description":"Munich Helles style Lager","ibu":32,"name":"Capital Bavarian Lager","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.3000001907,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #16-2008 combines the bitterness of two aroma hops, the lush sweetness of honey and malt and an earthly yeast taste creating a Winter Warmer designed to ward off the coldest days.\n\n\nThe dark, rich amber color comes from a combination of molasses and crystal malts; the Thames Valley brings a distinct earthly flavor; white the blend of hops creates fruity (Amarillo) and piney (Cluster) bitterness.\n\n\nThe Winter Warmer ends with a slight warming sensation from the elevated alcohol content. Enjoy this one throughout the winter months. Cheers.","ibu":87,"name":"Scratch #16 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11.069973276125452,"address":"605 S. Talbot St.","category":"German Ale","city":"St Michaels","coordinates":[38.7814,-76.2222],"country":"United States","ibu":92,"name":"Ameri-Hefe","state":"Maryland","website":"http://www.easternshorebrewing.com/"},{"abv":4.24951879624368,"address":"8113 Fenton St.","category":"North American Lager","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"The right choice when you desire a flavorful beer with a 'lighter' body. Only 94 calories!","ibu":66,"name":"Hook & Ladder Lighter","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":9.5,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"9000 year old Chateau Jiahu stands apart as the most ancient, chemically-attested alcoholic beverage in the world. Its recreation is based on painstaking excavation by Chinese archaeologists of Jiahuin the Yellow River basin, state-of-the-art microanalysis of pottery residues by American laboratories, and the inspired \"Neolithic\" brewing of Dogfish Head Craft Brewery. Chateau Jiahu, then as now, opens a window into the world of our ancestors.","ibu":3,"name":"Chateau Jiahu","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.1999998093,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A testament to Cascade hops in a bottle. Our medium-bodied, Pale Ale has a distinctive floral hop aroma and refreshing citrus flavor. Founders Pale Ale has a slight malty sweetness with a balanced hop finish. A perfect beer to enjoy while mowing the lawn, boating, grilling with friends or just taking it easy.","ibu":101,"name":"Founders Pale Ale","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":0.7056526809329722,"address":"375 Water Street","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our regulars have many reasons for frequenting our premises. Some come for the comfy chairs, a game of pool, or to exude some seriously suaveness at the oyster bar on a Friday evening. For the truly devoted, however, who come in search of truth, it's the Nut Brown they're after. Often they arrive with a glazed look in their eyes, having endured days of office drudgery or the unknowable hardships of securing a parking spot. Set your cares aside, for all can find solace in this ale's yin-yang of nutty maltiness and delicate, dryish hoppiness. For our Nut Brown, an ale deep auburn in colour, we use a blend of Munich, caramel and chocolate malts to create a rich malty palate with a lingering dry chocolatiness.","ibu":30,"name":"Nirvana Nut Brown Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.5,"address":"357 East Taylor Street","category":"German Ale","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":1,"name":"Gordon Biersch Hefeweizen","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":5.9000000954,"address":"30 Butterfield Road","category":"Belgian and French Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","description":"Domaine DuPage is a rural, northern France, amber colored ale. This well balanced beer is full and sweet up front with caramel, toasty, and fruity characters. The finish has a gentle floral and spicy hop balance that cleanses the palate.","ibu":17,"name":"Domaine DuPage French Country Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":4.4000000954,"address":"455 North Main Street","category":"German Lager","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Named for the delicate engravings popularized by 19th century seafarers, Scrimshaw is a fresh tastingPilsner brewed in the finest European tradition using Munich malt and, Hallertauer and Tettnang hops. Scrimshaw has a subtle hop character, a crisp, clean palate, and a dry finish.","ibu":8,"name":"Scrimshaw Pilsner Style Beer","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":6.9000000954,"address":"5 Bartlett Bay Road","category":"British Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"An ale for dancing bonfires and falling leaves.\n\nJinx prepares the bones for snow. It's a full bodied strong ale the color of maple's golden leaves in the season's fading sun. Finished with a touch of peat-smoked whiskey malt, Jinx offers sweet, toasty aromas of caramel, tea, and smoke. Deep flavors of dark candy sugar and warming alcohol notes are balanced by a spicy hop bitterness.","ibu":14,"name":"Jinx","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8.769456994941523,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Spicy yet smooth. Brewed with 10 exotic spices.\n\nThis beer's roots are in Belgium, and the classic Wit biers produced by Belgium's brewers. The style gets its name from the white, milky appearance of this unfiltered wheat ale. The brewers of Samuel Adams® beer, taking inspiration from the Belgians, have created a classic of their own. On the malt side, we use malted two row Pale barley, malted wheat, and Munich malt to give this beer a crisp, malty, cereal finish and smooth mouth feel. The hops used are Noble Tettnang Tettnanger hops. At the end of the kettle boil, we add a proprietary spice blend to give Samuel Adams® White Ale a unique and complex flavor, without being overpowering or cloying. The spice blend includes orange and lemon peel, dried plum, grains of paradise, coriander, anise, hibiscus, rose hips, tamarind, and vanilla. It is this special blend of spices that gives Samuel Adams® White Ale its unique character, complexity and refreshing drinkability. The beer is coarse filtered, leaving a white haze from the malt proteins. Our proprietary top fermenting ale yeast ferments the beer, imparting its signature character - bright and slightly fruity.","ibu":31,"name":"Samuel Adams White Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Loose Cannon Hop3 Ale - called Hop 3 (hop cubed) ale to reflect the enormous amount of hops in this beer: over 3 pounds per barrel! Also the beer is hopped 3 ways - in the kettle, in the hop back, and dry hopped. Winner of the Overall Best of Show Award in the Maryland State Governor's Cup 2005 Competition and voted the #1 IPA by Mahaffey’s Pub. We are very excited about this new product and have decided to make this beer available year round!","ibu":72,"name":"Loose Cannon Hop3 Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":8,"address":"Burg. van den Heuvelstraat 35","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":119,"name":"De Horste Vermeer Traditional Dutch Ale"},{"abv":4.6999998093,"address":"Neumarkt 1","city":"Schwelm","coordinates":[51.2847,7.2936],"country":"Germany","ibu":74,"name":"Pils","state":"Nordrhein-Westfalen"},{"abv":2.411959806387313,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":3,"name":"Red Truck Ale","state":"British Columbia"},{"abv":4.9000000954,"address":"Tbinger Strae 46","city":"Stuttgart","country":"Germany","ibu":95,"name":"Das Schwarze / Dark","state":"Baden-Wrttemberg"},{"abv":5.5,"address":"Oberdorferstrae 9","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":44,"name":"Spezial"},{"abv":4.9000000954,"address":"Marktplatz 1","city":"Alpirsbach","coordinates":[48.3457,8.4031],"country":"Germany","ibu":95,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":8,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":53,"name":"Gouden Carolus Ambrio 1471","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":7.901929458573492,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":95,"name":"Brunette Nut Brown Ale","state":"Nebraska"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":72,"name":"Flemish Primitive Wild Ale (Demon Fish)","state":"Oost-Vlaanderen"},{"abv":9.164047502641164,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":100,"name":"White","state":"Texas"},{"abv":5.686078373883926,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":59,"name":"Uber APA","state":"Wisconsin"},{"abv":10.41721387716191,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":111,"name":"Celtic Cross Stout","state":"Wisconsin"},{"abv":9.564396432172275,"address":"Walplein 26","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","ibu":27,"name":"Straffe Hendrik Brugse","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":5,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Red Macgregor is a unique beer: delicate and sophisticated yet the robust cask conditioned version of this beer was the first Scottish beer to win the BIIA World Cask Beer Gold Medal.\n\n\nOn the nose, this ruby-red beer is delicate, floral and fruity, with notes of violets, cherries, toffee and caramel. \n\n\nOn the palate, the fruits combine with a juicy malt character and hints of toasted malt, with a biscuit malt and spicy hop finish.","ibu":24,"name":"Red MacGregor","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":11.233696247068753,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":95,"name":"Who The Helles Chuck?","state":"Wisconsin"},{"abv":7.1107763920433555,"category":"North American Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":78,"name":"Lighthouse Ale","state":"Indiana"},{"abv":14.694499229978394,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":10,"name":"Gold Crown Lager","state":"Minnesota"},{"abv":9,"category":"British Ale","city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":58,"name":"Prize Old Ale","state":"Hampshire"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":107,"name":"Bigfoot 1998","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.1999998093,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This Dubbel style Belgian beer is created in the great Belgian tradition. Pale Malt, Caramel and Special B Malts impart a unique sweetness to this beer. The traditional Belgian yeast fully ferments the Belgian Candi Sugar to give a satisfying taste that is twice what a Belgian pale delivers.","ibu":78,"name":"Dubbel Dragon","state":"Michigan"},{"abv":6.086574850513436,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":68,"name":"Amber","state":"California"},{"abv":5.4000000954,"category":"Irish Ale","city":"Clear Lake","coordinates":[45.2519,-92.2713],"country":"United States","ibu":119,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":10,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":44,"name":"Four","state":"Maine","website":"http://www.allagash.com/"},{"abv":10.008719285607533,"category":"North American Ale","city":"Sydney","coordinates":[-33.8671,151.207],"country":"Australia","ibu":55,"name":"Sheaf Stout","state":"New South Wales"},{"abv":1.1512110520828434,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":41,"name":"Cleary Red","state":"Wisconsin"},{"abv":10.996257650865736,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":40,"name":"Imperial Eclipse Stout","state":"Illinois"},{"abv":6.3000001907,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":36,"name":"Abbaye de Floreffe Double","state":"Brabant Wallon"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Rich, velvety and deliciously complex, Old Heathen is a truly distinctive winter warmer. We use seven types of malt and two varieties of hops to bring forth this big brew. Quite robust and roasty on the palate, Old Heathen imperial stout has a wonderfully fruity nose and a moderately dry finish. The taste is highly complex- perhaps you'll even discern notes of espresso or chocolate. \n\n\nOld Heathen imperial stout is our interpretation of a beer style that originated in the 18th century. Brewed in England and exported to Germany, Scandinavia and Russia, these beers became fashionable among the members of the Czar's court. In order to survive long voyages they were brewed with high alcohol content to prevent spoilage. And at 8.0% ABV (alcohol by volume) Old Heathen definitely contains a warming belt. You may want to lay down a few bottles for future evaluation- this beer keeps well and will only get better with age.\n\n\nLike most of our beers, Weyerbacher Old Heathen is a perfect accompaniment to foods. Try it with rich stews, oysters, caviar or roasted meats. Old Heathen is also a perfect companion to chocolate desserts.\n\n\nOld Heathen is now available year-round.","ibu":74,"name":"Old Heathen","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.8000001907000005,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Dry-hopping provides a distinctive and floral hop aroma, while the lively and hoppy body is subtly balanced with delicious malt notes. Hatter’s hop character makes it a great fit for spicy dishes, bitter greens and beef.","ibu":50,"name":"Mad Hatter IPA","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":3.543628456734249,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":118,"name":"Golden Ale","state":"Massachusetts"},{"abv":0.9178240868650733,"category":"North American Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":43,"name":"Red Sky Amber Lager","state":"Hawaii"},{"abv":8,"address":"Rue Ville Basse 141","category":"North American Ale","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":35,"name":"Scotch","state":"Hainaut"},{"abv":2.1791661796855353,"category":"North American Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":45,"name":"Pilsner","state":"Illinois"},{"abv":9.089459897035649,"address":"25 North Madison St","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":101,"name":"Calumet Pils","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":10,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Some say “bigger is better!”. At Hoppin’ Frog, we built a massive hop dam to handle the enormous amount of hops added to this colossal American Triple I.P.A. An intense experience of citrus and piney hop character is complimented by layers of rich malt flavor. Behold our new standard for hoppy beers.","ibu":117,"name":"Hop Dam Triple IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6.6999998093,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #27-2010 begins a new fold in the Scratch series. For the next several batches individual Troegs brewers will create recipes of their choice. First up, The Ticeman had a hankering for a sweet stout, so the Troegs brothers and all the brewers met with Scharffen Berger Chocolate Company engineers to eat ridiculous amounts of cocoa nibs and chocolates over a few pints of beer.\n\n\nThis collaboration resulted in the delivery of a special blend of cocoa nibs that were added during the boiling process. In addition to the nibs, lactose was added at the end of the boil to give a little sweetness in the body. The addition of Galena and Simcoe hops lends a subtle fruity balance. After primary fermentation, the beer was aged for three weeks on a blend of cocoa nibs and Ugandan vanilla beans.\n\n\nDubbed Cocaoabunga, this unfiltered beer has a pleasant cocoa aroma, a subtle sweetness in the mouthfeel, a full-bodied flavor, and hints of vanilla. Enjoy!","ibu":109,"name":"Scratch #27 2010 Cocaoabunga","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"When empirical and creative impulses collide, the result is often timeless. The classic utility-art aesthetic of the coffee maker is an example of design and engineering working in concert. \n\n\nIt is through similar cooperation that the simple bitter cocoa bean is transformed into a sweet treat. As scientists, our brewers utilize their materials to exacting standards. As artists, they couldn’t resist the temptation to combine two of our highly acclaimed Blackwater Series Imperial Stouts: Jahva and Choklat. Alone each is perfect, but together as Mokah they are an inimitable expression of two of the world’s most sought after flavors. Enjoy Mokah stout with – or as – your favorite dessert!\n\n11.0% abv • 27º plato • Imperial Stout Brewed with Coffee & Chocolate • 22 oz / 1/6 keg\n\n2-row pale malt • 2-row barley • caramel, chocolate & black malts • roasted barley barley flakes • Jamaican roasted coffee • bittersweet Belgian chocolate • chinook, willamette, cascade & columbus hops","ibu":34,"name":"Mokah Imperial Blended Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":13.247998084382875,"address":"1022 Main Ave.","category":"North American Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"A well balanced American Amber Ale. Smooth malt character balanced with a healthy dose of Cascade hops aged on oak chips - our most popular beer.","ibu":19,"name":"Old Oak Amber Ale","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":7.1999998093,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"It means India Pale Ale. It's all about the hops on this one. Brewers use hops to add bitterness and aroma to their beers. If not for hops your beer would be too sweet. Our IPA uses plenty of Chinook and Columbus hops from the Pacific Northwest. The flavor can best be described as strong resiny grapefruit. The long drawn out hop flavor is essential to the character of the beer. So smack your buds on this one all you HOP HEADS.","ibu":64,"name":"Midwest IPA","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":7.5,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Johnny Cask has entered the building! We’ve retrofitted a 15 barrel tank to perfectly produce a very special cask conditioned ale (so, we have a little time to play around during winters at the Delaware coast). This beer, known as Dogfish Head 75 Minute IPA is a blend of 60 and 90 Minute IPAs with a special whole leaf cascade dry-hopping session.","ibu":98,"name":"75 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10.230307304392724,"address":"112 Valley Road","category":"Other Style","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Our Cream Ale is a light, crisp, yellow ale with hop-notes and citrus flavors. It's a smooth, easy drinking summer beer that's perfect for drinking on hot days and with light fare such as seafood and salads.","ibu":119,"name":"Climax Cream Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":11.561060682280953,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Blind Salamander Pale Ale is the first of a series of Rahr beers\n\ncalled Rare Breed. These beers are dedicated to improving the lot of\n\nendangered Texas species. Rahr is making donations from these proceeds\n\nto the Texas Parks & Wildlife Foundation to help with the recovery\n\nof these species. \n\n\nThe Texas Blind Salamander is a rare cave dwelling troglobite amphibian native to San\n\nMarcos, specifically the San Marcos Pool in the Edwards Aquifer. It has\n\nbright red external gills for absorbing oxygen from the water. Its\n\nmature length is 5 cm and its diet varies by what flows into its cave,\n\nincluding shrimp, snails and amphipods. \n\n\nBlind Salamander Pale Ale is a blend of the finest pale malts and East Kent\n\nGoldings hops. The fine balance of these toasted caramel malts and\n\nearthy hops makes Blind Salamander an easy drinking and satisfying ale.","ibu":100,"name":"Blind Salamander Pale Ale","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":6,"address":"237 Joseph Campau Street","category":"Irish Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"A robust porter made with chocolate malt. We blend it with Vanilla and Java beans, and balance it with U.S. Golding Hops.","ibu":68,"name":"Vanilla Java Porter","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.0999999046,"address":"91 S Royal Brougham Way","category":"German Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma.\n\n\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.\n\n\nOriginal Gravity: 11.75\n\nAlcohol By Volume: 5.10%\n\nMalts: 2-Row Barley, Malted Wheat, Caramel\n\nHops: Nugget\n\nAvailability: Year Round\n\nBest Paired With: Appetizers, salads, and desserts such as pies and pastries.\n\n\nBest of the Northwest/Pacific in the \"Fruit Beer\" category at the 2000 United States Beer Tasting Championship, 2000\n\nGold Medal, GABF, \"Fruit and Vegetable Beers\", 1994","ibu":96,"name":"Apricot Weizen Ale","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":6.1999998093,"address":"23 Hayward St.","category":"British Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A British style Old Ale perfect for easing the cold winter months, our Winter Ale offers a malt selection with hints of fig and chocolate, creating the perfect cozy balance of hops and malt.","ibu":37,"name":"Ipswich Winter","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":9.3999996185,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":45,"name":"Imperial Stout 2003","state":"California","website":"http://www.stonebrew.com/"},{"abv":0.9256803708584871,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":69,"name":"Pale Ale","state":"California"},{"abv":7.454912802408458,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":12,"name":"Poseidon Imperial Stout","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":6.5999999046,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":66,"name":"India Pale Ale","state":"Washington"},{"abv":8,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":62,"name":"Chocolat","state":"Luxembourg"},{"abv":3.427625173540778,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":38,"name":"Père Noël","state":"West-Vlaanderen"},{"abv":7.5,"address":"Lindenlaan 25","category":"German Lager","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":95,"name":"Leute Bok Bier","state":"Oost-Vlaanderen"},{"abv":8,"address":"Dulft 9A","city":"Itegem","coordinates":[51.1028,4.7269],"country":"Belgium","ibu":19,"name":"Serafijn Christmas Angel","state":"Antwerpen"},{"abv":8,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Quelque Chose was launched in January 1996. This versatile beer was specifically developed as a winter beer because, when warmed to 70ºC (160ºF), it can be taken as a hot drink. On the other hand, on the rocks, it is a wonderful aperitif. The cherries are soaked for months in slightly bitter ale before being blended into the beer. Quelque Chose is made with dark roasted malts, and the end result is something commonly known as an authentic nectar. The most original of the Unibroue line, it is highly appreciated by winter-sports enthusiasts.","ibu":56,"name":"Quelque Chose","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"Our first beer brewed right here at Flyers. This ale has brownish red hues with a mild maltiness balanced by an herbal hop character without being bitter.","ibu":112,"name":"First Flight Amber Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.5,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Brewed in the tradition of great German Bock beers with only German malts and hops, using 20% rye, malt to give it a distinctive spicy, yet smooth character. You'll love the rich flavors and deep red color of this unique German Brew.","ibu":67,"name":"Roggen Bock","state":"New York","website":"http://www.saranac.com"},{"abv":4.25,"address":"7030 Roscoe Turner Rd","city":"Kiln","coordinates":[30.3764,-89.4497],"country":"United States","description":"Southern Pecan Nut Brown Ale is the first beer in the world, to our knowledge, made with whole roasted pecans. The pecans are used just like grain and provide a nutty characteristic and a delightful depth to the flavor profile. This beer is very lightly hopped to allow the malty, caramel, and nutty flavors shine through. The color is dark mahogany. Southern Pecan won a Bronze Medal in the 2006 World Beer Cup in the Specialty Beer category.","ibu":55,"name":"Southern Pecan","state":"Mississippi","website":"http://www.lazymagnolia.com/"},{"abv":9.6000003815,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Our Big A IPA has earned its share of praise over the last few years. In 2004 the New York Times named it its top IPA , and in 2007 Mens Journal Magazine included it on its list of 25 best beers in America. The last of each year's edition typically leaves our warehouse around mid-May, and, as always, it doesn't last long. \n\n\nStash Wojciechowski, the “Killer Kielbasa,” created this bonafide India Pale Ale recipe exclusively for the Smuttynose Big Beer Series.","ibu":54,"name":"Big A IPA","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.0999999046,"address":"2100 Locust Street","category":"German Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","description":"A malty, full-bodied, deep reddish-amber lager. Traditionally brewed in March for the Oktoberfest in the fall, this style is also known as Märzen. Also available in bottles.","ibu":21,"name":"Schlafly Oktoberfest","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":11.75265116106567,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":0,"name":"Timmermans Faro","website":"http://www.anthonymartin.be/"},{"abv":5.25,"address":"190 5th Street","category":"Other Style","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This dark version of our Hefe Weizen retains the banana and clove flavors from the yeast and also has a richer malt flavor. Available November through April","ibu":49,"name":"The Livery Dunkel Weizen","state":"Michigan","website":"http://liverybrew.com/"},{"abv":1.1549865363123712,"address":"1321 Celebrity Circle","category":"Irish Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","ibu":23,"name":"Patriot Porter","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":13.257447267358483,"address":"175 Bloor Street East","category":"Belgian and French Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":7,"name":"Rickard's White Ale","state":"Ontario"},{"abv":13.602761841359834,"address":"15 Knox Rd.","city":"Bar Harbor","coordinates":[44.3996,-68.334],"country":"United States","description":"It does have a nice hint of wheat and blueberries to it.","ibu":91,"name":"Bar Harbor Blueberry Ale","state":"Maine","website":"http://www.atlanticbrewing.com"},{"abv":14.092803295995811,"address":"RR 1 Box 185","category":"German Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Dark and delightful, this is an easy-drinking brew. Once a seasonal favorite now we brew it all the time as part of our variety case. Brewed with five different malts and three different hops, then pitched with Bavarian lager yeast.","ibu":95,"name":"Angler Black Lager","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":6.8000001907000005,"address":"357 Salmon Brook Street","category":"North American Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Traditional English India Pale Ale brewed with all English malt & hopped with a blend of English & American hops. High in strength, bitterness & aroma.","ibu":16,"name":"Abijah Rowe IPA","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":14.381366723021321,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"Double your fun, double your pleasure and try and stay out of double trouble with this hopped up I.P.A.","ibu":107,"name":"Double Vision IPA","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5.3000001907,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"Highland's most robust beer, having a very malty body with a large, roasted chocolate flavor. It is black in color with a very clean finish and a moderate hop flavor.\n\n\nIBU: 25\n\nAlcohol content: 5.3% by volume\n\nHops: Chinook and Mt. Hood\n\n\n*Contains Wheat\n\n\nCalories per 12 oz. 216.81\n\nCarbs per 12 oz. 24.99","ibu":70,"name":"Black Mocha Stout","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":5.9000000954,"address":"Route 4 & 100A","category":"North American Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"The first IPAs were unfiltered and featured extra hops and higher strength as a preservative for the long trip from England to the colony of India. Our Traditional IPA is naturally carbonated, dry-hopped & unfiltered like the old days.","ibu":3,"name":"Traditional IPA","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":8.5,"address":"Breendonkdorp 58","category":"Belgian and French Ale","city":"Breendonk","country":"Belgium","ibu":36,"name":"Duvel","state":"Antwerpen"},{"abv":6.5,"address":"Eindhovenseweg 3","category":"North American Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":70,"name":"La Trappe Enkel / La Trappe Blond","website":"http://www.latrappe.nl/"},{"abv":4.5,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Now In Bottles!! Our award winning 8th Street Ale is based on an English-style \"Best Bitter\" which is the most common ale served in British pubs. What makes 8th Street Ale uncommon is its mellow bitterness and its slightly sweet malt flavor. It's aroma is derived from rare, imported Kentish hops, and lots of them.\n\nAlcohol content approximately 4.5% by volume (ALWAYS ON TAP!!)","ibu":48,"name":"8th Street Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.5,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"\"Aass Classic\" is a classical \"lager\" The beer is slightly darker in color than our Genuine Pilsner. It is of course produced in accordance with the \"Purity law\". \n\n\nThe malted barely is produced in the Scadinavian countries. It is a combination of pilsner-, bayer- and caramelmalt. We use the famous Sazer and Hallertau hops, and the water is as pure as the Norwegian nature. \n\n\nThe Classic is largered at cool temperatures, and it is allowed to mature for approximately 3 months before bottling. \n\n\nThe beer is sold in caracteristic nice looking green bottel containing 11.2 fl. oz or 330 ml.","ibu":38,"name":"Gull Classic","website":"http://www.aass.no"},{"abv":6,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","ibu":114,"name":"Sherwood Forest IPA","state":"Michigan"},{"abv":0.8226164926883817,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":63,"name":"Rosé de Gambrinus","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":4.822772789064839,"address":"1101 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":42,"name":"Pils","state":"Wisconsin"},{"abv":4.150966557392612,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":99,"name":"Festive Ale 2000","state":"Nebraska"},{"abv":12.700251680033471,"address":"Lidick 51","city":"esk Budjovice","country":"Czech Republic","ibu":13,"name":"Samson Crystal Diplomat Dark Beer"},{"abv":10.364165818336266,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":115,"name":"Oktoberfest","state":"Wisconsin"},{"abv":11.558262907057987,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":49,"name":"Ruby Red Lager","state":"Mississippi"},{"abv":13.851416282421713,"city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":77,"name":"Belgian Style Wit","state":"Indiana"},{"abv":4.8000001907000005,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":16,"name":"Steamer Glide Stout","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":6.5,"address":"The Street","category":"Irish Ale","city":"Pentlow","coordinates":[52.081,0.6559],"country":"United Kingdom","ibu":78,"name":"Old Growler","state":"Essex"},{"abv":3.5,"address":"39176 Argonaut Way","category":"North American Lager","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":20,"name":"Boys of Summer Wheat","state":"California"},{"abv":4.227797947967802,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":71,"name":"Nugget","state":"Oregon"},{"abv":6.5,"address":"Rijksweg 33","category":"Belgian and French Ale","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":117,"name":"Petrus Dubbel Bruin Ale","state":"West-Vlaanderen"},{"abv":8.6999998093,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":97,"name":"Cow Palace Scotch Ale 1998","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This wonderful red ale has a perfect balance of hops and malt. The clean finish will leave your palate begging for more.","ibu":108,"name":"Celtic Knot Irish Red","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.5,"address":"50 N. Cameron St.","category":"North American Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The Dortmunder-Export style of beer was developed in Westfalen, Germany, and is a classic light lager with great character. This style boasts a light golden blonde color and exhibits a moderate hop palate. The finish of our Mountain Lager is rich yet mellow.\n\nOur brewers have developed this beer as a tribute to the Appalachian Mountains where we live and play.","ibu":60,"name":"Mountain Lager","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":2.158017515493121,"address":"91 S Royal Brougham Way","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":56,"name":"Traditional ESB","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":0.6752612070535091,"address":"6863 Lundy's Lane","category":"North American Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":44,"name":"Premium Light","state":"Ontario"},{"abv":3.7632115752317565,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":26,"name":"Red Rock","state":"Florida"},{"abv":13.07767131586855,"address":"1800 North Clybourn Avenue","category":"North American Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":59,"name":"Rye Stout","state":"Illinois"},{"abv":3.197858794283105,"address":"2980 Cahill Main","category":"British Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":78,"name":"New Peculier","state":"Wisconsin"},{"abv":2.888247350756968,"address":"61 US Highway 1 South","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":117,"name":"Bootlegger Blonde Ale","state":"New Jersey"},{"abv":4.5,"address":"Darmstdter Landstrae 185","city":"Frankfurt am Main","coordinates":[50.0943,8.6913],"country":"Germany","ibu":38,"name":"Lager","state":"Hessen"},{"abv":3.5,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.\n\n\nFood Pairings: The toasty malt flavors go great with barbeque, grilled salmon, carmelized onions, and most hot and spicy foods. Try it with Mexican or Thai dishes.\n\n\nOG: 10.4 Plato\n\nFG: 3.3 Plato\n\nIBUs: 21\n\nSRM: 13\n\n3.5% abv","ibu":82,"name":"Dos Perros","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":1.4279220281167326,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":41,"name":"Irish Style Ale","state":"Wisconsin"},{"abv":4.127527477287557,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":114,"name":"Capital Special Pilsner","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":11.303436595658434,"address":"999 Matsumoto-cho","category":"German Ale","city":"Takayama","country":"Japan","ibu":52,"name":"Weizen","state":"Chubu"},{"abv":7.805651246947976,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":99,"name":"Foret Saison","state":"Hainaut"},{"abv":11.437452890249713,"address":"Holstenstrae 224","category":"North American Ale","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":3,"name":"Duckstein Alt","state":"Hamburg"},{"abv":4.748839169169053,"address":"220 North Randall Road","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":95,"name":"Leprechaun Light","state":"Illinois"},{"abv":13.145147819384267,"category":"North American Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":95,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":4.1900000572,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \"Select,\" but people started asking for that \"Blue Ribbon\" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \"Blue Ribbon\" to the bottle in 1895.\n\n\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \"Export\" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\n\n\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!","ibu":54,"name":"Pabst Blue Ribbon Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Originally introduced in 1992, Genuine Lager has evolved into a truly definitive Canadian Lager. Balancing a blend of quality aromatic and bittering hops with its medium body, Genuine Lager is a smooth, refreshing and easy-drinking beer with a subtle hop aroma and a hint of malty sweetness.","ibu":29,"name":"Genuine Lager","state":"Ontario"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"North American Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A Vienna-style lager with a smooth malt palate and a dry finish. ABV 5.2%","ibu":11,"name":"Spring Creek Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":14.162138906513434,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":117,"name":"Good Life Stout","state":"Nebraska"},{"abv":14.751015611344885,"address":"17700 Boonville Rd","category":"Irish Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":103,"name":"Deep Enders Dark","state":"California","website":"http://avbc.com/"},{"abv":13.448376523710854,"category":"German Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":43,"name":"Oktoberfest","state":"Texas"},{"abv":10.88251682680789,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":104,"name":"Celebration Red","state":"California"},{"abv":4.577392209313123,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":84,"name":"Dublin Stout","state":"Illinois"},{"abv":5.4000000954,"address":"Alte Akademie 2","category":"German Ale","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":102,"name":"Hefe Weissbier","state":"Bayern"},{"abv":10.5,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"This extreme Double Oatmeal Russian Imperial Stout will overwhelm, satisfy, and destroy your taste buds like no other!! D.O.R.I.S. is even darker, hoppier, and stronger than our gold medal winning B.O.R.I.S. The Crusher Stout. Dry hopped and first wort hopped and first wort hopped with the finest American hops for a great Imperial hops for a great Imperial Stout experience! Enjoy the darkness!","ibu":69,"name":"D.O.R.I.S. the Destroyer Double Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":10,"address":"715 Dunn Way","category":"Other Style","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Brewed with 17 lbs. of yams per barrel (in other words, a lot of yams!), this autumn seasonal is a different take on the “pumpkin” beer style. Brewed with cinnamon, nutmeg, allspice, vanilla, molasses, and maple syrup, and fermented with our traditional Belgian yeast strain, this bold and spicy beer is perfect on a cold autumn evening.","ibu":95,"name":"Autumn Maple","state":"California","website":"http://www.thebruery.com/"},{"abv":4.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"RondyBrew 2009 is a rendezvous of playful pale malts and feisty American hops, designed to exhilarate your winter-weary soul. This copper-colored ale delivers citrusy and refreshing hop aroma and flavor.\n\n\nThis year’s label features Rondy’s hottest event: The Running of the Reindeer. If you’re suffering from cabin fever, get out and run with the herd. But ready, set, RUN because this beer is only available for a limited time.\n\n\nRondyBrew adds refreshment and celebration to the festive fare and entertaining events enjoyed during Anchorage’s Fur Rondy Festival.","ibu":78,"name":"Rondy Brew 2009","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Uranus, ruler of the heavens, reigns supreme with beauty and brilliance. Gloriously gold in color, URANUS Golden Ale holds title to our first 100% Brettanomyces fermentation and conditioning. Brewed by mere mortals and blessed by the beer gods, this ale deserves to be worshipped.","ibu":42,"name":"Uranus - 100% Brettanomyces Golden Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.7453957557810336,"address":"101 Ehalt St.","category":"North American Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":57,"name":"Golden Light","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":5.5,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Gemuetlichkeit translates from German as \"the fondness of feasting, drinking and merry company.\" This is true of most everyone in Wisconsin, especially those of us at the brewery. Each September in the nearby city of Jefferson, Wisconsin, thousand turn out for Gemuetlichkeit Days, a celebration of the area's German heritage. We invite you to celebrate the spirit of Gemuetlichkeit with us. Don your lederhösen, kick up your heels with a polka and raise a stein of our Gemuetlichkeit Oktoberfest with a friend. Ein Prosit!\n\n\nGemuetlichkeit Oktoberfest is a rich, amber lager with a malty aroma and balanced hop bitterness. This seasonal style is served at German Oktoberfests in liter steins.","ibu":5,"name":"Gemuetlichkeit Oktoberfest","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":7.1999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"Sierra Nevada Torpedo Ale is a big American IPA; bold, assertive and full of flavor and aromas highlighting the complex citrus, pine and herbal character of whole-cone American hops.\n\n\nNamed after the torpedo-shaped hopback employed in its making, is an IPA made with Chinook, Cascade and Centennial hops.","ibu":53,"name":"Torpedo Extra IPA","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.5,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Dale's Pale Ale is our flagship beer and America's first hand-canned craft beer. It's an assertive but deftly balanced beer (somewhere between an American pale ale and an India Pale Ale) brewed with hefty amounts of European malts and American hops.\n\n\nIt features a merengue-like head, a copper color, and a hoppy nose, thanks to a big post-boil addition of Centennial hops. To complement its hoppy first impression, Dale's also sports a rich middle of malts and hops, and a bracing finish. Dale's is 6.5% alcohol by volume, and features 65 International Bittering Units.\n\n\nWe think of it as the perfect, everyday beer for hopheads like us. Dale's Pale Ale's rich flavor has helped us make many new fans, and its numerous honors have helped us kick huge holes in the misconceptions regarding cans.","ibu":41,"name":"Dale's Pale Ale","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5.0999999046,"address":"195 Ottley Drive","category":"Belgian and French Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"SweetWater Hummer is a tasty Belgian White Ale brewed with coriander and orange peel. Cloudy with subtle fruit tones and a lingering finish. Everybody loves a Hummer!","ibu":109,"name":"Hummer","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":4.5999999046,"address":"544B W. Liberty St.","category":"North American Ale","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"Early Cincinnati brewers shipping their beers into Tennessee would generously hop their beer to prevent spoilage during the long arduous trip over the Cumberland Trail. This classic interpretation of the American Pale Ale features a solid foundation of pale malt loaded with fresh Cascade hops. Here’s to getting where you’re going!","ibu":77,"name":"Cumberland Pale Ale","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.3075676066893385,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste.","ibu":1,"name":"Purple Haze","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Dark and strong as the style implies, La Maitresse du Moine dances across the palate with complexity and mystery--just as the Northern Lights move across the night sky, delighting the senses and enlightening the mind.\n\n\nIn the tradition of monks who have devoutly brewed beers of character and strength for centuries, La Maitresse du Moine Dark Strong Ale reflects the passion and dedication required to create a beer this heavenly. This Mistress of the Monk is seductive, pensive and intriguing. We say it in French: La Maitresse du Moine.","ibu":85,"name":"La Maitresse du Moine","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.7601247761539147,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":102,"name":"Snow Melt Nitrogen Pale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":4.5999999046,"address":"Doktor-Waibel-Strae 2","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":47,"name":"Gambrinus"},{"abv":7.047285008320524,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":54,"name":"Brout","state":"Nebraska"},{"abv":5,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":108,"name":"Shining Star Pale Ale","state":"California"},{"abv":3.6897172015086555,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":83,"name":"Stouterik / The Brussels Stout","state":"Vlaams Brabant"},{"abv":8,"address":"Rue de la Frontire, 435","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":87,"name":"La Moneuse","state":"Hainaut"},{"abv":8.145706665852444,"address":"1171 Hooper Avenue","city":"Toms River","coordinates":[39.9767,-74.1829],"country":"United States","ibu":48,"name":"Bad Seed Pumpkin Ale","state":"New Jersey"},{"abv":4.693789223196719,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":110,"name":"Bengal Gold India Pale Ale","state":"New Jersey"},{"abv":1.9867129423713203,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":10,"name":"Czech Mate Pilsner","state":"Wisconsin"},{"abv":13.738482870611465,"address":"B-4864 Cty Rd F","category":"North American Lager","city":"Unity","coordinates":[44.8516,-90.3165],"country":"United States","ibu":85,"name":"Lager","state":"Wisconsin","website":"http://www.logjambeer.com/"},{"abv":4.6999998093,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":112,"name":"Stite Golden Pilsner","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":14.170570913772625,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":76,"name":"Kasseler Premium Pils","state":"Hessen"},{"abv":12.826639813341504,"category":"British Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":94,"name":"Adler Bräu Winter Ale","state":"Wisconsin"},{"abv":8.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":79,"name":"Frank Double IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":6.61516578947417,"address":"75-5629 Kuakini Highway","category":"Irish Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":0,"name":"Black Sand Porter","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":13.232886216218898,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This is a true Celtic Red ale that’s as faithful as its namesake. With a smooth balance between malt and hops, it’s sure to become a pubhouse favorite","ibu":94,"name":"McCafferty's Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":6.530056460929938,"address":"617 Fourth Street","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":95,"name":"Great White Beer","state":"California","website":"http://www.lostcoast.com/"},{"abv":5.9000000954,"address":"2880 Wilderness Place","category":"Other Style","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":70,"name":"Sweaty Betty Blonde","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":12.39610202408852,"address":"50 East Washington Street","category":"German Lager","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":112,"name":"Holiday Wheat Bock","state":"California"},{"abv":8.107752755974813,"address":"PO Box 316","category":"North American Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":75,"name":"Bombay by Boat IPA","state":"California"},{"abv":5.648989918302471,"category":"German Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":93,"name":"Windmill Wheat Ale","state":"Texas"},{"abv":8.468833626775323,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":116,"name":"Thomas Kemper Belgian White","state":"California"},{"abv":4.047570962411781,"address":"Gheudestraat 56","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":50,"name":"Lambic 2002","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":4.9000000954,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":25,"name":"Krystal Weizen","state":"Washington"},{"abv":7.6510443018184935,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":81,"name":"Atlas Amber Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":8.249555757144456,"address":"3015-D Hopyard Road","category":"North American Ale","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":116,"name":"Paint the Town Red","state":"California"},{"abv":10,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":43,"name":"Old Blarney Barleywine","state":"California","website":"http://www.moylans.com/"},{"abv":9.601540554831377,"category":"North American Ale","city":"Ipswich","coordinates":[52.0593,1.1557],"country":"United Kingdom","ibu":40,"name":"IPA","state":"Suffolk"},{"abv":8.1000003815,"category":"North American Lager","city":"Longview","coordinates":[32.5007,-94.7405],"country":"United States","ibu":16,"name":"High Gravity Lager","state":"Texas"},{"abv":3.399771794091099,"category":"North American Ale","city":"Greeley","coordinates":[40.4233,-104.709],"country":"United States","ibu":19,"name":"Old 8444 Alt","state":"Colorado"},{"abv":2.3440299245491936,"address":"1814 Second Street","category":"North American Ale","city":"Santa Fe","coordinates":[35.6631,-105.966],"country":"United States","ibu":71,"name":"Altbier","state":"New Mexico","website":"http://www.secondstreetbrewery.com/"},{"abv":5.08555325053127,"address":"5798 South Rapp Street","category":"North American Ale","city":"Littleton","coordinates":[39.612,-105.019],"country":"United States","ibu":118,"name":"5280 Roadhouse Ghost Town Brown","state":"Colorado"},{"abv":9.952255094006931,"city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":66,"name":"Cloud Nine Witbier","state":"Ohio"},{"abv":8.782174556489066,"address":"Emil-Hoffmann-Strae 4-10","city":"Kln","coordinates":[50.8753,6.9944],"country":"Germany","ibu":93,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":3.167425672993245,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":53,"name":"2 Brothers","state":"Illinois"},{"abv":3.7394968708151666,"address":"103 West Michigan Avenue","category":"British Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":86,"name":"Scotch Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":5.363655714512706,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":95,"name":"Bière de Miel","state":"Hainaut"},{"abv":11.07919800529798,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":59,"name":"Evolutionary IPA","state":"Illinois"},{"abv":10.02205604695488,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":111,"name":"Bubba","state":"Wisconsin"},{"abv":7.25,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":95,"name":"Fat Cat","state":"Colorado"},{"abv":7.8499999046,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This dark lager was originally brewed as liquid bread to sustain Bavarian monks while fasting. Its sweet complex malt character comes from brewing with many varieties of dark roasted caramel malts and long periods of cold storage (6 months).","ibu":30,"name":"Sprecher Doppelbock","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":9,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":9,"name":"Special Extra Export Stout","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":4.8000001907000005,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"FA is no small beer: despite its deceptively pale golden colour, it boasts a big, smooth flavour and strong punch. Brewed with the finest English malts, and conditioned in cask with dry hops to produce fresh hop aromas and a fuller flavour, delighting the mouth and stimulating the tongue.","ibu":107,"name":"FA","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":6.0327625249278345,"address":"1075 East 20th Street","category":"German Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":101,"name":"Sierra Nevada Kellerweis","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named after one of the longest running bicycle races in France and aptly nicknamed \"The Hell Of The North\", the Paris-Roubaix has been held every April since 1915. This Pale Ale is brewed with Belgian and German malts and bittered with 3 different American hops for a pleasing balance.","ibu":107,"name":"Paris-Roubaix Pale Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.1999998093,"address":"445 St.Paul Street","category":"Other Style","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Senator Joseph McCarthy. The Hollow Earth Society. Members of the Spanish Inquisition. All convinced they were blessed with the gift of clarity. And proof that clarity might be overrated. \n\n\nSometimes, being unclear—and a little flexible—is a good thing. Like when you are looking for the perfect refreshment. Dundee Wheat Beer combines wheat and yeast into a refreshing hefeweizen-style brew. Unfiltered, so it is slightly cloudy and pleasantly unclear. \n\n\nSo the next time you’re convinced you’re right about what you’ve been drinking, give a little “unclarity” a try.\n\n\nAn American-style, unfiltered wheat beer. Pale straw in color with a light cloudiness from carefully selected wheat and yeast. Pleasant spicy malt aroma and a crisp hop finish.","ibu":98,"name":"Dundee Wheat Beer","state":"New York"},{"abv":5,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our commemorative ale honors Samson the elk. This is an oatmeal stout that is full-bodied with a wonderful roasted flavor and just a touch of sweetness.","ibu":34,"name":"Samson Stout","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":9.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"The granddaddy of stouts. Intended for export to the Imerial Court of Russia's Catherine the Great. Jet black. Full-bodied. Very strong.","ibu":112,"name":"Kate The Great Russian Imperial Stout","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":10.463186406823016,"address":"636 East Main Street","category":"Irish Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"Think of Guinness but with a \"smooth bite\" to it. This is a wonder beer for those of us who enjoy a porter.","ibu":82,"name":"Bourbon Barrel Smoked Porter","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":7,"address":"1249-A Wicker Drive","category":"Belgian and French Ale","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"This style originated in Belgium to compete with the pilsners from Czechoslovakia, Germany, and Poland. It is a fruity ale with very strong carbonation, with complex, spicy flavors like cloves.","ibu":21,"name":"Hell's Belle","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":5.9000000954,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":11,"name":"Fuel Cafe","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5.05593622406845,"address":"Hofmhlstrae 10","city":"Eichsttt","country":"Germany","ibu":26,"name":"Dunkel","state":"Bayern"},{"abv":5.481722067603582,"category":"North American Ale","city":"McHenry","coordinates":[39.5584,-79.3528],"country":"United States","ibu":18,"name":"Big Bear Stout","state":"Maryland"},{"abv":5.3000001907,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Juniper Pale Ale: the new package for Yellow Snow Ale (winter 2004/2005). While the recipe (a pale ale infused with whole juniper berries) on the label remain the same, the name and label are new for 2005. Juniper Pale Ale is available in the classic 22-ounce bottle and on draft.","ibu":17,"name":"Juniper Pale Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.9000000954,"address":"23 Hayward St.","category":"Irish Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Named due to it's popularity with London railroad porters, it's known for its dark, rich, and roasty notes.","ibu":100,"name":"Ipswich Porter","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":4.7399997711,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \"Select,\" but people started asking for that \"Blue Ribbon\" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \"Blue Ribbon\" to the bottle in 1895.\n\n\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \"Export\" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\n\n\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!","ibu":43,"name":"Pabst Blue Ribbon","state":"Texas","website":"http://www.pabst.com/"},{"abv":2.885876998220034,"address":"61 Brookline Avenue","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":4,"name":"Hercules Stong Ale","state":"Massachusetts"},{"abv":8.326383310685877,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":84,"name":"Raccoon Red Ale","state":"California"},{"abv":5.636183115824203,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":106,"name":"Honest Stout","state":"Illinois"},{"abv":14.89625518109303,"category":"British Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":22,"name":"Wee Heavy","state":"Illinois"},{"abv":11.594441696395364,"city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":117,"name":"Golden Pale","state":"Colorado"},{"abv":6.4951694579202135,"address":"954 West Eckhardt Avenue","category":"Irish Ale","city":"Penticton","coordinates":[49.4944,-119.61],"country":"Canada","ibu":76,"name":"Killer Beer Dark Honey Ale","state":"British Columbia"},{"abv":8.5,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Skull Splitter is our strongest ale: which is named after Thorfinn Einarsson who was the 7th Viking Earl of Orkney. Sophisticated, satiny smooth with a deceptively light character, it is a tribute to our colourful forbear.\n\n\nOn the nose, this strong beer has a fruity malt character, with hints of dark fruit, spicy hop, dates and figs.\n\n\nOn the palate, rich and complex with sweet toasted malt, molasses, fresh and dried fruit and hints of warming spices.","ibu":86,"name":"Skullsplitter Ale","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":7.13688880443983,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":30,"name":"Black Powder Stout","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"This big tasting brew is only available in the brewpub. Very smooth and balanced with a deep clear brown color. Lightly hopped.","ibu":70,"name":"One Nut Brown Ale","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5.1999998093,"address":"Brouwerijplein 1","category":"German Lager","city":"Leuven","coordinates":[50.8865,4.7069],"country":"Belgium","description":"Jupiler is the most famous and most popular beer in Belgium. This delicious lager is brewed with the finest ingredients (malt, maize, water, hop, yeast), using undisputed craftsmanship, ensuring an outstanding beer quality. Jupiler offers refreshment on a wide variety of occasions, thanks to its digestibility and accessible taste. Jupiler (5,2 % ABV) is ideally served at a temperature of 3°C. The low-alcoholic variant Jupiler N.A. (0.5%) should be served at 1-2°C.\n\n\nJupiler has an outspoken image of masculinity, courage and adventure. Furthermore, Jupiler understands men like no other brand and shares their best moments. This combination of male bonding, self-confidence and self-relativation, speaks to all men and makes Jupiler an ally on their road through life.\n\n\nJupiler is the official sponsor of the highest Belgian football division, the Jupiler League, and also supports the Belgian national football team. Just like football, Jupiler is all about competence and ruggedness, effort and effort reward, team spirit and... festivity!","ibu":91,"name":"Jupiler","website":"http://www.inbev.com"},{"abv":5,"address":"Nadrazni 84","category":"German Lager","city":"Praha","coordinates":[50.0685,14.4067],"country":"Czech Republic","description":"Classic famous czech beer from Praha, one of the best beers of the world","ibu":70,"name":"Staropramen","website":"http://www.staropramen.com"},{"abv":5.0999999046,"address":"357 Salmon Brook Street","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"German Style Light Ale. Smooth, easy drinking with subtle noble hop character.","ibu":41,"name":"Copper Hill Kolsch","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":5,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"From Harpoon's site:\n\n\n\"When first seeing Harpoon Ale in a glass, you will notice its golden caramel color. You will also see that it is not excessively carbonated. High carbonation would mask this beer’s subtle flavor. The first aroma will be fruity. This is produced by the yeast and is a signature characteristic of Harpoon’s proprietary yeast strain. The second perceptible aroma is from the malt, with a delicate caramel note. Upon tasting Harpoon Ale, you will find that the malty, fruity character is nicely balanced by the mild hop bitterness. It has a smooth, medium body. The finish of this beer is crisp but not dry.\n\n\n\nThe overall character of this beer is fruity, balanced, and mild.\";\"0","ibu":45,"name":"Harpoon Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":9.8000001907,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Commemorating the 10th anniversary of Tommyknocker Brewery, this special brew is meticulously crafted with pure maple syrup, the highest quality chocolate and crystal malts and is accented with the finest blend of European and American hops. Imperial Nut Brown Ale, at 9.8% alcohol by volume, is a bigger, bolder version of their Maple Nut Brown.","ibu":28,"name":"Imperial Nut Brown","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":6,"address":"550 Roseberry Street","category":"North American Ale","city":"Winnipeg","country":"Canada","description":"To admit that the brewer at Half Pints is a bit of a hophead is an understatement. This India Pale Ale is unabashedly hoppy, not only from the Amarillo hops we add to the brew kettle, but also from the northwest U.S. variety called Cascade that we add directly to the final tank. A firm toasted malt presence forms the background for all of these hops, and we're confident our Little Scrapper IPA could take other so-called IPA's to the mat if called upon to do so. Try it with a curry or a basket of beer battered fish & chips. Serve in a glass at 8 degrees celcius. Unpasturized.","ibu":65,"name":"Little Scrapper IPA","state":"Manitoba","website":"http://www.halfpintsbrewing.com"},{"abv":11,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Before filtering the final batch of 2008 Mad Elf we racked some beer into bourbon barrels for six weeks of tender loving care. After bottling, we aged the beer for approximately eight months. This allows the tart cherries to push to the front. Subtle vanilla, bourbon, charred wood, coconut and toasted nut endnotes emanate from Splinter Red.","ibu":45,"name":"Tröegs Splinter Beer Red","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.6999998093,"address":"P.O. Box 315","category":"German Lager","city":"Blacksburg","coordinates":[37.23,-80.41],"country":"United States","ibu":36,"name":"Blacksburger Pils","state":"Virginia","website":"http://www.blacksburgbrewing.com/"},{"abv":6.5,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Every winter 300 hardy Telemark skiers converge at Mt. Bohemia and the Porcupine Mountains ski areas for three days of back country touring, lift served high speed runs, chili cook offs, and dancing and beer drinking to Finnish Reggae, Bluegrass, or whatever else comes out of the woodwork. Steve brews this hoppy American Brown Ale in honor of his good friends and ski buddies from all over the Midwest and Canada who attend. Rich, malty, and dry-hopped to perfection. Available December through March.","ibu":78,"name":"American Brown Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":10.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"High in the winter sky, two parallel stick figures are visible & known as “the twins,” or the constellation Gemini. The astronauts of the 1960s flew as teams of two in a program named after the celestial pairing. At Southern Tier, we have our own fraternal twins, Hoppe & Unearthly. Blended together & placed in this vessel, the mission of our Gemini is to travel high & take passengers on a journey far into the heavens.","ibu":38,"name":"Gemini Imperial Blended Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.8000001907000005,"address":"225 Heritage Ave","category":"Belgian and French Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Smuttynose Winter Ale is a full-bodied, amber beer brewed with a special Trappist ale yeast. Stylistically reminiscent of a Belgian Abbey Double, it features fruity aromas and flavor, balanced by soft Crystal hops. Warming, mellow & pleasantly complex, Smuttynose Winter Ale is your perfect cold weather companion.","ibu":22,"name":"Smuttynose Winter Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.920089331520762,"address":"2323 N Milwaukee Ave","category":"British Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"Drinkable brown session beer with a nutty, toffee flavor. Served lightly carbonated from a traditional Brittish handpump.","ibu":75,"name":"Workingman Mild","state":"Illinois","website":"http://revbrew.com/"},{"abv":5.647660142050165,"address":"2 Sagamore Street","category":"North American Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Bumppo's Brown Ale is a dark Dark Mild Ale. It is lightly hopped with a medium body, darkened and flavored with chocolate malt.","ibu":58,"name":"Bumppo's Brown Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":14.360319378963123,"city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":29,"name":"Dunkelweizen","state":"Pennsylvania"},{"abv":6,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":85,"name":"Steinworthy Oktoberfest","state":"Nebraska"},{"abv":5.4000000954,"address":"Heitzerstrae 2","category":"German Lager","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":62,"name":"Winter-Traum","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":5.1999998093,"address":"Friedhofstrae 20-36","category":"German Ale","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":21,"name":"Hefe-Weizen","state":"Baden-Wrttemberg"},{"abv":8,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This beer, with high fermentation, has a pale amber colour and a flowery, fruity taste with a harmonious balance between sweet and sour (8% alcohol content). \n\nThis beer has a thick and vivid froth and strikes by its balanced taste with a delicate bitterness.","ibu":20,"name":"St. Bernardus Tripel","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":4.8000001907000005,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":45,"name":"Irish Dry Stout","state":"California","website":"http://www.moylans.com/"},{"abv":8.5,"address":"20, rue d'Houdeng","city":"Le Roeulx","coordinates":[50.5018,4.1086],"country":"Belgium","ibu":112,"name":"Triple","state":"Hainaut"},{"abv":9.440579085795836,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":20,"name":"Brogen Meadow Pale Ale","state":"New Jersey"},{"abv":10.26695182900262,"address":"Postplatz 1-4","city":"Donaueschingen","country":"Germany","ibu":69,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":7.7307051689145325,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":61,"name":"Cattail Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.33091792616297,"address":"835 48th Avenue","category":"North American Ale","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":9,"name":"Colony Oatmeal Stout","state":"Iowa"},{"abv":10.840948187576357,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":40,"name":"English Brown Ale (discontinued)","state":"Nebraska"},{"abv":1.8880198138085191,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":80,"name":"Star of India Pale Ale","state":"California"},{"abv":5.741412436748654,"address":"5221 Water Street","category":"North American Ale","city":"Augusta","coordinates":[38.5702,-90.8802],"country":"United States","ibu":95,"name":"Tannhauser","state":"Missouri"},{"abv":5.1999998093,"address":"50 N. Cameron St.","category":"British Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This flavorful sweet ale has a smooth malt finish balanced against a light hop flavor. This beer is very quaffable and has become a brewpub favorite throughout the United States. \n\n\"Jolly Scot\" was a famed local beer produced by R.H. Graupners Brewery that was located at 10th and Market – one block from our brewery.","ibu":11,"name":"Jolly Scot Scottish Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6.972939796575652,"category":"German Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":118,"name":"Bavarian Wheat","state":"Texas"},{"abv":4.011386199176736,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":113,"name":"Nut Brown","state":"Illinois"},{"abv":9.56117178405725,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":19,"name":"Brown Cow Ale","state":"South Dakota"},{"abv":2.2335470949253002,"address":"PO Box 1510","category":"North American Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Uniquely hand-crafted using 100% all natural ingredients: The result is the smoothest, most flavorful light beer.","ibu":69,"name":"Abita Light Beer","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9.3999996185,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"This Bodacious Oatmeal Russian Imperial Stout will crush you like no other! This is the grand-daddy of all stout styles, with an intensely deep roasted and full bodied flavor. A robust hop character adds a refreshing balance.","ibu":46,"name":"B.O.R.I.S. The Crusher Oatmeal-Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Brewing the perfect ale is truly a balancing act...hazardous work you might say. With Hop Hazard our challenge was to hand craft a malt rich base that could counterbalance a combustible five-hop blend and still leave your taste buds with enough room to enjoy a unique, crisp hop finish.","ibu":43,"name":"Hop Hazard","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":10.5,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"Sweet with some\n\ntropical flavors, some banana, a hint of clove.","ibu":4,"name":"Head Trip","state":"Oost-Vlaanderen"},{"abv":5.6999998093,"address":"420 Harrison Drive","category":"Irish Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"A roasty robust porter. \n\nBrewed with malt that I smoke over alder and apple wood. \n\n\nGoes great with steak, burgers, \n\nas well as barbecued, grilled, or smoked food. \n\nKielbasi! \n\n\nCheeses? \n\nTry it with Gouda, Brie, Swiss, or Havarti.","ibu":59,"name":"Hellsmoke Porter","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":6.0999999046,"address":"2035 Benson Avenue","category":"North American Ale","city":"St. Paul","coordinates":[44.9084,-93.1538],"country":"United States","ibu":100,"name":"Angry Planet Pale Ale","state":"Minnesota","website":"http://flatearthbrewing.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers.","ibu":108,"name":"Golden Pheasant","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":4.9000000954,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":73,"name":"Scratch #13 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Enjoy the clover honey hue and tropical nose. Simultaneously Punchy and soothing with a big body and a finish that boasts pineapple and grapefruit. Flower power is hopped and dry-hopped five different times throughout the brewing and fermentation process.","ibu":37,"name":"Flower Power India Pale Ale","state":"New York"},{"abv":5,"address":"5080 Rue St-Ambroise","category":"Other Style","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","description":"Apricot Wheat Ale blends various barley malts with malted wheat and natural apricot essence to create an original-tasting beer with a clean, fruit nose.\n\n\n5% alc/vol Available in Bottles and Draft","ibu":29,"name":"St-Ambroise Apricot Wheat Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":5.9000000954,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep black color. Chocolate milk color head, providing an array of Belgian lace. Toffee and light roasty aromas and flavors. A malty sweet taste is evident but, this rich oatmeal based stout finishes dry. Made with 20 lbs. of oysters, in the boil, from our good friends at Hog Island Oyster Company.","ibu":65,"name":"Oyster Point Oyster Stout","state":"California","website":"http://www.21st-amendment.com/"},{"abv":5.6999998093,"address":"312 North Lewis Road","category":"German Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":6,"name":"Royal Weisse","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":8,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":115,"name":"Slam Dunkelweizen","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6.0203652725653445,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":101,"name":"Green Valley Wild Hop Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":10,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Our American-style Barleywine undergoes a three hour boil to intensify the caramel malts and the enormous Pacific Northwest hop charge. The result is a rich, estery brew with toffee notes and citrus hop flavors layered throughout. Enjoy this brew fresh today or lay it down for aging to see how the flavors of each vintage evolve.","ibu":10,"name":"Barleywine","state":"California","website":"http://www.greenflashbrew.com"},{"abv":7.641356916859106,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":8,"name":"Belgian Abbey","state":"California"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":92,"name":"Saison Imperiale","state":"Oost-Vlaanderen"},{"abv":3.3756116056615806,"address":"1650 Dell Range Boulevard","category":"North American Lager","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":19,"name":"Big Horn Light","state":"Wyoming"},{"abv":5.936200750517199,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":36,"name":"X-Line","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":11.195471518459264,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":81,"name":"Amber","state":"Wisconsin"},{"abv":5,"address":"No. 45, No. 3 Trunk Road","category":"North American Lager","city":"Yangon","coordinates":[16.7779,96.1679],"country":"Myanmar","ibu":107,"name":"Lager Beer"},{"abv":4.6220704824925365,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":60,"name":"Saison","state":"Nebraska"},{"abv":9.470000267,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":54,"name":"Imperial Stout 2001","state":"California","website":"http://www.stonebrew.com/"},{"abv":0.6971975415881004,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":45,"name":"Chinook Amber","state":"Nebraska"},{"abv":14.96016948128431,"address":"103 West Michigan Avenue","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":103,"name":"Arcadia ESB","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":7.275971631080171,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":90,"name":"Pretty Girl Pilsner","state":"Wisconsin"},{"abv":6.381478100843348,"address":"18452 NE Ribbon Ridge Road","city":"Newberg","coordinates":[45.3498,-123.073],"country":"United States","ibu":18,"name":"Black Cider","state":"Oregon"},{"abv":5.4000000954,"address":"Alte Akademie 2","category":"German Ale","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":25,"name":"Kristall Weissbier","state":"Bayern"},{"abv":8.965824007378242,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":23,"name":"Abby Road Belgian Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":5.9000000954,"address":"1999 Citracado Parkway","category":"Irish Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone Smoked Porter is dark, rich and complicated. A porter is substantially darker than a pale ale, but not as black or opaque as a stout. Our Smoked porter has a captivatingly deep mahogany color, complimented by silky dark tan head. Rich, full bodied and robust. Smooth, with chocolate and coffee-like flavors balanced by the subtle \"smoky\" character of just the right amount of peat-smoked specialty malt.","ibu":22,"name":"Smoked Porter","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.8000001907000005,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","description":"Flashback Anniversary Ale is an India-Brown Ale with 6.8% ABV. This is the first beer we’ve made here that uses one single hop variety (Cascade) in the recipe in five separate additions. The fresh Cascade hop aroma and flavor is perfectly balanced with the dark roasted grains, making Flashback a very unique beer. We’re calling it an India Brown Ale to help illustrate its flavor to the consumer. It’s hoppy like an IPA but dark and roasty like a Brown Ale. Put them together and voila! Flashback at its finest!","ibu":58,"name":"Flashback Anniversary Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":6.25,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This Belgian witbier begins with equal parts malted wheat and pale barley to create its traditional cloudy white appearance. The addition of Brettanomyces gives ANCHOR its trademark \"green apple\" or \"horse blanket\" aroma and lends tartness to the flavor and finish. At over 6% ABV, this ANCHOR's got a bit of more kick than most wits.","ibu":44,"name":"Anchor Witbier with Brettanomyces","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.5,"address":"215 1/5 Arch St.","category":"Belgian and French Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"Our Gran Met (Grand Master) is an Ale made from our Propriatery yeast from a small brewery in Belgium. We use Cane and Beet sugar, along with German Pilsner Malt to create the unique flavor of this age old style. We also use a unique fermentation process of slowly adding the sugars to the fermentation during fermentation. This allows the yeast to more slowly ferment the beer without overloading the yeast. This process allows for a more clean, tight flavor profile.10% alc by vol. \n\n\nBottle Conditioned and Refermented.","ibu":4,"name":"Gran Met","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":0.14851047685542684,"address":"121 North Market St.","category":"North American Ale","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":14,"name":"Selin's Grove IPA","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":11.440495697684948,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":20,"name":"Tart","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":6,"address":"4120 Main Street","category":"Other Style","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Ruby colored ale fermented with over 500 pounds of real black and red raspberries for a distinct berry aroma and a tart, sweet flavor. This beer is gently filtered to preserve its delicate profile and is made with both Belgian Ale Yeast and our Proprietary Lager Strain.","ibu":80,"name":"Schuylkill Punch","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":11.715029072550402,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":55,"name":"Blonde Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.0999999046,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":37,"name":"Belgian White","state":"Washington"},{"abv":12.658649108919116,"address":"1253 Johnston Street","category":"North American Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":27,"name":"Pelican Bay Brown","state":"British Columbia"},{"abv":4.5999999046,"address":"Hohenzornstrasse 2","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":44,"name":"Huusbier Hell"},{"abv":12.313600709042747,"address":"111 South Murphy Avenue","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":20,"name":"Bitter","state":"California"},{"abv":8.5,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":16,"name":"Der Weisse Bock","state":"Bayern"},{"abv":4.4000000954,"city":"Abingdon","coordinates":[51.6701,-1.2850000000000001],"country":"United Kingdom","ibu":27,"name":"Tanners Jack","state":"Oxford"},{"abv":3.248942107492244,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":8,"name":"Haymaker Extra Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":14.605117553658019,"address":"Lion Brewery","city":"Harltepool","coordinates":[41.4995,-81.6954],"country":"United Kingdom","ibu":54,"name":"Long Leg English Fuggles Hop Ale","state":"Cleveland"},{"abv":9,"address":"506 Columbia Street","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":11,"name":"Old Boardhead 2006","state":"Oregon"},{"abv":0.551161136025512,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":87,"name":"Espresso Porter","state":"Montana"},{"abv":12.933666556789454,"address":"ul. Browarna 88","city":"Zywiec","coordinates":[49.6622,19.1742],"country":"Poland","ibu":30,"name":"Krakus","website":"http://www.zywiec.com.pl/"},{"abv":9,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":25,"name":"Brigand","state":"West-Vlaanderen"},{"abv":6.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"An explosion of hops dominate this deep golden ale. Brewed with four varieties of hops & dry hopped with three other hops, the flavor is powerful. Not a harsh bitterness, but a full hop flavor.","ibu":100,"name":"Bottle Rocket IPA","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":3.8512409170043984,"address":"67 Mytton Oak Road","category":"Irish Ale","city":"Shrewsbury","coordinates":[52.7069,-2.787],"country":"United Kingdom","ibu":68,"name":"Entire Butt English Porter","state":"Shropshire"},{"abv":11.831308972795538,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":1,"name":"Iditarod Imperial Stout","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":11,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":42,"name":"El Diablo Tripel","state":"Illinois"},{"abv":5.103388485209682,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A spiced ale that tastes just like pumpkin pie in a glass.\n\n\nThe Pumpkin Ale is a malty, copper coloured brew that's spiced with cinnamon, cloves, nutmeg and ginger. We add 100 lbs of pumpkin directly to the mash and the resulting beer tastes just like pumpkin pie in a glass.","ibu":88,"name":"The Great Pumpkin Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":0.7386885921948128,"ibu":90,"name":"07/22/10 08:00 PM"},{"abv":10.703970913169316,"address":"210 Swanson Avenue","category":"North American Lager","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Light American Lager, Our Lightest, Lowest Carb. Beer","ibu":103,"name":"UpRiver Lager","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":8,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Yes that's right! The mother of all Pumpkin Ales is currently in transit to our wholesalers and should be out on shelves around mid-September. This 8.0% ABV pumpkin ale is heartier, spicier, and more \"caramelly\" and \"pumpkiny\" than its faint brethren! \n\n Perfect finisher on a cool autumn night, or match it up with a slice of pumpkin pie and fresh whipped cream. \n\n If you don't agree this is the mother of all pumpkin ales, then you just don't like mothers!","ibu":27,"name":"Imperial Pumpkin Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.115274730676307,"address":"906 Washington Street","category":"North American Lager","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":34,"name":"Harvest Wheat","state":"California"},{"abv":10.200983896461214,"category":"Irish Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":58,"name":"Famous Porter","state":"Massachusetts"},{"abv":8.679950919252411,"category":"North American Ale","city":"Anchorage","coordinates":[61.2181,-149.9],"country":"United States","ibu":42,"name":"Ironhorse Not Brown","state":"Alaska"},{"abv":12.071100761799,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":64,"name":"Classic Pale Ale","state":"North Carolina"},{"abv":11.396377998661155,"address":"107 North Lincoln Avenue","category":"North American Lager","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":66,"name":"Wheat","state":"Nebraska"},{"abv":6.194865394386449,"address":"Polson MT 59860","category":"Other Style","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":56,"name":"Peaches and Cream","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":6.224696357699654,"address":"175 Bloor Street East","category":"North American Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":60,"name":"Rickard's Pale Ale","state":"Ontario"},{"abv":7,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"ENVY Imperial Pilsner obsessively desires to be better than the world’s most common lager. Envy vies for attention with its beautifully bright, golden color and tightly-formed crown. Intense yet true pilsner malt provides the perfect base for profuse citrus, floral and spicy hop flavor. Envy achieves distinction, making other beers turn green.","ibu":117,"name":"Envy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"There comes a time every year in the Adirondacks when a heavier, more malty brew compliments the cold winter months. This brew showcases a variety of dark roasted malts, producing a beer with a rich chocolaty flavor.","ibu":74,"name":"Saranac Chocolate Amber","state":"New York","website":"http://www.saranac.com"},{"abv":9.291028936359478,"address":"299 Main Street","category":"Other Style","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":117,"name":"Vanilla Berry Orange","state":"Iowa"},{"abv":13.639081960912051,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":6,"name":"Hell","website":"http://www.paulaner.com/"},{"abv":5,"address":"Marsstrae 46-48","category":"German Ale","city":"München","country":"Germany","ibu":87,"name":"Franziskaner Hefe-Weissbier Hell / Franziskaner Club-Weiss","state":"Bayern"},{"abv":12.863801760575356,"address":"Kreuzeckstrae 23","category":"German Ale","city":"Pullach im Isartal","coordinates":[48.0708,11.5311],"country":"Germany","ibu":0,"name":"Stationsweizen","state":"Bayern"},{"abv":7.597150060516496,"address":"925 South Third Street","category":"Irish Ale","city":"La Crosse","country":"United States","ibu":12,"name":"Winter Porter","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":8,"address":"155 Mata Way Suite 104","category":"German Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":66,"name":"Z-U-Later Doppelbock","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.126811997369144,"address":"57 Hamline Avenue South","category":"North American Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":15,"name":"India Pale Ale","state":"Minnesota"},{"abv":2.065615489580055,"address":"2922 Lyndale Avenue South","city":"Minneapolis","coordinates":[44.9491,-93.2885],"country":"United States","ibu":37,"name":"High Point Dunkel","state":"Minnesota"},{"abv":5.0999999046,"city":"Bernalillo","coordinates":[35.3,-106.551],"country":"United States","ibu":8,"name":"Silver","state":"New Mexico"},{"abv":8.5,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":64,"name":"Christmas Ale","state":"Antwerpen"},{"abv":5.249774897078199,"city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":26,"name":"Scottish Ale","state":"Delaware"},{"abv":5.5999999046,"address":"17700 Boonville Rd","category":"Other Style","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"\"This copper colored ale is smooth, malty, and lightly sweet, with a delicate hint of spice for that oh-so-drinkable, extra velvety flavor. The character is lighter in body than its cousin our wildly popular Winter Solstice Seasonal Ale. This is a silky, creamy dream, perfect as a warm weather beer.\";\"0","ibu":112,"name":"Summer Solstice Cerveza Crema","state":"California","website":"http://avbc.com/"},{"abv":3.661238224045773,"ibu":14},{"abv":7.759697514454227,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":102,"name":"Schlafly Witbier","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.832282247896642,"city":"Reedsburg","coordinates":[43.5325,-90.0026],"country":"United States","ibu":97,"name":"Dunkelweiss","state":"Wisconsin"},{"abv":5,"address":"2801 - 27A Avenue","city":"Vernon","coordinates":[50.2613,-119.277],"country":"Canada","ibu":40,"name":"Premium Lager","state":"British Columbia"},{"abv":8,"address":"No-254, Colombo Road","category":"North American Ale","city":"Colombo","coordinates":[38.7548,-9.1883],"country":"Sri Lanka","description":"\"...the stout was soft, fresh and quite delicious. This was the top-fermenting Lion Stout...It was bottle-conditioned and had an extraordinary chocolaty, mocha...character.\" - Michael Jackson, The Beer Hunter","ibu":3,"name":"Lion Stout","website":"http://www.lionbeer.com/"},{"abv":5.5,"address":"9322 State Route 414","category":"British Ale","city":"Lodi","coordinates":[42.5739,-76.8582],"country":"United States","description":"Pours a very deep black with a pleasant aroma and a thick brown head. It has the usual coffee taste you would expect with a hint of chocolate. There is quite a lot of carbonation but is very drinkable.","ibu":14,"name":"Oatmeal Stout","state":"New York"},{"abv":5.4000000954,"address":"905 Line Street","category":"German Lager","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"AutumnFest is Weyerbacher's own unique twist on the German Oktoberfest style. Copper-amber in color, AutumnFest is made with Vienna and Munich malts for that authentic, Bavarian easy drinking taste. Each sip imparts a wonderful roastiness of malt on the tongue followed by a smooth, consistent finish. Wonderfully balanced with a clean, velvety, slightly fruity taste, AutumnFest is the perfect beer for the Fall- a nice transition between the lighter beers of summer and the darker, heavier winter brews. It's a favorite of many Weyerbacher aficionados, who anticipate the end of summer with this wonderful beer. \n\n\n Weyerbacher AutumnFest ( ABV 5.4%) is generally available in stores August through December. Pick up a case to celebrate the change of seasons. Prost!","ibu":19,"name":"AutumnFest","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":1.6493420602183084,"ibu":101,"name":"07/22/10 08:00 PM"},{"abv":6.060378760562132,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":3,"name":"Zlaté Pivo Golden Beer","state":"Nebraska"},{"abv":8.391443984608642,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":54,"name":"Iron Mine Pale Ale","state":"North Carolina"},{"abv":2.3113801398731812,"category":"Other Style","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":104,"name":"Rhubarb","state":"North Carolina"},{"abv":4.9000000954,"address":"Rheydter-Strae 138","category":"North American Ale","city":"Korschenbroich","coordinates":[51.1833,6.4993],"country":"Germany","ibu":84,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":2.5742642065956414,"address":"Am Deich 18-19","category":"German Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":58,"name":"Beck's Light","state":"Bremen"},{"abv":8.6999998093,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Brace yourself, bereaved fans of Stone 11th Anniversary Ale, for your joyous new day has finally come! It’s like your first crush–you know, the one who broke your heart when she/he decided to go to the junior prom with what’s-their-name–has suddenly come back to you to go for a cruise down the main drag on Friday night. It’s like…it’s like finding that long lost gold watch, given to you by your father, who got it from his father, who got it from his father. It’s like when your best buddy in the world, Sam the family dog, finally sauntered up the front porch steps one sunny afternoon after having been on a six-week runaway. Yes, it’s just like that.\n\n\nAnd it’s like this: A brilliantly hopped double IPA–providing a wake up call of floral and citrus aromas–backed up by a deliciously smooth and dark roasted maltiness. You get the best of both worlds with this black double IPA.","ibu":90,"name":"Sublimely Self-Righteous Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.6999998093,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Our interpretation of a classic English beer style is copper-colored, medium-bodied and highly hopped. Its flavor is delightfully complex: tangy fruit at the start, with an assertive hop crispness and a long malty palate that one well-known beer writer has compared to the flavor of freshly-baked bread.","ibu":49,"name":"Shoals Pale Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":6.6999998093,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"It took only a couple of rounds of India's finest for the 19th century British Colonists to write home, \"Either send us some good beer or we're outta here.\" India Pale Ale is what was sent. Originally made extra hoppy to survive the voyage, it's unique flavor also survived the Colonists finicky tastes and became and instant favorite back home.\n\n\nPyramid India Pale Ale has the distinctively hoppy flavor and aroma craft beer enthusiasts demand. Abundant helpings of Columbus hops gives this ale an astonishing 67 IBU's - truly a beer for bold tastes! The distinguished Celebrator Beer News aptly named this brew \"hophead nectar\" (June/July issue, 1998).","ibu":76,"name":"Pyramid Thunderhead IPA","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":7.37593460819911,"address":"6 N. Reamstown Road","category":"North American Ale","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A nutritious st our that has a distinct, smooth and firm body. Specialty malts create a hint of nuttiness, coffee, chocolate, and roasted flavors.","ibu":31,"name":"Round Boy Stout","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":6.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In our never-ending pursuit of answering the burning question of what’s new, we present Scratch #12-2008, an IPA.\n\n \n\nThe IPA is a fickle beast; too much malt and you veer into a high-octane hopbomb, while too little hops can question a beer’s virility. In these chaotic days of shrinking hop harvests, balance is key to a proper IPA. Scratch #12-2008 delivers an intense pine nose married with a subtle wildflower aroma. The Thames Valley yeast adds an earthy nod to traditional English IPAs, while the American hops provide a bold contrasting bitterness.\n\n \n\nBreath deep, relax, enjoy.","ibu":90,"name":"Scratch #12 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.4000000954,"address":"Emil-Ott-Strasse 1-5","category":"Other Style","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":90,"name":"Schneider Weisse","website":"http://www.schneider-weisse.de"},{"abv":3.7999999523,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast.\n\n\nFood Pairings: The combination of Onward Stout and oysters is a match made in heaven. It also goes well with other shellfish, grilled steaks, and believe it or not, rich chocolate desserts. Carbonade Flamande, seared beef cubes simmered in Stout for several hours, is a classic Belgian dish.\n\n\nOG: 11.3 Plato\n\nFG: 4.3 Plato\n\nIBUs: 35\n\nSRM: 45\n\n3.8% abv","ibu":65,"name":"Onward Stout","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":7,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"First sold in 75 cl (25.4 fl.oz.) bottles, it is noted for its coppery colour which makes it particularly attractive.\n\n\nTopped with a creamy head, it gives off a light, fruity apricot aroma produced by the fermentation. The taste perceived in the mouth is a balance confirming the fruity nuances noticed in the fragrance. \n\n\nIts taste, which imparts a silky sensation to the tongue, is made refreshing by a light touch of bitterness. To the palate, the taster perceives a pleasant astringency which complements the flavour qualities of this beer very harmoniously.\n\n\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised.","ibu":118,"name":"Chimay Première (Chimay Red)","website":"http://www.chimay.com"},{"abv":4.109406798659082,"address":"1777 Alamar Way","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":46,"name":"Certified Organic Extra Pale Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":8.5,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":72,"name":"Bottleworks IPA","state":"Washington"},{"abv":4.5,"address":"4720 California Avenue SW","category":"North American Lager","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":37,"name":"Luna Weizen","state":"Washington"},{"abv":5,"address":"Florhofstrasse 13","category":"German Ale","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":89,"name":"Ur-Weizen"},{"abv":2.4226536849806743,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":85,"name":"Kellerpils","state":"Baden-Wrttemberg"},{"abv":11.300000191,"address":"Rue de l'Abbaye 8","category":"Belgian and French Ale","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"Reddish-brown colour, with a very compact head and an aroma of figs, feels like honey in the mouth. The alcohol profile is a major component in the flavour of this rich ale. It is very similar to 6 and 8, but has much more of everything. Some may find the high alcohol content to be disagreeable.","ibu":72,"name":"Rochefort 10","state":"Namur"},{"abv":11.671106692869413,"address":"Broughton","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":82,"name":"Old Jock Ale","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":12.984524517859192,"address":"392 George Street","category":"North American Ale","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":52,"name":"British Nut Brown","state":"New Jersey"},{"abv":0.7111853615900221,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":59,"name":"German Valley Amber","state":"New Jersey"},{"abv":0.8061289990818377,"address":"313 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":1,"name":"Helles Bock","state":"Wisconsin"},{"abv":9.839074504204724,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":112,"name":"Hitachino Nest White Ale","state":"Kanto"},{"abv":6.084864833047808,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":96,"name":"Black Diamond Imperial Porter","state":"Oregon"},{"abv":2.7045182018525105,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":22,"name":"Uptown Brown","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8.8999996185,"address":"5401 Linda Vista Road #406","category":"German Lager","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":78,"name":"Navigator Doppelbock","state":"California","website":"http://www.ballastpoint.com/"},{"abv":4.8499999046,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":94,"name":"Pilsner","state":"Colorado"},{"abv":5.3000001907,"address":"9085 Elk Grove Boulevard","category":"North American Ale","city":"Elk Grove","coordinates":[38.4093,-121.363],"country":"United States","ibu":104,"name":"Otis Alt","state":"California"},{"abv":5.5999999046,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":59,"name":"Witchtree ESB","state":"Minnesota"},{"abv":8.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Bask in the","ibu":66,"name":"Yakima Glory","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.8000001907000005,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Our India Pale Ale is hoppy and bitter with a nice sweet malt finish. Slow dry-hop conditioning brings out the herbal hop aromas.","ibu":81,"name":"Old Salt IPA","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"Irish Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"It usually means bigger. Richer. And we can think of no better way to describe the taste of this even-bolder take on our classic, Black Butte Porter. Black Butte XX is an imperial porter with a lot more malt and hops, a wealth of coffee, cocoa nibs and aged in bourbon oak barrels. XX. It also means 20. Enjoy one during our 20th anniversary. On the flavor scale - It’s legendary.","ibu":68,"name":"Black Butte XXI","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"180 Old Hume Hwy","category":"North American Lager","city":"Picton","coordinates":[-34.1855,150.607],"country":"Australia","description":"A traditional German-style lager, fermented at 7-9°C and lagered at 4°C for 4-6 weeks. The storage produces a soft, natural carbonation. Full-bodied with high bitterness and hop flavour and a dry finish. Hoppy aromatic nose. Available on draught or in 780 mL champagne-style bottles. Can be difficult to acquire.","ibu":88,"name":"Scharer's Lager","state":"NSW"},{"abv":4,"address":"5401 Linda Vista Road #406","category":"Belgian and French Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"Ballast Point Wahoo Wheat Beer is created using the same ingredients that were once used in Belgium. Flaked unmalted wheat, oats and malted barley comprise the grain. The unmalted wheat has a high protein content, which causes the beer to be hazy, thus giving it a cloudy, or \"white\" appearance. A special yeast gives a refreshing tangy flavor that is different from both the sour Weiss beers of Berlin or the banana and clovey Weizens of Bavaria. The mild hopping allows the unique malts to show through and does not conflict with the subtleties of the citrus spicing. This unique citrus character is created by adding a blend of curacao (bitter orange), sweet orange and coriander to the boil. White beers are light and refreshing, yet provide a complex reminder that interesting high quality beer does not have to be bitter and dark. Ballast Point Wahoo Wheat Beer is the perfect beer for sunny San Diego.","ibu":57,"name":"Wahoo Wheat Beer","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6.5,"address":"Gamle Rygene Kraftstasjon","category":"Belgian and French Ale","city":"Grimstad","country":"Norway","description":"One of our most refreshing brews, made for those hot summer days, but satisfying year 'round. Recommended serving temperature 8°C/45°F. Goes well with seafood, particularly oysters.","ibu":117,"name":"Nøgne Ø Saison","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5,"address":"1025 Owen Street","category":"German Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The ancient peoples that inhabited Wisconsin are known for building numerous celestial stone monuments and earthen effigy mounds to serve as symbols of their culture and their beliefs. Unfortunately, most of these structures have fallen victim to the farmer's plow over the past 150 years. Not far from the brewery, lying preserved on the floor of Rock Lake, are two effigy mounds - a Headless Man and a Turtle. Legend tells us, as the Turtle can survive on both land and in water, its spirit helped guide the Headless Man into the afterlife. May the Turtle's spirit guide you to happiness with a Headless Man Amber Alt.\n\n\nThe Headless Man is brewed in the \"old way\" of a Düsseldorf-style Altbier. A unique cold lagering process gives this amber ale its smooth taste.","ibu":111,"name":"Headless Man Amber Alt","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":14.205824446754134,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":95,"name":"Saint Florian's Doppelbock","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":7,"name":"Dublin Stout","state":"Illinois"},{"abv":5.4000000954,"address":"311 Tenth Street","category":"Belgian and French Ale","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Blue Moon Belgian White, Belgian-style wheat ale, is a refreshing, medium-bodied, unfiltered Belgian-style wheat ale spiced with fresh coriander and orange peel for a uniquely complex taste and an uncommonly smooth finish.\n\n\nThe name \"Belgian White\" is a reference to the cloudy white, opaque appearance of the beer. \"Belgian White\" also refers to the style of beer, which has been brewed in Belgium for about 300 years. This type of ale is brewed with malt, wheat and oats. It is unfiltered, which allows protein and yeast to remain suspended in the beer and creates the cloudy appearance. This also adds to the smoothness and full body of the beer.\n\n\nPutting a new twist on the lime ritual, Blue Moon is traditionally served with a slice of orange. Blue Moon was launched in 1995.","ibu":93,"name":"Blue Moon Belgian White","state":"Colorado","website":"http://www.coors.com"},{"abv":3.419362594100075,"address":"PO Box 316","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":99,"name":"Twist of Fate Bitter","state":"California"},{"abv":12.751329093219837,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":115,"name":"Blitzen","state":"California"},{"abv":10.665376099458811,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":113,"name":"Amber Ale","state":"Hawaii"},{"abv":12.29650670062236,"address":"1507 Montana Street","city":"Missoula","coordinates":[46.8726,-114.02],"country":"United States","ibu":67,"name":"Dancing Trout Ale","state":"Montana"},{"abv":7.4000000954,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":75,"name":"Model-A-Tor Doppelbock","state":"Nebraska"},{"abv":0.08367751307532978,"address":"200 East Campbell Avenue","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":57,"name":"ESB","state":"California"},{"abv":4.5999999046,"address":"29 Nyrang Street","category":"North American Lager","city":"Sydney","coordinates":[-33.8501,151.045],"country":"Australia","ibu":94,"name":"New","state":"New South Wales"},{"abv":5.0999999046,"address":"901 S. Bond St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"A complex, robust porter, Bad Moon is medium to full bodied with a slightly sweet, malty presence combined with hints of chocolate and coffee. This is a full-bodied beer that gets its chocolate and coffee-like flavors and color from the use of generous amounts of roasted malts. It has a smooth finish and a balanced hop character.","ibu":30,"name":"Bad Moon Porter","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5.8000001907000005,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A Traditional, British style. Robust and full bodied. Introduced as a member of the Winter Classics Mix Pack in 2004, Samuel Adams® Holiday Porter with its rich malt complexity has become a favorite among our winter seasonal brews. In total, five varieties of malted barley are used in the brewing process including a variety of German malt called Carafa®. The Carafa® gives our Holiday Porter its smooth, roasted malt character. Add generous portions of imported hops to the mix and one has a brew that is both robust and high in drinkability.","ibu":106,"name":"Samuel Adams Holiday Porter","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.3000001907,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Rich in color and bold in taste, our U.S. style Brown Ale combines roasted malt with two additions of specialty selected hops to produce a well-balanced ale with a satisfying finish.","ibu":112,"name":"Ipswich Dark Ale","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":2.5661215580080334,"address":"313 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":110,"name":"Hinterland Honey Wheat","state":"Wisconsin"},{"abv":5.199398010758322,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":51,"name":"Chesapeake Amber Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":11.331844294214307,"address":"Toronto ON","city":"Toronto","coordinates":[43.7379,-79.5714],"country":"Canada","ibu":28,"name":"Premium Dark","state":"Ontario"},{"abv":7.391444650072254,"address":"929 North Russell Street","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","ibu":96,"name":"Sweet Betty Classic Blonde Ale","state":"Oregon"},{"abv":0.6889020232398124,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":72,"name":"Stump Sitter Stout","state":"Michigan"},{"abv":9.645105272828914,"address":"Rue de Noupr s/n","city":"Cerfontaine-Silenrieux","coordinates":[50.2248,4.4102],"country":"Belgium","ibu":59,"name":"Joseph Spelt Ale","state":"Namur"},{"abv":0.13888942817888883,"address":"147 East Main Street","category":"Irish Ale","city":"Newark","coordinates":[39.6834,-75.7467],"country":"United States","ibu":29,"name":"Pig Iron Porter","state":"Delaware"},{"abv":11,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":10,"name":"Kasteel Bier Brune","state":"West-Vlaanderen"},{"abv":5.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"An amber ale with a ruby hue, fresh hop aroma, rich malt body and a complex palate.","ibu":14,"name":"Grail Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6.721036350016939,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":74,"name":"Dunkle Weiss","state":"Wisconsin"},{"abv":12.895107989766677,"address":"300 West Fourth Street","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":89,"name":"Cortland Autumn (discontinued)","state":"Nebraska"},{"abv":5.5999999046,"address":"1705 Mariposa Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":46,"name":"Porter","state":"California"},{"abv":7,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"1837 is a blonde beer that is slightly cloudy. It contains 7% alcohol and is refermented in the bottle. Following the brewing tradition of the great abbey beers, it is made with a blend of Quebec-grown raw wheat, lightly roasted barley and a hint of spices. It is a truly refreshing beer.","ibu":93,"name":"1837","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.6799998283,"address":"725 Fourth Street","category":"British Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","ibu":86,"name":"Dead Leaf Green","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":2.7866192397358414,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This smooth Ale has an even display of hop bitterness and bold malt flavor, with a hint of nutty flavor from the dark malt, to produce a superior brown ale taste","ibu":117,"name":"Squirrel's Nut Brown","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":9,"address":"2800 North Reading Road","category":"British Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":20,"name":"Fat Dog Stout","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":8.552406103696242,"address":"1001 South Eighth Street","category":"North American Lager","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":73,"name":"Courthouse Copper","state":"Wisconsin"},{"abv":6,"address":"110 Wisconsin Dells Parkway South","category":"Irish Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":23,"name":"North of the Border Porter","state":"Wisconsin"},{"abv":4.4000000954,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":102,"name":"Kelpie Seaweed Ale","state":"Scotland"},{"abv":4.8000001907000005,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":59,"name":"Schwarzbier","state":"Thüringen"},{"abv":4.036738495889699,"address":"Hauptstrae 219","city":"Miltenberg","coordinates":[49.6993,9.2492],"country":"Germany","ibu":60,"name":"Kräusen Naturtrüb","state":"Bayern"},{"abv":6.322030476509813,"address":"2029 Old Peshtigo Road","category":"North American Ale","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":73,"name":"Red","state":"Wisconsin"},{"abv":6.8000001907000005,"address":"99 Pyrmont Bridge Road","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":76,"name":"James Squire Australian Best Ale Limited Release","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":15,"address":"155 Mata Way Suite 104","category":"German Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":109,"name":"Broken Keg Ice Bock","state":"California","website":"http://www.portbrewing.com/"},{"abv":12.783849620584714,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":98,"name":"Kuaipa","state":"Hawaii"},{"abv":11.651205471837907,"address":"1398 Haight Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":30,"name":"Stout of Circumstance","state":"California","website":"http://www.magnoliapub.com/"},{"abv":13.638489539620704,"category":"North American Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":3,"name":"Bourbon Street Stout","state":"California"},{"abv":12.527459140400769,"address":"Schtzenstrae 8-10","category":"German Ale","city":"Miesbach","coordinates":[47.794,11.8311],"country":"Germany","ibu":99,"name":"Weiße Export / Helle Weße","state":"Bayern"},{"abv":5.3000001907,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Hop fans rejoice! Sunshine Pils combines the crisp taste of European style pilsners with a kicked-up hop character to create a balanced, refreshing seasonal beer. Golden in color with a fluffy white head, Sunshine Pils is the perfect beer for Summer.","ibu":85,"name":"Sunshine Pils","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.5,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This light refreshing wheat beer is sure to delight. Our special yeast and blend of malted and unmalted wheat provide the haze in our unfiltered style ale. This beer is traditionally served with a lemon slice on the side. \n\nThere are many water gaps along the Appalachian Trail. These water gaps were established where large rivers cut through the Appalachian Mountain Range. The Susquehanna River creates one of the more visually appealing water gaps just north of Harrisburg in the area at the Dauphin Narrows.","ibu":84,"name":"Water Gap Wheat","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.6599998474,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Miller Genuine Draft debuted in 1985 with fresh, smooth flavor that's a result of being cold-filtered four times. As we capitalize on the growing trend towards \"mainstream sophistication,\" MGD is positioned as the only beer refined to ideal smoothness for those who pursue their passion with integrity and conviction. For our target consumer, MGD is a brand that celebrates their experiences ... past, present, and future. Because, ultimately, in beer as in life, \"Experience is Golden.\";\"0","ibu":59,"name":"Miller Genuine Draft","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Obsidian Stout gets is inspiration from one of the world's largest obsidian flows at Newberry Volcano--just a few miles south of the brewery. \"The Big Obsidian Flow,\" as they call it, covers more than 700 acres with shiny black obsidian.","ibu":45,"name":"Obsidian Stout","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":8.245766220746109,"address":"1/1 Vittal Mallya Road","category":"North American Lager","city":"Bangalore","coordinates":[12.9689,77.5946],"country":"India","ibu":44,"name":"Flying Horse Royal Lager Beer"},{"abv":6.393253432334807,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":69,"name":"California Blonde Ale","state":"California"},{"abv":8.230043770842716,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":112,"name":"Bohemian Pilsner","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":0.4457283414198032,"address":"624 Ludington Street","category":"German Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":98,"name":"Wolverine Wheat Beer","state":"Michigan"},{"abv":6.157846729094044,"address":"33 Main Street","category":"German Lager","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":9,"name":"Bad Boy Oktoberfest","state":"New Jersey"},{"abv":8.942464215578632,"address":"Steigerstrae 20","category":"North American Ale","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":62,"name":"Traditional","state":"Nordrhein-Westfalen"},{"abv":5.75,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Lest we forget Aunt Cal, an early resident of Lake Mills. Local history remembers her for blindly running into a hitching post and saying, \"Excuse me, Dr. Dodge!\" It was said that she was an old sweetheart of the famous American poet, Henry Wadsworth Longfellow. And she still had the love letters to prove it! Sadly, Aunt Cal never wed. We brewed our Bitter Woman IPA the way we imagine Aunt Cal may have been, very fruity and intensely bitter. So lift up a pint of Bitter Woman IPA and toast Aunt Cal and the bitter woman you know. Cheers!\n\n\nBitter Woman IPA is our Wisconsin variation of an India Pale Ale. This beer is intensely bitter with a mighty hop flavor and aroma.","ibu":23,"name":"Bitter Woman IPA","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":9.060204347500449,"category":"North American Ale","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":19,"name":"Steel Head Stout","state":"Mississippi"},{"abv":2.3850528050912203,"address":"120 West Washington Street","category":"Belgian and French Ale","city":"Ann Arbor","coordinates":[42.2805,-83.749],"country":"United States","ibu":60,"name":"Iambic Lambic","state":"Michigan"},{"abv":3.364442208591637,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":47,"name":"Boxcar Brown Ale","state":"Wisconsin"},{"abv":2.5182610357414914,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Fall Fest is an Octoberfest lager available September-November. It is brewed with German Hersbrucker hops and pale, crystal and chocolate malts.\n\n\nThe result is a full-bodied, malty beer with a strong hop character and a beautiful amber color.\n\n\nCelebrate the season with Abita Fall Fest and your favorite German food","ibu":85,"name":"Fall Fest","state":"Louisiana","website":"http://www.abita.com/"},{"abv":10,"category":"Belgian and French Ale","city":"Breendonk","coordinates":[51.2206,4.3997],"country":"Belgium","description":"In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\n\n\n \n\n\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\n\n\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \n\n\nAbout Maredsous\n\n\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\n\n\"These beers have long been my favourites. Above all the 10° is an especially tasty beer.\";\"0","ibu":95,"name":"Maredsous 10 Tripple"},{"abv":6.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nThe long, cold nights of winter are a little brighter with Celebration® Ale. Wonderfully robust and rich, Celebration® Ale is dry-hopped for a lively, intense aroma. Brewed especially for the holidays, it is perfect for a festive gathering or for a quiet evening at home.","ibu":3,"name":"Celebration Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.9000000954,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nEach fall we celebrate our anniversary as one of America’s craft brewing pioneers with a special beer. This year, in celebration of our 27th year, we have made this beer available to the public for the first time, and aptly named it Anniversary Ale. \n\n\nAnniversary Ale is an American-style IPA featuring Cascade hops, the signature hop used in our Pale Ale. The beer has a pronounced pine and citrus hop aroma balanced by the sweetness of two-row pale and caramel malts. The result is an unusually well-balanced IPA that proves an IPA can be both assertive and elegant. Anniversary Ale is a medium-bodied, well-hopped ale that finishes with a slight malt sweetness.","ibu":57,"name":"Anniversary Ale 2007","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"In Britain, seasonal brews for winter are high in alcohol, robust, malty, and dark. The two main styles of these brews are Old Ales and Barleywines. As the name suggests, barleywines are similar to wines in alcohol and need aging but are derived from grain, not the grape. Rogues barleywine is described by beer expert Stuart Ramsey as: \"A masterful, intense creation from brewer John Maier....it has achieved a depth and complexity usually associated with well-ages strong ales. I hope the brewery bottles some before it disappears.\" We call it the cognac of beers. An unfiltered and unfined Barleywine. Intense, robust, malty and dark. The cognac of beers. A hugh beer in a little bottle, this is a beer designed for sipping.\n\n\nOld Crustacean is brewed with eight ingredients, Great Western Harrington, Klages, Hugh Baird Carastan and Munich Malts, Chinook and Centennial Hops, free-range coastal water and PacMan yeast. Old Crustacean is best when aged for one year. Old Crustacean is available in a new 750-ml ceramic swingtop bottle (replacing the much older 7-ounce and more recent 12 ounce XS-line package) and on draft.","ibu":65,"name":"Old Crustacean Barleywine 2004","state":"Oregon","website":"http://www.rogue.com"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Conspiracy Belgian-style Black Beer is the result of a collaboration between Midnight Sun brewers Gabe Fletcher and Ben Johnson and Pelican Pub (Pacific City, OR) brewer Ben Love. These brewers conspired during barley wine fest week to brew up a deviously delicious dark Belgian-style beer. \n\n\nConspiracy is opaque black with a creamy beige head. Black malt shrouds it in mystery; the Belgian yeast imparts intriguing flavor; the alcohol adds danger. If you're up for this mission, watch your back.\n\n\nConspiracy will be released in Anchorage and Portland in April 2007.","ibu":40,"name":"Conspiracy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"23 Hayward St.","category":"British Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Deep, rich, and malty with hints of chocolate and coffee. It's what espresso would be if it had the gumption to be beer. We use three different hop additions, specially selected crystal malts, roasted barley, and oatmeal to give it a soft and silky mouth feel. Makes a great dessert. Or meal.","ibu":8,"name":"Ipswich Oatmeal Stout","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":5,"address":"2423 Amber St","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"From our city of neighborhoods we offer you this \"Biére de Mars,\" or ruby farmhouse ale. In true Philadelphia fashion, we meld American and European ingredients into a complex ale with flavors of toasted malt and rye. Rowhouse Red is the perfect accompaniment for some quality time in the backyard garden (or on the front stoop) of your urban farmhouse.","ibu":46,"name":"Rowhouse Red","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":4.8000001907000005,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"An original American pale ale, our XPA highlights the subtle, sophisticated flavors and aromas of our Midwestern two-row malt and imported aromatic and Munich malts. Washington-grown Mt. Hood and Magnum hops create an extremely balanced beer with a beautiful straw color.","ibu":45,"name":"Extra Pale Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Our flagship beer. A session India Pale Ale brewed with Warrior, Amarillo & 'Mystery Hop X.' A powerful East Coast I.P.A. with a lot of citrusy hop character. THE session beer for beer geeks like us!","ibu":46,"name":"60 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":2.456538635870892,"address":"6 N. Reamstown Road","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A pale golden German ale with subdued, clean-tasting malt flavor and aroma. This is a beer from the \"old\" brewing tradition before lagers become popular. Fermented at a lower temperature than normal ales, and followed by several weeks of cold lagering.","ibu":86,"name":"Union Barrel Works Kolsch","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":4,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Lawnmower is our intro for those who need a little help jumping feet first into the crazy world that is Dogfish Head beer.\n\n\nIt's a starter beer, but it's not dumbed down. Lawnmower is made with quality ingredients and is a great thirst quencher - perfect to enjoy after a day in the sun mowing the lawn (or anything else that gets you hot and bothered)!\n\n\nDraft-Only, Limited Distribution","ibu":49,"name":"Lawnmower","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.9000000954,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Next up, we present Scratch Beer #11-2008, a Bitter. Back in the day, we used to brew a little number called Tröegs ESB. Even though this beer was retired almost six years ago, we still get numerous Tröegs old-schoolers (Martha) begging for its return.\n\n\nWell hang onto your boot straps because Scratch #11 is about as close as we can get to the original ESB without firing up the old brew kettle. The Scratch #11 recipe originates from Chris’ stint at England’s University of Sunderland brewing program. After returning to Colorado the brothers drew on Chris’ experience and brewed pilot batches tweaking that recipe. The ESB production recipe has direct bloodlines to these pilot batches.\n\n\nThe Thames Valley ale yeast and the roasted barley create a biscuit flavor with nutty undertones. Combining these flavors with the earthiness of East Kent Golding hops creates one hell of a fine session beer. Take in the deep mahogany beauty of this beer and breathe in the full hoppy nose. It’s not the ESB, but it’s damn special.","ibu":42,"name":"Scratch #11 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.3999996185,"address":"Rue Maurice Grevisse 36","category":"Belgian and French Ale","city":"Habay-Rulles","coordinates":[49.7185,5.5571],"country":"Belgium","ibu":14,"name":"Triple","state":"Luxembourg"},{"abv":6.1999998093,"address":"737 W. 5th Ave., Suite 110","category":"German Lager","city":"Anchorage","coordinates":[61.2179,-149.896],"country":"United States","description":"This dark lager combines the characteristics of three winter beer styles. All three of these styles traditionally come from the colder harsher areas of Europe. The styles are (1) Black Beer (aka schwartzbier) originating from the former East Germany); (2) Rye Beer which at one time was only made in hardier areas of Eastern and Baltic Europe; and (3) Bock Beer which is widely known as a higher alcohol lager of Northern Germany. Our Black Rye Bock has a distinctive bitter chocolate palate and black color reminiscent of a black beer. The spiciness from the rye malt shines through in the flavor. The high alcohol balanced with malty sweetness rounds out this cold season bock. Smooth drinking with a punch makes this lager a perfect quaffer for our Arctic winter. 6.2% alcohol by volume.","ibu":80,"name":"Black Rye Bock","state":"Alaska","website":"http://www.glacierbrewhouse.com/"},{"abv":7.8000001907000005,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #21-2009 is an exercise in deconstruction and minimalism. This Belgian Ale has distinct roots in The Mad Elf minus some key components.\n\n \n\nThe cherries? Gone.\n\nThe honey? Gone.\n\nThe chocolate malt? Gone.\n\n\nWait, this sounds familiar. It almost sounds like a naked version of The Mad Elf.\n\n \n\nComing in just under 8% ABV, this unfiltered golden beauty shows off the pronounced yeast flavor that made The Mad Elf famous as well as a touch of alcohol and some mellow malt flavors.","ibu":75,"name":"Scratch #21 2009 - Artisan Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.5999999046,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"O.G.: 12.7 Plato\n\nA.B.V.: 5.6%\n\nIBU: 43\n\nMalt: Pils\n\nYeast: Augustiner\n\nHops: Select, Tradition, Spalt, Glacier","ibu":22,"name":"Scratch #17 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.0999999046,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Creamy and Dark with a Dry Roasted Finish","ibu":54,"name":"Stone Mason Stout","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":4.3000001907,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":16,"name":"Lighthouse Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":0.6891856205992353,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":75,"name":"Trademark English Pale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":13.312824889887775,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":76,"name":"Clover Pale Ale","state":"British Columbia"},{"abv":6.5,"address":"Mendoza","category":"North American Ale","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":21,"name":"Cerveza Negra"},{"abv":5.5,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":25,"name":"Epiphany Ale","state":"California"},{"abv":9.1999998093,"address":"1809 Larkspur Landing Circle","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":23,"name":"Triple Dipsea Belgian","state":"California"},{"abv":6.5999999046,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":93,"name":"Petrus Blond Ale","state":"West-Vlaanderen"},{"abv":11.842447331243974,"address":"2980 Cahill Main","category":"North American Lager","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":61,"name":"Landmark Light","state":"Wisconsin"},{"abv":10.668269770881384,"address":"Ratinger Strasse 28","category":"North American Ale","city":"Düsseldorf","country":"Germany","ibu":73,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":10.217138899415303,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":21,"name":"Amber Lager","state":"Wisconsin"},{"abv":3.5,"address":"Rijksweg 16","city":"Gulpen","coordinates":[50.8109,5.9213000000000005],"country":"Netherlands","ibu":15,"name":"Mestreechs Aajt"},{"abv":14.588093100648459,"address":"114 North Main Street","category":"North American Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":22,"name":"Alt","state":"Michigan"},{"abv":12,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":50,"name":"Downtown After Dark","state":"California"},{"abv":9.488575682458098,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":111,"name":"Pale Ale","state":"California"},{"abv":6.574917292732304,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":68,"name":"Four Brothers Pale Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.6999998093,"address":"925 South Third Street","category":"North American Ale","city":"La Crosse","country":"United States","ibu":25,"name":"Amber Ale","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":10,"address":"529 Grant St. Suite B","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"This beer is made with one grain and 4 Belgian yeasts, a deceptive golden color, and a malty palate lend complexity to this Belgian Trippel Ale.","ibu":80,"name":"Cerberus 10 Dog Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":14.248401925653672,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Belgian Wits originated in Belgium, in the area of Brabant just east of Brussels. This are was a part of the Netherlands in the early 1800's and was the wheat growing region. In this era, the Dutch basically controlled the spice trade, thus, coriander as well as Curacao orange peel made its way into the beer. Spices were used well before the widespread use of hops in beer. At one point there were more than thirty breweries producing a Wit, but overtime the style died off and in 1954 the last of the breweries ceased operations. One of the most famous brands of Belgian Wits is Hoegaarden (pronounced \"Who Garden\") produced by Pierre Celis back in 1966. This revived the style and by the 1980's it was popular again!\n\n\nBelgian Wits are similar to a Hefeweizen with respect to the cloudiness of the beer and some phenolic (clove) and tart flavors. Wits should have white, rocky head when poured and should be almost white in appearance, hence the name. \n\n\nYou will smell oranges and coriander which is different than a Hefeweizen that smells of banana and clove. Our version of a Belgian Wit is called \"Hoof - Hearted Wit,\" and it is brewed to style with dried bitter and sweet orange peel and coriander seeds.","ibu":87,"name":"Belgian Wit","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":14.334900462628864,"address":"Crawshay Street","city":"Cardiff","coordinates":[51.4736,-3.179],"country":"United Kingdom","ibu":48,"name":"Traditional Welsh Ale","state":"Wales"},{"abv":7.25063714820139,"category":"North American Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":75,"name":"Rye I Oughta...!","state":"Wisconsin"},{"abv":5.5,"category":"North American Ale","city":"Bromma","coordinates":[60.4877,9.1885],"country":"Sweden","ibu":102,"name":"D. Carnegie and Company Porter"},{"abv":5.1999998093,"address":"1208 14th Avenue","category":"German Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":116,"name":"Berghoff Oktoberfest Beer","state":"Wisconsin"},{"abv":9.940754933034164,"category":"Irish Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":33,"name":"Pardon Me Porter","state":"Iowa"},{"abv":4.046203443797806,"address":"1705 Mariposa Street","category":"North American Lager","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":9,"name":"Wheat","state":"California"},{"abv":0.5920654882227427,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","ibu":35,"name":"Canadian Ale","state":"Ontario"},{"abv":9.38990886067083,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"The key ingredient to a good summer is a GREAT brew! Born to play, Pete's Wicked Rally Cap Ale is crafted with a special blend of pale and wheat malts, Mt. Hood hops and a smack of natural lemon. Get in the game... Get Wicked!","ibu":4,"name":"Pete's Rally Cap Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":13.415572802505789,"address":"5500 Greenville Avenue #1300","category":"North American Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":38,"name":"Bulldog Brown","state":"Texas"},{"abv":9.111511349280311,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":3,"name":"Alt Bier","state":"California"},{"abv":1.2452451607798498,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":14,"name":"Rodeo Red","state":"Texas"},{"abv":7.049835829841595,"category":"Irish Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":74,"name":"Dark","state":"California"},{"abv":14.044363284388584,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":75,"name":"Firehouse Red","state":"South Dakota"},{"abv":7.3000001907,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Our homage to the beers that have quenched the thirst of Belgian farm workers for centuries. Brewed with barley, wheat and rice and fermented at high temperatures with a special blend of four different yeast strains, Saison is fruity and slightly tart, with a dry finish that makes it that rarest of treats–a beer as refreshing as it is complex.","ibu":77,"name":"Great Divide Saison","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4.9000000954,"category":"German Lager","city":"Jever, Germany","coordinates":[53.5757,7.9003],"country":"Germany","description":"A Norther German (Friesian) Pilsener that is cattegoristic of the style. It is a little more hoppy than Czech pilseners giving it a more herb (bitter?) flavor.","ibu":107,"name":"Jever Pilsener","website":"http://www.jever.de/"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":45,"name":"Blond"},{"abv":5.79485355192327,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":118,"name":"Festive Ale 2006","state":"Nebraska"},{"abv":6.5,"address":"2 Penhall Road","category":"Irish Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","ibu":87,"name":"London Porter","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":8.5,"address":"Rue du Village 32","category":"North American Ale","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","description":"Description : Dark Ale, strong, spicy, lightly hoppy, with evoluting taste. Natural Beer, bottle refermented, unfiltered, not pasteurised and without any additives\n\n\nAlcohol : 8,5% alc./vol.\n\n\nOriginal gravity : 16 °Plato\n\n\nStorage : Store the bottles vertically in a cold place, sheltered from light. The yeast deposit can either be drunk or left according to taste\n\n\nServe at : 8 to 12°C (botlle)","ibu":59,"name":"McChouffe","state":"Luxembourg"},{"abv":5.8000001907000005,"address":"990 Antler Court","category":"North American Ale","city":"River Falls","coordinates":[44.8902,-92.6378],"country":"United States","ibu":65,"name":"The Unforgiven Amber Ale","state":"Wisconsin"},{"abv":7,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":99,"name":"Zoetzuur Flemish Ale","state":"Oost-Vlaanderen"},{"abv":2.6281420758102403,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":50,"name":"Collapsar Oatmeal Stout","state":"Nebraska"},{"abv":11.199322077906118,"address":"138 Nassau Street","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":34,"name":"Helles Lager","state":"New Jersey"},{"abv":0.8216453844634508,"category":"North American Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":100,"name":"Indiana Pale Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.744879057371607,"address":"205 North Broadway","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":34,"name":"Hemp Ale","state":"Illinois"},{"abv":0.7141348190202623,"category":"North American Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":87,"name":"Hopfenkopf","state":"Wisconsin"},{"abv":7.9000000954,"category":"German Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":6,"name":"Blackburn Doppelbock","state":"Illinois"},{"abv":5.6999998093,"address":"Mikolowska 5","city":"Tychy","country":"Poland","ibu":61,"name":"Tyskie Gronie","website":"http://www.tyskie.pl/"},{"abv":5.8000001907000005,"address":"12 Old Charlotte Highway","category":"Irish Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A unique Highland creation, this robust beer is black in color, very malty with hints of chocolate-roasted flavor and a well balanced hop character.\n\n\nIBU: 32\n\nAlcohol content: 5.8% by volume\n\nHops: Chinook, Willamette and Cascade\n\n\nCalories per 12 oz. 191.16\n\nCarbs per 12 oz. 19.42","ibu":10,"name":"Oatmeal Porter","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":11.238841518450124,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":7,"name":"Black Jack Stout","state":"Nebraska"},{"abv":12.284384164040159,"address":"205 North Broadway","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":106,"name":"Payton Pilsner","state":"Illinois"},{"abv":4.5,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"House Ale, our 4.5% session ale, was first brewed in 2006. Our goal was to brew a beer that was a little bit lower in alcohol, but did not lack for body and flavor. We're sure you'll agree, that's just what we achieved with this tasty brew. Brewed with Pale, Caramunich, and Carapils malt for flavor and body, then hopped exclusively with expensive Tettnang hops, a very delicate, delicious hops that perfectly fits this beer with just the right snap of flavor. Available only in Pennsylvania, in our Variety Pack Case.","ibu":53,"name":"House Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":6.642106781383613,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"Deserving of its name, this red/amber colored ale is sure to knock you off your feet. Crystal and caramel malts contribute to a balance of sweetness and smoothness.","ibu":40,"name":"Red Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":4.8000001907000005,"address":"2105 N. Atherton St.","category":"North American Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"This light refreshing American lager has a malty smooth character and low hop bitterness.","ibu":103,"name":"Spruce Creek Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.1999998093,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Pure and crisp this is a beer with nothing to hide. Wisconsin two-row barley malt ensures a mellow and smooth body. We imported Noble Hop varieties from Germany and the Czech Republic to ensure a fine mature aroma with no coarse bitterness. Expect this beer to pour a delicate golden hue that sparkles in the summer sun. This lager is brewed using all natural ingredients with no artificial additives of any kind. Kick back, relax and enjoy the simple unadorned flavor. This is beer at its most basic.","ibu":73,"name":"Totally Naked","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":10.97748832578051,"address":"17700 Boonville Rd","category":"North American Lager","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":35,"name":"High Rollers Wheat Beer","state":"California","website":"http://avbc.com/"},{"abv":4.8000001907000005,"address":"1/1 Vittal Mallya Road","category":"North American Lager","city":"Bangalore","coordinates":[12.9689,77.5946],"country":"India","ibu":5,"name":"Kingfisher Premium"},{"abv":5,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"Blue Point Brewing's Pale Ale has a light golden color but explodes with a rich full-flavor. This refreshing ale is top-fermented and hopped at four different stages of the brewing process. English pale malt lends complexity to this brew. Small amounts of Wheat and Carapils round out the malt bill. Brewed to satisfy the hop lover, this pale ale has an immediate floral-citrus flavor that pervades the overall character of this hoppy, quenching microbrew.","ibu":36,"name":"Fresh Hops Pale Ale","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":7,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"The Sculpin IPA is a testament to our humble beginnings as Home Brew Mart. Founded in 1992, the Mart continues to be a catalyst for the San Diego brewing scene, setting the trend for handcrafted ales. Inspired by our customers, employees and brewers, the Sculpin IPA is bright with aromas of apricot, peach, mango and lemon. Its lighter body also brings out the crispness of the hops. This delicious Ballast Point Ale took a Bronze Medal at the 2007 Great American Beer Festival in the Pro Am category. The Sculpin fish has poisonous spikes on its fins that can give a strong sting. Ironically, the meat from a Sculpin is considered some of the most tasty. Something that has a sting but tastes great, sounds like a Ballast Point India Pale Ale.","ibu":98,"name":"Sculpin India Pale Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6.165457708601197,"address":"3201 Walnut Street Ste A","category":"Irish Ale","city":"Boulder","coordinates":[40.0201,-105.251],"country":"United States","description":"A Baltic Porter made to celebrate Boulder's 150th anniversary. Available for the entirety of 2009.","ibu":46,"name":"Pearl Street Porter","state":"Colorado","website":"http://www.twistedpinebrewing.com/"},{"abv":5,"category":"German Lager","coordinates":[48.9739,14.475],"country":"Czech Republic","description":"Our Czech Premium Lager is beer for light beer lovers. The most gentle heads of the high quality Žatec hop, virgin clear natural water and granules of selected species of Moravian barley make it the beverage of real experts. \n\n\nThe 700-year long tradition in production of ÄŒeské BudÄ›jovice beer and the unique, 90-day period of maturity increase its unique character. You can taste Budweiser Budvar Czech Premium Lager with all your senses. First of all you will delight your eyes with its beautiful colour and rich dense foam, then you will feel the fine aroma of the hops, in your palm you will stroke the dewy glass and, in the end, you will taste the fine to medium strong bitterness. You will remember well, our perfect lager.","ibu":30,"name":"Budweiser Budvar (Czechvar)","state":"Ceske Budejovice","website":"http://www.budvar.cz/"},{"abv":5,"address":"190 5th Street","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Brewed in the style of Northern England, this brown ale is dark and rich, with just a hint of chocolate malt and East Kent Golding hops in the finish.","ibu":102,"name":"Yorkshire Brown","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.1999998093,"address":"8 Fourth Street","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"In Cologne, Germany, many a brewery produces a light-bodied ale with a delicate fruitiness and rounded maltiness, attributable to the unique yeast strain commonly used. Our Kölsch is unfiltered and more generously hopped than its German cousin.","ibu":110,"name":"Double Mountain Kolsch","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":4.5999999046,"category":"North American Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","description":"Estrella means star in Spanish and as its name suggests the brand has become a star to the people of Barcelona. It has evolved with the city reflecting its character - sophisticated and passionate yet at the same time relaxed and welcoming.","ibu":35,"name":"Estrella Damm","website":"http://www.estrelladamm.es/"},{"abv":5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Combines the rich roasted flavor of our traditional stout with a deep, robust mocha. Look for a full-bodied taste with a crescendo of complex flavor notes.","ibu":103,"name":"Saranac Mocha Stout","state":"New York","website":"http://www.saranac.com"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","ibu":6,"name":"Woodchuck Dark and Dry Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":5.3000001907,"address":"16 Tobey Road","category":"Irish Ale","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Thomas Hooker's traditional Irish-Style Red Ale gets its warm, ruby color from an interesting blend of pale, caramel and roasted malts which promote a sweetness that's balanced with crisp, authentic, English-style hops. A very unique and drinkable red ale that's also favored by amber lovers.\n\nHooker Irish Red is drinks well year-round, not just on St. Paddy's day.","ibu":21,"name":"Thomas Hooker Irish Red Ale","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"GUINNESS® Extra Stout is steeped in heritage - a whole costume drama in a bottle. It","ibu":114,"name":"Guinness Extra Stout","website":"http://www.guinness.com"},{"abv":7.1999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":83,"name":"Arrogant Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9.043757955898618,"address":"6901 Konica Drive","category":"North American Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Red Oak Amber is a Munich Urtyp (Old Style) Lager. We begin the brewing process with custom kilned imported Munich Malt. Red Oak is then hopped with Spalt Noble Hops imported from Bavaria, the oldest hop growing region in the world. Before fermentation we add a yeast strain from Weihenstephen, the oldest brewery in the world, founded before 1040 AD. Weeks of aging gives Red Oak the smooth taste it is known for.","ibu":21,"name":"Red Oak Amber Lager","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":12.350482274356322,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Morimoto Black Obi Soba Ale is part of the Rogue Ales Signature Series with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nBlack Obi Soba Ale is dedicated to Phred Kaufmann, Rogues Distributor in Japan for the past decade--an International Rogue who runs Beer Inn Mugishutei in Sapporo (http://www.ezo-beer.com/index-e.html). Black Obi Soba is brewed with roasted buckwheat and malts (2-row pale, Munich, C-15, c-60 and Weyermann - note, this beer contains Gluten) providing a rich nut-laced flavor, while the 3 hop varieties (Horizon. Sterling and Cascade) blend to provide a refreshing zest. Morimoto Black Obi Soba Ale is packaged in a 22oz screened bottle and is available in select markets.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":1,"name":"Morimoto Black Obi Soba Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"569 Main St","category":"North American Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"This light copper, dry finishing American Pale Ale is an excellent addition to the Brew Works fleet of pale ales. A hefty sling load weight of Chinook hops gives this beer its distinctive bite. Chinook and Amarillo hops contribute to its almost citrus aroma. A hopheads delight!","ibu":7,"name":"CH-47 Pale Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":13,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":76,"name":"Scaldis Prestige","state":"Hainaut"},{"abv":5.1999998093,"address":"1514 NW Leary Way","category":"North American Lager","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":54,"name":"Clipper Gold Hefeweizen","state":"Washington"},{"abv":4.633832038145624,"address":"Augsburgerstrae 41","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":63,"name":"König Ludwig Weissbier Dunkel","state":"Bayern"},{"abv":4.5,"address":"West Hewish","category":"Irish Ale","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":92,"name":"Old Slug Porter","state":"Somerset"},{"abv":7,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":51,"name":"Blonde Bock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":10.085537379881085,"address":"65 North San Pedro","category":"German Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":66,"name":"Maibock","state":"California"},{"abv":8.3000001907,"address":"ul. Browarna 14","category":"Irish Ale","city":"Brzesko","coordinates":[49.9622,20.6003],"country":"Poland","ibu":114,"name":"Okocim Porter","website":"http://www.okocim.pl/"},{"abv":6,"address":"Rue de Noupr s/n","city":"Cerfontaine-Silenrieux","coordinates":[50.2248,4.4102],"country":"Belgium","ibu":20,"name":"Sara Buckwheat Ale","state":"Namur"},{"abv":9.089224921534798,"address":"Reiningshausstrae 1-7","city":"Graz","coordinates":[47.0679,15.4417],"country":"Austria","ibu":34,"name":"Gösser"},{"abv":1.454203579991118,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":10,"name":"Suprema"},{"abv":9,"address":"Rue Guinaumont 75","category":"North American Ale","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":71,"name":"Hercule Stout","state":"Hainaut"},{"abv":9.886184153093629,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":99,"name":"Old Man Winter Warmer 2001","state":"Minnesota"},{"abv":14.693053383839652,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":37,"name":"Honey Blonde Lager","state":"New York"},{"abv":7.063049008613216,"address":"412 North Milwaukee Avenue","category":"British Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":94,"name":"Wee Heavy","state":"Illinois"},{"abv":9.34602049806326,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":73,"name":"Holiday Ale","state":"Wisconsin"},{"abv":6.504937253255739,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":47,"name":"Blonde","state":"South Carolina"},{"abv":14.14577806482945,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":107,"name":"Fenway American Pale Ale","state":"Massachusetts"},{"abv":2.8539124352592005,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":31,"name":"Dark Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.391485926528963,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":76,"name":"Two-Hearted Ale","state":"Michigan"},{"abv":0.8376933632938077,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":55,"name":"Old Scratch Barleywine 1996","state":"Wisconsin"},{"abv":13.934798629248883,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":20,"name":"Monkfish Tripel","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.9000000954,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":98,"name":"Urthel Novicius Vertus","state":"West-Vlaanderen"},{"abv":1.0590288285647087,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":12,"name":"Augsburger Dark","state":"Wisconsin"},{"abv":4.5,"address":"1634 18th Street","category":"British Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Our British-style session beer is cask conditioned and dry hopped. Tea colored with a toasted malt flavor, it's an easy drinker with a light mouthfeel and elgeant hop nose.","ibu":58,"name":"St. Charles ESB","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":7.566024910326284,"address":"13011 Newport Avenue #100","category":"North American Ale","city":"Tustin","coordinates":[33.7496,-117.812],"country":"United States","ibu":23,"name":"Old Town IPA","state":"California"},{"abv":12.333654662499612,"address":"4543 North Rancho Road","category":"North American Ale","city":"Las Vegas","coordinates":[36.2426,-115.236],"country":"United States","ibu":97,"name":"Black Lab Stout","state":"Nevada"},{"abv":4.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":12,"name":"Ruth","state":"Oregon"},{"abv":3.2822029532368413,"category":"Other Style","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":95,"name":"Lemon Wheat","state":"Iowa"},{"abv":8.93108850967577,"category":"German Lager","country":"India","ibu":9,"name":"Abhi beer"},{"abv":12.532757605523852,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"\"This is our unique version of an ancient style. A style as old as the ocean trade routes of the last centuries Great Ships. Not as old as the equator they had to cross twice enroute, nor as old as the 10,000 or so miles of Di-Hydrogen Oxide and Sodium upon which they sailed, but older than the Circulithium-4 Lentloid that binds the Lupulin Quartnate onto your taste buds. Weird. Think about it. Now stop. OK, go again, now stop. Think again, and stop. But we digress. Made with 43 different hops and 65 various malts, this redolent ale will likely float your boat, whatever planet you're on. \";\"0","ibu":30,"name":"IPA","state":"California","website":"http://www.lagunitas.com/"},{"abv":14.04381571393629,"address":"105 South Second Street","category":"German Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":93,"name":"Trailside Wheat","state":"Wisconsin"},{"abv":12.947147913442004,"address":"467 North High Street","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":99,"name":"Pilsner","state":"Ohio"},{"abv":8.234276264531257,"address":"7791 Egg Harbor Road","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":43,"name":"Bayside Blonde Ale","state":"Wisconsin"},{"abv":4.406186172641547,"category":"North American Ale","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":15,"name":"Amber Ale","state":"Wisconsin"},{"abv":6.76214226487735,"address":"1429 West Service Drive","category":"German Ale","city":"Winona","coordinates":[44.0486,-91.6774],"country":"United States","ibu":24,"name":"Wingdam Wheat","state":"Minnesota"},{"abv":5,"address":"PO Box 42008","category":"North American Lager","city":"Winnipeg","coordinates":[49.7652,-97.1539],"country":"Canada","ibu":47,"name":"Catfish Cream Ale","state":"Manitoba"},{"abv":3.4360943774076436,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":14,"name":"Buckeye Oatmeal Stout","state":"Massachusetts"},{"abv":5.7884762608980775,"address":"5500 Greenville Avenue #1300","category":"North American Lager","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":99,"name":"Osage Golden Wheat Ale","state":"Texas"},{"abv":4.930260744267177,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":68,"name":"Wheaten Ale","state":"California"},{"abv":14.707004456840613,"address":"6863 Lundy's Lane","category":"Other Style","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":80,"name":"Apple Ale","state":"Ontario"},{"abv":9.548724420256805,"address":"200 Village Green","category":"North American Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":107,"name":"Locomotive Stout","state":"Illinois"},{"abv":1.2366850533053264,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","ibu":104,"name":"Ten Penny American Bitter","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":6.0999999046,"address":"209 Technology Park Lane","category":"Irish Ale","city":"Fuquay Varina","coordinates":[35.6197,-78.8085],"country":"United States","description":"A somewhat classic Irish Red Ale. This ale is feisty and a bit hoppy. There is a malty sweetness and a somewhat dry finish. Traditional East Kent Goldings but with a nice touch of Cascade and dash of roasted barley give this ale a great taste. ALWAYS AVAILABLE...or at least we try.","ibu":105,"name":"HotRod Red","state":"North Carolina","website":"http://www.aviatorbrew.com/"},{"abv":5.4000000954,"address":"3300 Old Seward Highway","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"Dark Knight (Baltic Porter) A Baltic porter is kind of a cross between an English porter and an Imperial Stout. Ours features a rich maltiness with hints of caramel, toffee and chocolate in both the flavor and aroma. Restrained hopping contributes a smooth full finish.","ibu":47,"name":"Dark Knight","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":7.5,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A traditional lager-style beer, with its dark color and medium body, has a defined hop flavor balanced by the smoothness of extra special roasted malt. This healthy dose of over six malt flavors makes this beer perfect for the transition from winter into spring.","ibu":92,"name":"Baltic Porter","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":12,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":106,"name":"Jahva Imperial Coffee Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.5,"address":"196 Alps Road","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Help us celebrate American Independence and American Beer Month in July with the release of the Terrapin All-American Imperial Pilsner.\n\n\nThis beer was brewed using only American malts, American hops, and American yeast. Who says you have to import ingredients from Germany to make a true Pilsner?\n\n\nOf course, this Pilsner is made “Terrapin Style”. Hence the 75 B.U.’s, the 7.5% alcohol and the term “IMPERIAL Pilsner”.","ibu":10,"name":"Terrapin All-American Imperial Pilsner","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers.","ibu":117,"name":"Hamtramck","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6.8000001907000005,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie, Pennsylvania was an important railroad hub in the mid–nineteenth century, the city being the site where three sets of track gauges met. Railbender Ale, Erie Brewing Co.’s flagship ale, named after the laborers who laid the railroad tracks is brewed with pride, strength and purity symbolic of Erie’s historic railroad’s and railroad workers. Railbender, a strong Scottish style ale smooth malt flavor and astonishing drinkability will have you \"Hopping on the train and riding off the rails.\" All Aboard!","ibu":49,"name":"Railbender Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":9,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Imperial Stout is part of our \"High Peaks Series,\" a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial Stout is brewed with 11 malts to balance a deliciouse chocolate and coffee roasted flavor with a spicy herbal character of the generous kettle and dry hops.","ibu":43,"name":"Saranac Imperial Stout","state":"New York","website":"http://www.saranac.com"},{"abv":1.6597493525332951,"address":"141 South Main Street","category":"Other Style","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This style of beer is light to medium in body (mouth-feel) with very little hop character. The brewer says “a good beer to try if you’re a Northern Lite drinker”","ibu":43,"name":"Creamation Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":27,"name":"Michelob Black & Tan","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.0999999046,"address":"Castle Brewery","category":"North American Ale","city":"Cockermouth","coordinates":[54.6649,-3.3634],"country":"United Kingdom","description":"A dark beer with a reddish tinge derived from the use of coloured malts, full of complex flavours, which create an intriguing beer of great character.\n\n\nIn Northern English dialect sneck means door latch and a sneck lifter was a man’s last sixpence which enabled him to lift the latch of a pub door and buy himself a pint, hoping to meet friends there who might treat him to one or two more.","ibu":111,"name":"Sneck Lifter","state":"Cumbria","website":"http://www.jenningsbrewery.co.uk/"},{"abv":5.5999999046,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big addition of caramel and Munich malts give this beer its rich mahogany color along with its juicy palate. Its medium body and wonderful balance of hops from the Pacific Northwest make this a luscious and aromatic brew.","ibu":19,"name":"Inspiration Red","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":7.1999998093,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep golden color. Citrus and piney hop aromas. Assertive malt backbone supporting the overwhelming bitterness. Dry hopped in the fermenter with four types of hops giving an explosive hop aroma. Many refer to this IPA as Nectar of the Gods. Judge for yourself. Now Available in Cans!","ibu":89,"name":"21A IPA","state":"California","website":"http://www.21st-amendment.com/"},{"abv":1.7192869363586205,"address":"Itterplein 19","city":"Opitter","coordinates":[51.1168,5.6464],"country":"Belgium","ibu":39,"name":"Limburgse Witte","state":"Limburg"},{"abv":4.531621422317654,"address":"3945 Second Street South","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":23,"name":"Pride of Pilsen","state":"Minnesota"},{"abv":1.9330127240903783,"address":"61 US Highway 1 South","category":"North American Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":58,"name":"Station House Red Ale","state":"New Jersey"},{"abv":11.176830718490152,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":42,"name":"Cream City Pale Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5.344509210180956,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":95,"name":"Octoberfest (discontinued)","state":"Nebraska"},{"abv":7,"address":"1280 North McDowell Boulevard","category":"Other Style","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":111,"name":"Sirius","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.1999998093,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This is our darkest and most heavy regular offering. It is virtually black in color and features rich roasted malt flavor with a delicate caramel and vanilla finish. It is carbonated and served with the use of nitrogen gas, giving the Black Water a beautiful cascading pour and thick, creamy foam atop your glass. Made with only the freshest American malts and English hops.","ibu":89,"name":"Black H2O Oatmeal Stout","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":6.5999999046,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":45,"name":"Big Boat Oatmeal Stout","state":"Minnesota"},{"abv":9.576309817273044,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":44,"name":"Irish Stout","state":"Pennsylvania"},{"abv":7.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":67,"name":"Rose","state":"Oregon"},{"abv":5.4000000954,"address":"1221 East Pike Street","category":"Irish Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":93,"name":"Perseus Porter","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7.468539376820048,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":33,"name":"Dunkles Lager","state":"Bayern"},{"abv":11.524379679654054,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":63,"name":"Stüvenbräu Maibock","state":"Nebraska"},{"abv":6.3329743135240495,"address":"Brauhausgasse 1","city":"Leoben-Gss","coordinates":[47.3625,15.0947],"country":"Austria","ibu":33,"name":"Dark Beer / Stiftsbräu"},{"abv":14.645101159546705,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":87,"name":"Smoked Hefe","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":6.5,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"The Rocky Mountain Goat is no ordinary goat. Just like Odell Red is no ordinary red. \n\n\nWe took the American-style red to a whole new level by adding a variety of aggressive American hops—giving this ale a distinctive fresh hop aroma and flavor. \n\n\nWe think you'll agree this red has some serious kick.","ibu":103,"name":"Odell Red Ale","state":"Colorado"},{"abv":5.0999999046,"address":"4 Moorhouse Street","category":"North American Ale","city":"Burnley","coordinates":[53.7864,-2.2694],"country":"United Kingdom","ibu":113,"name":"Pendle Witches Brew","state":"Lancashire"},{"abv":7.232394017619741,"address":"120 East Third Street","category":"North American Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":49,"name":"Modern Monks Belgian Blonde","state":"Nebraska"},{"abv":6.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":2,"name":"Wiesen Edel Weisse","website":"http://www.schneider-weisse.de"},{"abv":4.8000001907000005,"address":"Braidleigh Lodge 22 Shore Road","category":"Other Style","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Our smooth yet powerful wheat beer is unusually refreshing on the pallet. Golden in colour, St. Patrick's Gold is brewed with barley and wheat malt. Citrus peel and coriander are added to the Goldings and Saaz hops for a symphony of authentic flavour.","ibu":45,"name":"St. Patrick's Gold","state":"County Down","website":"http://slbc.ie/"},{"abv":5.1999998093,"address":"407 Radam, F200","category":"Belgian and French Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Made in the style of the Belgian wheat beers that are so refreshing, (512) Wit is a hazy ale spiced with coriander and domestic grapefruit peel. 50% US Organic 2-row malted barley and 50% US unmalted wheat and oats make this a light, crisp ale well suited for any occasion.","ibu":43,"name":"(512) Wit","state":"Texas","website":"http://512brewing.com/"},{"abv":5.3000001907,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"This beer bridges east and west with a lane dedicated to riders who aren't afraid to get dirty. Three kinds of organic caramel malts and a 24 pound whirlpool hop bomb keep things interesting while the wheels go round and round. Cheers to narrow knobbies, kazoos, and more cowbell!","ibu":70,"name":"Crosstown Pale Ale","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":5.6999998093,"address":"1214 East Cary St","category":"Belgian and French Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"We brewed this pleasantly aromatic wheat beer with the addition of bitter orange peel, coriander and a Belgian Abbey ale yeast strain. This beer is unfiltered and its flavor is tart but sweet and perfumey.","ibu":44,"name":"Santa's Little Helper Witbier","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"A sweet and sour beer that gets its flavor from mixing old and new ales. An unusual, yet perfect, combination.","ibu":77,"name":"Monk's Cafe","state":"Oost-Vlaanderen"},{"abv":14.797674883353114,"address":"206 W. Pratt St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":90,"name":"Oliver Pagan Porter","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":5.5999999046,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"After sampling a wide array of great beers, the duo hit upon an idea. \"I've got it!\" exclaimed Matt, \"we'll use vast amounts of whole hops, the finest malt, and put a little love in each batch.\" \"Eureka!\" shouted Phin. And thus became a beer so fresh and tasty they had to put their names on it.","ibu":107,"name":"Phin & Matt's Extroidinary Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.425753653037499,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":115,"name":"Irish Red","state":"Wisconsin"},{"abv":6,"address":"777 East Olive Avenue","category":"North American Ale","city":"Fresno","coordinates":[36.7582,-119.802],"country":"United States","ibu":0,"name":"Thunderhead Amber Ale","state":"California","website":"http://www.sequoiabrewing.com/"},{"abv":8,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":73,"name":"Abbey 8","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":5.462168402556225,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":26,"name":"Firestarter Smoked Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":9.775182297036748,"address":"10920 North Port Washington Road","city":"Mequon","coordinates":[43.2167,-87.924],"country":"United States","ibu":98,"name":"Beer","state":"Wisconsin"},{"abv":4.678032854472937,"address":"6300 North Wickham Road #137","category":"North American Ale","city":"Melbourne","coordinates":[28.2126,-80.6734],"country":"United States","ibu":59,"name":"Anniversary Ale","state":"Florida"},{"abv":14.365043065199293,"city":"Denmark","coordinates":[44.3478,-87.8273],"country":"United States","ibu":106,"name":"Continental Pilsner","state":"Wisconsin"},{"abv":6.4334168962225675,"address":"Novozamocka Cesta 2","city":"Hurbanovo","coordinates":[47.8809,18.1972],"country":"Slovakia","ibu":108,"name":"Golden Pheasant"},{"abv":14.711279472480223,"address":"412 North Milwaukee Avenue","category":"North American Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":38,"name":"Wheat Ale","state":"Illinois"},{"abv":13.225303664828449,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":117,"name":"Bruocsella 1900 Grand Cru","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":7,"address":"Liesontie 554","city":"Lammi","country":"Finland","ibu":12,"name":"Kataja Olut IVB"},{"abv":4.8000001907000005,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":77,"name":"Skagit Brown Ale","state":"Washington"},{"abv":5.9000000954,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":53,"name":"Nutty Brewnette","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":4.6999998093,"address":"600 Brea Mall","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":92,"name":"Brewhouse Blonde","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":113,"name":"La Folie Falling Rock","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.534526745199172,"category":"North American Ale","city":"Anchorage","coordinates":[61.2181,-149.9],"country":"United States","ibu":14,"name":"IPA Pale Ale","state":"Alaska"},{"abv":10.599555430506879,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":106,"name":"Golden Gate Copper Ale","state":"California"},{"abv":6.583512598238396,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":103,"name":"Limestone 1897 Original Amber Ale (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":9.454535642338172,"address":"4268 Second Street","category":"Irish Ale","city":"Detroit","coordinates":[42.351,-83.0665],"country":"United States","ibu":44,"name":"Coal Porter","state":"Michigan"},{"abv":14.038159686316462,"address":"5 East Alger Street","category":"North American Ale","city":"Sheridan","coordinates":[44.8007,-106.956],"country":"United States","ibu":77,"name":"Red Line Amber","state":"Wyoming"},{"abv":9.81962860300064,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":14,"name":"Stillwater Stout","state":"Minnesota"},{"abv":5.1999998093,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":87,"name":"Schwarze Weisse","state":"Bayern"},{"abv":4.6999998093,"address":"Moosstrae 46","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":46,"name":"Pils","state":"Bayern"},{"abv":7,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":2,"name":"Bockbier","state":"Bayern"},{"abv":4.3000001907,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":45,"name":"Nut Brown","state":"Washington"},{"abv":5.3000001907,"address":"1253 Johnston Street","category":"North American Lager","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":38,"name":"Old Bridge Dark Lager","state":"British Columbia"},{"abv":9.004774669137179,"address":"Romanshornerstrasse 15","category":"German Ale","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":24,"name":"Weizenbier"},{"abv":7.25,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":8,"name":"Casey Jones Imperial IPA","state":"California"},{"abv":8,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":71,"name":"Strange Ghost","state":"Luxembourg"},{"abv":11.699999809,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Our Eleventh anniversy ale, released in July 2006 only is a Triple IPA made exclusively with Phoenix hops. 11.7% abv make this Triple IPA powerful, but the Phoenix hops keep it smooth. Phoenix is another one of those hops with low cohumulone levels, which means when used in very large quantities (as we do in Eleven) the hops flavor is very smooth, not a hint of harshness for the enormous amounts of hops in the brew. As with all of our Anniversay ales, this one will age fantastically and will never be made again, as each anniversary is an entirely different brew.","ibu":118,"name":"Eleven","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Not quite pale ale. A beer cloaked in secrecy. An ale whose mysterious unusual palate will swirl across your tongue and ask more questions than it answers.\n\n\nA sort of dry, crisp, fruity, refreshing, not-quite pale ale. #9 is really impossible to describe because there's never been anything else quite like it. Our secret ingredient introduces a most unusual aroma which is balanced with residual sweetness.","ibu":48,"name":"#9","state":"Vermont","website":"http://www.magichat.net/"},{"abv":14.85329109861418,"city":"Romakloster","coordinates":[57.4985,18.459],"country":"Sweden","ibu":114,"name":"Dragöl"},{"abv":1.782403106243552,"address":"300 West Fourth Street","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":114,"name":"Wind Chill Spiced Ale (discontinued)","state":"Nebraska"},{"abv":9.321044482549283,"category":"German Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":46,"name":"Whistle Stop Weiss Beer","state":"Illinois"},{"abv":8.870900504319199,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":19,"name":"Native Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":13.675832116581592,"address":"Mhlweg 18","category":"German Ale","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":102,"name":"Weissbier","state":"Bayern"},{"abv":13.530878677593954,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This robust porter has a lot of caramel and chocolate flavor balanced with the flavor and aroma of fuggle hops.","ibu":90,"name":"Friar's Porter","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":4.8000001907000005,"address":"9750 Indiana Parkway","category":"Other Style","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Three Floyds official summer beer highly dry hopped American wheat beer. Quite hoppy. Gumballhead is brewed from red wheat and amarillo hops. It has a medium haze, due to bottle conditioning; once the beer is bottled, extra yeast is added for a secondary fermentation. The hops give off a pronounced citrus note on the nose. Notes of bread - from the yeast - and a good malt undertone. Medium carbonation.","ibu":12,"name":"Gumballhead","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":3.315788821476513,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":75,"name":"Belgian Brown","state":"Nebraska"},{"abv":5.195960771598317,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":89,"name":"Noch Einmal Dunkel","state":"Wisconsin"},{"abv":5.3000001907,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"This special bitter displays the subtle coppery hue of \"Old Gold\". It's depth of lingering hop flavor awakens the palate.","ibu":119,"name":"Beast Bitter","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":3.128388584793375,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":56,"name":"Smooth India Pale Ale","state":"Illinois"},{"abv":3.238833186912833,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","ibu":96,"name":"Imperial Stout","state":"Michigan"},{"abv":5.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"America's first domestic ice beer, Icehouse is traditionally brewed, fermented and, just before aging, its temperature is lowered to below freezing. This process imparts the beer's smoothness and an alcohol content that's slightly higher (5.5% by volume) than other regular premium beer brands. Icehouse was introduced in 1993 and has reinforced its position as the ultimate beer for wind-up and pre-game occasions. Blending humor and high-energy excitement, Icehouse marketing encourages its target consumers to take occasions to the next level with a great-tasting beer.","ibu":46,"name":"Icehouse","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":14.327647560060374,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":99,"name":"Amber Lager","state":"California"},{"abv":4.24607280115906,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":86,"name":"Bull Town Brown","state":"North Carolina"},{"abv":10.828439790106955,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":60,"name":"Dusseldorf-Style Altbier","state":"Texas"},{"abv":12.689439399619424,"address":"506 Columbia Street","category":"British Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":88,"name":"Wassail Winter Ale","state":"Oregon"},{"abv":1.903876311829188,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":24,"name":"Old Glory American Pale","state":"Illinois"},{"abv":5.4049683777872195,"address":"200 North Tenth Street","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":12,"name":"Vanilla Creme Ale","state":"Iowa"},{"abv":5,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"A full, clean and refreshing pale coloured bitter with an abundance of citrus hop character created by the blend of dry and late hopping techniques.\n\nIt also has subtle hints of malt and fruit on aroma and palate which gives the beer a well rounded balance.","ibu":65,"name":"2008 Culture Beer","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":7.8000001907000005,"address":"1680-F East Waterloo Rd.","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"I.P.A. and Stout converge for a really great flavor combination! The assertive, hoppy character of our Hoppin’ To Heaven I.P.A. is perfectly complimented by the intense, deep roasted taste of our B.O.R.I.S. Oatmeal-Imperial Stout.","ibu":58,"name":"Bodacious Black and Tan","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.6999998093,"address":"4519 W. Pine Street","category":"Irish Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Porter is very dark in color. This robust porter features a pronounced flavor of roasted grains reminiscent of dark chocolate. Also, Paul and Brandon add oats to the grist to give a subtle round silkiness to the mouthfeel. We’re confident that you’re really going to love this yummy porter!","ibu":69,"name":"Duck-Rabbit Porter","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":5.6999998093,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"The latest addition to the Boulevard family of year-around beers, Single-Wide I.P.A. is our take on a style that originated in 18th century Great Britain. This American version -- inspired by our Smokestack Series Double-Wide I.P.A. -- boasts a heady combination of six varieties of hops, some of which were employed for dry-hopping.","ibu":26,"name":"Single-Wide I.P.A.","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"city":"Pont Fer","coordinates":[-20.2738,57.4971],"country":"Mauritius","description":"A polished, golden yellow beer with 5% alcohol. Phoenix beer is pasteurised after bottling, according to natural conservation methods. The quality of the underground water also allows us to produce a beer with no chemicals additives. Time of maturation before distribution is meticulously controlled.","ibu":105,"name":"Phoenix","state":"Phoenix","website":"http://www.phoenixbeveragesgroup.com/"},{"abv":0.5,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Birell has all the hallmarks of a great premium beer, rich colour, full malty flavour and the ability to quench a thirst, with one important difference - virtually no alcohol. \n\n\nBrewed under license in Australia by Coopers, Birell is made using only the finest Australian malted barley, hops and yeast, with no artificial additives or preservatives.\n\n\nCoopers Birell may be found in most supermarkets (375ml bottles or cans).","ibu":116,"name":"Birell","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":6.5,"address":"1301 Atlanta Avenue","category":"Other Style","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","description":"Orange Blossom Pilsner or OBP is an easy drinking craft beer. Even beer drinkers that prefer lightest of beers enjoy the crisp and refreshing taste of OBP and love is subtle hony nuance. OBP is the perfect craft beer for the tropical Florida lifestyle.","ibu":12,"name":"Orange Blossom Pilsner","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":10,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"The Belgian Trippel tradition calls for a moderately heavy grist of golden pilsner malt and \"Candy\" sugar that sends the yeast into overdrive. We used local Dixie Crystal.","ibu":90,"name":"Dixie Crystal","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":5,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Scottish-style brown ale with an attractive dark cherry color; a soft, lightly chewy body and a hint of licorice in its malt character. Rich and dark yet not too strong. 1996 Best Show at the Chicago Real Ale Festival.","ibu":42,"name":"Highlander 80/-","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5.4000000954,"address":"811 Edward Street","category":"Irish Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Caramel Porter is a Robust, flavorful porter Reminiscent of a by-gone era. True to brewing tradition, we've used dark caramel malt, as well as Fuggles and East Kent Goldings hops for smooth, yet slightly bitter, roasted flavor, look for hints of the real caramel used in brewing this delicious beer!","ibu":17,"name":"Saranac Caramel Porter","state":"New York","website":"http://www.saranac.com"},{"abv":11.162705464351156,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Another one of our most popular brews. Navigator Gold has a crisp and slighly hoppy finish. It's cold filtered and moderately carbonated.","ibu":91,"name":"Navigator Golden Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":4.4000000954,"address":"1075 East 20th Street","category":"Other Style","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nPale, smooth, and light-bodied, Sierra Nevada Wheat Beer is brewed from premium malted wheat and light barley malts, utilizing our traditional ale yeast. This unfiltered ale is finished with the characteristically spicy Strissel Spalt hops from the Alsace region of France. \n\n\n“The lightest Sierra Nevada beer is this refreshing wheat beer made with barley & wheat for a very light character but loads of flavor!”\n\n\n– BevMo.com\n\n\nSILVER MEDAL WINNER\n\nCalifornia State Fair (American Wheat: 2000)","ibu":29,"name":"Unfiltered Wheat Beer","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.5,"address":"2423 Amber St","category":"North American Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"Hop shortage be damned! We love IPA's, Philadelphia loves IPA's, we're going to brew an IPA. Rekindle your passion for your favorite Phi ladelphia brewery by enjoying our substantial, aromatic India Pale Ale. Newbold is aggressively hopped, with a crimson hue and depth of flavor that will satisfy the most demanding devotee of this revived style. Newbold I.P.A. tells it like it is.","ibu":33,"name":"Newbold IPA","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":5,"address":"4120 Main Street","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","ibu":44,"name":"Summer Gold","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":7.234526257626489,"address":"1111 Mainland Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2755,-123.121],"country":"Canada","ibu":55,"name":"Yippee IPA","state":"British Columbia"},{"abv":8.523107638205673,"address":"1025 Marine Drive","category":"North American Lager","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":79,"name":"Baden Powell Cream Ale","state":"British Columbia"},{"abv":13.74571591864589,"address":"Wilhelm-Schussen-Strae 12","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":66,"name":"Original Nº 1 Naturtrüb","state":"Baden-Wrttemberg"},{"abv":7.6999998093,"address":"656 County Highway 33","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":87,"name":"Hennepin Farmhouse Ale","state":"New York"},{"abv":6.829470273860814,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":40,"name":"Cascade Amber","state":"California"},{"abv":8.146667630925723,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":29,"name":"Cardinal Pale Ale","state":"Nebraska"},{"abv":13.160014362533419,"address":"3945 Second Street South","category":"North American Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":11,"name":"Northern Light","state":"Minnesota"},{"abv":4.921218153797884,"address":"Brauhausplatz 1","category":"German Lager","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":11,"name":"Original Badebier / Original Bathbeer Monastery Fun","state":"Brandenburg"},{"abv":5.1999998093,"address":"Havelock Street","city":"Bedford","coordinates":[52.1321,-0.48150000000000004],"country":"United Kingdom","ibu":99,"name":"Bombardier Premium Ale","state":"Bedford"},{"abv":5.6999998093,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":83,"name":"Black Lab Stout","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":1.2749538855563425,"address":"412 North Milwaukee Avenue","category":"German Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":31,"name":"Scapegoat Bock","state":"Illinois"},{"abv":2.586460754421828,"address":"200 Village Green","category":"North American Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":64,"name":"Harvest Amber Ale","state":"Illinois"},{"abv":12.236543573912643,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":102,"name":"Johnny \\\"Blood\\\" McNally Irish Red","state":"Wisconsin"},{"abv":12.143897334182064,"address":"1313 NW Marshall Street","category":"Irish Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":60,"name":"Porter","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":8.852109211526123,"address":"1516 Sansom Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":14,"name":"Bill Payer Ale / BPA","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":7.8000001907000005,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":46,"name":"Slip Knot Imperial IPA 2006","state":"Oregon"},{"abv":7.752076980938036,"address":"1918 West End Avenue","category":"North American Ale","city":"Nashville","coordinates":[36.152,-86.7989],"country":"United States","ibu":36,"name":"Nut Brown Ale","state":"Tennessee"},{"abv":5.439317484118665,"address":"Konradigasse 2","category":"German Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":10,"name":"Herbstbeer","state":"Baden-Wrttemberg"},{"abv":1.9835961098608745,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":17,"name":"Black and Tan","state":"Wisconsin"},{"abv":5.166517921123712,"address":"123 East Doty Street","category":"German Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":32,"name":"Crop Circle Wheat","state":"Wisconsin"},{"abv":1.1635231826403392,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":11,"name":"Adler Bräu Pumpkin Spice","state":"Wisconsin"},{"abv":2.835543918402599,"category":"German Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":24,"name":"High Noon Wheat Beer","state":"Wisconsin"},{"abv":1.5030564894549148,"category":"British Ale","city":"Delta","coordinates":[49.1487,-122.912],"country":"Canada","ibu":24,"name":"Cream Ale","state":"British Columbia"},{"abv":12.681618067986184,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":13,"name":"I.P.A.","state":"California"},{"abv":0.339813871871506,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":51,"name":"Underground IPA","state":"Wisconsin"},{"abv":5.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Named for a retired California Western Railroad steam engine on the Fort Bragg to Willits run through the Redwoods, Old No. 38 Stout is a smooth, firm-bodied stout with the toasted character and coffee notes of dark malts and roasted barley.","ibu":61,"name":"Old No.38 Stout","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":11.152931341183868,"category":"North American Lager","city":"Lake Oswego","coordinates":[45.4207,-122.671],"country":"United States","ibu":56,"name":"Pilsner","state":"Oregon"},{"abv":5.985720224934955,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":63,"name":"Oompa Loompa Chocolate Stout","state":"Ohio"},{"abv":4.9000000954,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":84,"name":"Blue Heron Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":3.647110611220601,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Brewed with all malted barley and peat malt (smoked malt). This beer is full bodied with chocolate, roasted barley flavors, and a smokey almost BBQ finish.","ibu":71,"name":"Fore Smoked Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":7.6999998093,"address":"2323 Defoor Hills Rd NW","category":"Irish Ale","city":"Atlanta","coordinates":[33.818,-84.4353],"country":"United States","description":"A robust porter brewed with lots of chocolate malt and roasted barley. This gives the beer its nearly black color and coffee and dark chocolate flavors. These flavors are then tempered with the use of flaked oats which provide an almost creamy texture to the beer. The 7.7% abv is deceptive but is not completely unnoticed.","ibu":35,"name":"Red Brick Double Chocolate Oatmeal Porter","state":"Georgia","website":"http://www.atlantabrewing.com/"},{"abv":7.1999998093,"address":"310 Perry Street","category":"German Lager","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"No, there is no maple flavor here, just a great beer with a good name. LaPorte, Indiana is known as the \"Maple City\" because of its trees. This German style Oktoberfest lager beer has a golden copper color and intense malty flavor. We make this beer 4 times a year, but it is hard to find because it goes so fast. Give it a try and you may find it worthy of the gold.... or at least another round","ibu":110,"name":"Maple City Gold","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":9.3999996185,"address":"2519 Main St.","category":"Belgian and French Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"We welcome the release of “Two Front Teeth Holiday Ale” a Belgian style Saison with subtle real cherry flavoring. What a good way to drown out in-laws by enjoying a pint or two of this recent release from Spring House Brewing Company. This is not for the faint palate; this holiday offering is coming in at 9.4% ABV! We hope you stop by for a taste or a Growler fill but unfortunately you have to stop in for this one. Enjoy!","ibu":46,"name":"Two Front Teeth Holiday Ale","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":1.170808393199565,"address":"306 Northern Avenue","category":"Irish Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","ibu":115,"name":"Harpoon Celtic Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":12.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"It is beer #2 in our \"Blackwater Series\" of original Imperial Stouts. The first in the Series was \"Is\", a dark and bitter Russian Imperial Stout. \"Oat\" is the follow up; an Oatmeal Stout with major alcohol volume and tons of body to back it up. The cloying character of the oats in this brew lends itself to a chewy and almost oily mouthfeel. ABV. is off the charts at about 12.5%. Note, that this is an all malt beer fermented with our house ale strain of yeast. Judicious hopping with Columbus and Chinook produce a hoppy aroma that mingles nicely with the chocolate and de-bittered black barley from Belgium.","ibu":30,"name":"Oat Imperial Oatmeal Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":13.326531424589765,"address":"605 S. Talbot St.","category":"North American Ale","city":"St Michaels","coordinates":[38.7814,-76.2222],"country":"United States","ibu":19,"name":"St. Michaels Blonde Ale","state":"Maryland","website":"http://www.easternshorebrewing.com/"},{"abv":12.74270550426248,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Extremely dark in color, with a malty flavor dominated by caramel and chocolate malts and a slight hoppy bitterness. This full-bodied ale has a nice smooth lasting finish.","ibu":40,"name":"Outlet Stout","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":4.3000001907,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Oatmeal Stout is brewed with a delicate balance of the finest grown oats, selected hops, and our traditional ale yeast. Look for a sweet, dark chocolate and roasted taste.","ibu":90,"name":"Saranac Oatmeal Stout","state":"New York","website":"http://www.saranac.com"},{"abv":4,"address":"725 Fourth Street","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"This nitrogenated dry stout is low in alcohol but big in flavor. Its smooth roasted coffee like aromas and flavor are clean and drinkable.","ibu":34,"name":"OVL Stout","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.755548948069007,"address":"1872 North Commerce Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","description":"Delicious","ibu":75,"name":"Riverwest Stein Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5,"category":"North American Lager","country":"Netherlands","ibu":63,"name":"Heineken","website":"http://www.heineken.com/"},{"abv":7.346228307836347,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"The complex charactor of American hops and amber colored caramel malts make it crisp & refreshing.","ibu":82,"name":"Hoppus Maximus","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":6,"address":"Hoogstraat 2A","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7668,4.3081],"country":"Belgium","ibu":2,"name":"Oude Geuze","state":"Vlaams Brabant","website":"http://www.3fonteinen.be/index.htm"},{"abv":5.5,"address":"563 Second Street","category":"Belgian and French Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"The definition of summer in a pint glass. This unique, American-style wheat beer, is brewed with 400 lbs. of fresh pressed watermelon in each batch. Light turbid, straw color, with the taste and essence of fresh watermelon. Finishes dry and clean. Now Available in Cans!","ibu":89,"name":"Watermelon Wheat","state":"California","website":"http://www.21st-amendment.com/"},{"abv":5.1999998093,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Shock Top is an unfiltered Belgian-style wheat ale (also known as a “White” or “Wit” beer due to its appearance) that is naturally cloudy with a billowy white foam head, light golden hue and slight taste of orange citrus peel and coriander.","ibu":63,"name":"Shock Top","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":9,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Esquire Magazine calls our 90 Minute .IPA., \"perhaps the best I.P.A. in America.\" An Imperial I.P.A. brewed to be savored from a snifter. A big beer with a great malt backbone that stands up to the extreme hopping rate. This beer is an excellent candidate for use with Randall The Enamel Animal!","ibu":2,"name":"90 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.5627664387441813,"category":"North American Ale","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":44,"name":"Berkshire Springs Stock Ale","state":"Minnesota"},{"abv":13.889557166575996,"category":"North American Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":64,"name":"Bacchanal Blonde","state":"Wisconsin"},{"abv":5.9000000954,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":26,"name":"Very Special Pale Golden Ale","state":"Oregon"},{"abv":5.3000001907,"address":"Schillerstrae 14","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":106,"name":"Kristall Weizen","state":"Bayern"},{"abv":1.3408597428980762,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":110,"name":"Demon Fuel","state":"New York"},{"abv":3.1635681198699594,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":78,"name":"Hacker-Pschorr Weisse Bock","website":"http://www.paulaner.com/"},{"abv":6.513393774717462,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":69,"name":"Nut Brown","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":11.884078959488027,"address":"Little Telpits Farm, Woodcock Lane","category":"North American Ale","city":"Maidstone","coordinates":[51.2047,0.6813],"country":"United Kingdom","ibu":1,"name":"East India IPA","state":"Kent"},{"abv":5.4000000954,"address":"540 Clover Lane","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A conundrum in the world of beer. This ale does not fit any conventional beer style. Orange in color only, this beer has hop characteristics of oranges and tangerines.","ibu":49,"name":"Dry Hop Orange","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The recipe for Rogue Chocolate Stout was created several years ago for export to Japan. The exported twelve ounce Chocolate Bear Beer bottle label is in Kanji and features a teddy bear with a pink heart on his belly. Chocolate Stout was released for Valentines Day in 2001 in a twenty-two ounce bottle for the US market. The label features a Roguester (Sebbie Buhler) on the label. The bottled of Chocolate Stout is available on a very limited basis in the US, so get it while you can! \n\n\nHedonistic! Ebony in color with a rich creamy head. The mellow flavor of oats, chocolate malts, and real chocolate are balanced perfectly with the right amount of hops for a bittersweet finish. Chocolate Stout is brewed with 10 ingredients: Northwest Harrington and Klages, Crystal 135-165 and Beeston Chocolate Malts, Cascade Hops, Rolled Oats and Roasted Barley, Natural Chocolate Flavor, Free Range Coastal Waters and PacMan Yeast. Chocolate Stout is available year-round only in the classic 22-ounce bottle and on draft.","ibu":1,"name":"Chocolate Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"The Winter seasonal from Adnams, Fisherman is described as an old ale. If your local pub has the good sense to serve cask beer, look for Fisherman on draught from January through March.\n\n\nClean and refreshing yet dark and mysterious, Fisherman is a deep coppery red, conjuring roasted nuts and dark chocolate, with a lingering taste of liquorice and dried fruits.","ibu":15,"name":"Adnams Fisherman","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":6,"address":"905 Line Street","category":"British Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Exceptionally smooth and thoroughly robust, Weyerbacher Scotch Ale has a deep delicious flavor that will warm you down to your wee little bones. Malty and roasty on the palate, and with distinctive caramel notes, this beer will satisfy the desires of any malty beer aficionado. \n\n\nWeyerbacher Scotch Ale is our interpretation of a beer style originating from Scotland, where the chilly damp weather calls for a hearty beer. Lacking the preservative powers of hops, scotch ales were brewed with high alcohol content to prevent spoilage. And at 8.7% ABV (alcohol by volume) Weyerbacher Scotch Ale definitely contains a warming belt.\n\n\nWe brew Weyerbacher Scotch Ale mostly in the cooler months of the year. Check out the Upcoming Events and Beers page for the next time it will be at a beer store near you.","ibu":115,"name":"Scotch Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8.1000003815,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A mighty lager-style brew, dark in color. Our Doppelbock brings a big malty sweetness together with the classic lager smoothness, topped off with a slightly evident alcohol flavor. A toasty brew to battle even the coldest winter nights.\n\n\nAvailable at the Brewery and in bottles & cases from March - May.","ibu":91,"name":"Doppel Bock","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.5,"city":"Romakloster","coordinates":[57.4985,18.459],"country":"Sweden","ibu":14,"name":"Romakloster"},{"abv":11.587486464006947,"address":"214 Spanish Town","category":"North American Lager","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":93,"name":"Red Stripe Lager Beer"},{"abv":3.9436295304398428,"address":"945 West Second Street","category":"Irish Ale","city":"Chico","coordinates":[39.7245,-121.848],"country":"United States","ibu":118,"name":"Organic Porter","state":"California"},{"abv":6.050400746082538,"address":"Salzachtal Bundesstrae Nord 37","category":"German Ale","city":"Hallein","coordinates":[47.6942,13.0784],"country":"Austria","ibu":53,"name":"Edelweiss Hefetrüb"},{"abv":14.24108298086454,"city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":31,"name":"Rauchbier","state":"Colorado"},{"abv":6.901322850359639,"category":"North American Lager","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":119,"name":"Prohibition Smokehouse Porter","state":"Illinois"},{"abv":14.012929983379774,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":114,"name":"Strong Brown Ale","state":"Illinois"},{"abv":10.874262936086005,"address":"1208 14th Avenue","category":"German Ale","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":95,"name":"Berghoff Hefeweizen","state":"Wisconsin"},{"abv":4.5999999046,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":67,"name":"Original","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":10.100000381,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie Brewing presents the Beer formally known as Red Ryder BIG BEER - A beer dubiously awarded two cease and desist letters for its name. Ol’ Red Cease and Desist brings more to the table than just a big malty flavor and climaxing warming sensation…a legal record! This beer so recognized and loved by many deserves a unique name to match its unique history. What better name than Ol’ Red Cease and Desist – a name inspired by the long arm of the law!","ibu":55,"name":"Ol' Red Cease and Desist","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.3000001907,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Subtle Seasonal spices, in this dark, rich wheat beer are smooth and easy for the discerning palate.","ibu":16,"name":"Winter Wheat","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6,"address":"Walplein 26","category":"Belgian and French Ale","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","description":"Brugse Zot is a goldenblond beer with a rich froth and a fruity flavouring. The beer is brewed with four different kinds of malt and two aromatic varieties of hop which give the beer its unique taste.\n\nWith an alcochol degrees proof of 6 % Vol it is a well balanced, easy drinking beer with character.\n\nBrugse Zot is a natural beer born out of a selection of only the best ingredients. Thanks to the refermentation in the bottle, the beer has a longer natural life.","ibu":77,"name":"Brugse Zot","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":85,"name":"Red Dog","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":7,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"2x4 India Pale Ale (7% ABV, 65 IBUs) sports Columbus, Nugget and Amarillo hops for a spicy, citrusy blend in both flavor and aroma. Backed by golden pale malts and a kick from flaked rye, the hops are pleasantly robust with just the right touch of bitterness at the end.","ibu":94,"name":"2x4 India Pale Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":8.3000001907,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"“Two inflammatory words... one wild drink. Nectar imprisoned in a bottle. Let it out. It is cruel to keep a wild animal locked up. Uncap it. Release it....stand back!! Wallow in its golden glow in a glass beneath a white foaming head. Remember, enjoying a RAGING BITCH, unleashed, untamed, unbridled- and in heat- is pure GONZO!! It has taken 20 years to get from there to here. Enjoy!”","ibu":21,"name":"Raging Bitch Belgian IPA","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":14.94308019960043,"address":"87 Doe Run Rd","category":"Other Style","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"A crisp, clean, easy drinking, refreshing American ale with a light body.","ibu":113,"name":"JoBoy's Cream Ale","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":9,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This little bottle has a grandiloquent story to tell.\n\n\n2,204 malted Maris Otter grains gave all they had to offer the world to provide the robustly delicate toffee malt canvas for the ensuing epic.\n\n\n6 Hop Cones willingly sacrificed themselves in fiery cauldron that is our brew kettle to ensure your mouth is left feeling punished and puckering for more.\n\n\n9,900,000,000 yeast cells frantically fermented their little hearts out as the sugars were magically turned into alcohol in the dark depths of our fermentation tanks.\n\n\nThis explicit ale has more hops and bitterness that any other beer brewed in the UK. This is an extreme beer rollercoaster for freaks, gypsies and international chess superstars.","ibu":7,"name":"Hardcore IPA","website":"http://brewdog.com/"},{"abv":6.1999998093,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Why put everything in a category? Live outside the box. The ‘flagship’ of TailGate Beer, Amber Wave, is a completely unique and individual beer that raises the standards and breaks all the molds.\n\n\nAmber Wave was inspired by America's amber waves of grain and is as unique as apple pie. The intellectuals behind TailGate Beer created this dark, rose colored ale that drinks like honey and lingers of light caramel, with notes of chocolate and sweet subtle hops. Surprise yourself, and others, with your sophisticated palate and acute ability to find the best beer brewed for drinking, not sampling.","ibu":36,"name":"Tailgate Amber Wave","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":9,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"In Williamsburg, Brooklyn, we forge barley malt and hops from Germany, aromatic raw sugar from Mauritius and yeast from Belgium into our latest beer, Brooklyn Local 1.\n\n\nBehind the full golden color you'll find an alluring aroma, a dynamic complex of flavors, Belgian flair, Brooklyn fortitude and a dusting of our special yeast. To create this beer, we use the old technique of 100% bottle re-fermentation, a practice now rare even in Europe. It gives this beer a palate of unusual depth. Enjoy it locally or globally, as an aperitif or with your favorite dishes. It is particularly nice with spicy seafood and with fine cheeses.","ibu":74,"name":"Local 1","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":47,"name":"Anniversary IPA Ahtanum","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":12.699999809,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"This winter warmer will knock the chill away until summer. It used as much malt as our brew house can handle and armloads of fresh hops and lovingly laid in our fermentor for four months. Massively malty and balanced with burly bitterness it is truly the king of beers, approaching wine in strength. A definitive one to have when you’re only having one. Adoringly served in brandy snifters to preserve precious properties.","ibu":72,"name":"Nokdechiloff","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":6.5,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":100,"name":"Indica India Pale Ale","state":"California","website":"http://www.lostcoast.com/"},{"abv":15.039999962,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":31,"name":"Olde School Barleywine","state":"Delaware","website":"http://www.dogfish.com"},{"abv":2.698042078960319,"address":"871 Beatty Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":7,"name":"Tropical Lager","state":"British Columbia"},{"abv":4.5999999046,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":80,"name":"Rauchbier Lager","state":"Bayern"},{"abv":0.05876140781472472,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":49,"name":"Pale Ale","state":"Washington"},{"abv":8,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":40,"name":"Equinox Dark Belgian Winter","state":"Vlaams Brabant"},{"abv":2.788480344860873,"address":"1525 St. Charles Avenue","category":"Irish Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":32,"name":"Ponchartrain Porter","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":6.07329228144645,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":66,"name":"Mile Rock Amber Ale","state":"Wisconsin"},{"abv":14.463713604955405,"address":"6863 Lundy's Lane","category":"North American Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":56,"name":"Gritstone Premium Ale","state":"Ontario"},{"abv":4.9000000954,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"When one sees a beer with a darker complexion these days, more often than not it","ibu":54,"name":"Samuel Adams Black Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A cask-conditioned American Pale Ale. This is a bright dry ale brewed only with American Nugget hops.","ibu":20,"name":"Arthur's Nugget Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":11.428293344294396,"city":"San Rafael","coordinates":[37.9735,-122.531],"country":"United States","ibu":25,"name":"Ace Pear Cider","state":"California"},{"abv":4.808871161433961,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":28,"name":"Double Black Stout","state":"Washington","website":"http://www.redhook.com/"},{"abv":5.5999999046,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"A mix of Northern and Southern English Brown Ales, blending 6 malts into an All-American beer.","ibu":31,"name":"Brown Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":13.29110862159575,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":6,"name":"Rainbow Trout Stout","state":"Texas"},{"abv":6.6999998093,"address":"901 SW Simpson Avenue","category":"Other Style","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Did you know that Jubelale was the first beer ever bottled by Deschutes Brewery? Highly anticipated every fall, Jubelale is in a category of its own with a flavor and following that is impossible to match. Dark crystal malt creates that “luscious” holiday note while the roasty flavor and bountiful hops excite your tastebuds, reminding you why Jubelale is the perfect holiday beer","ibu":18,"name":"Jubelale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":13.52608296348622,"address":"1398 Haight Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":11,"name":"Prescription Pale","state":"California","website":"http://www.magnoliapub.com/"},{"abv":2.0438583030890833,"address":"906 Washington Street","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":80,"name":"Hammerhead Barleywine 1990","state":"California"},{"abv":13.01982957287435,"category":"Irish Ale","city":"Santa Cruz","coordinates":[36.9741,-122.031],"country":"United States","ibu":69,"name":"Pacific Porter","state":"California"},{"abv":3.090816149366389,"address":"514 South Eleventh Street","category":"German Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":30,"name":"Heartland Hefeweizen","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":4.5,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"A full bodied stout made with all malted barley and blueberry. Flavors of chocolate, roast malt and light blueberry make up the palate with lots of fruity blueberry aroma.","ibu":70,"name":"Tres Blueberry Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":6.0999999046,"address":"River Street, P.O. Box 276","category":"British Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Back Yard\" is a golden India Pale Ale. Historically, ale shipped to India in the 19th Century was brewed to higher gravities so that it could mature during the long sea voyage. English brewers also hopped these ales heavily to protect them from spoiling. The term \"India pale Ale\" or \"I.P.A.\" is still used by brewers to denote a super-premium, hoppy pale ale style. Backyard IPA is no exception. English pale barley malt is predominant in this beer with just a small amount of crystal malt. It is well bittered with Cluster and Cascade hops and finished with a mix of local hop and larger amounts of Fuggle hop.","ibu":82,"name":"Backyard India Pale Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"To mark the 250 year anniversary of the signing of the lease on St. Jame's Gate Brewery by Arthur Guinness, we introduce a special commemorative stout. This premium recipe provides a refreshing taste, which underlies the complex flavor of stout.","ibu":98,"name":"Guinness 250th Anniversary Stout","website":"http://www.guinness.com"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"A notorious drink that's as dark as its' namesakes history!! It is named after the infamous LaPorte, Indiana serial killer herself, Belle Gunness of 1908. This Irish-style dry stout is amazingly smooth to drink. You will taste chocolate, coffee and roasty flavors in every sip. Don't be afraid of the dark. A true dark beer lover would die to try it. It definitely would not kill you to dig some up.","ibu":68,"name":"Belle Gunness Stout","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"If you are searching for a light, refreshing pale ale, your search is over! Superstition Pale Ale is named after the Superstition Mountains which are just east of Phoenix. This American pale ale is brewed using mountain pure water, select domestic grain, yeast and hops from the Pacific Northwest. Superstition is copper in color with a clean, malty fullness and finishes with pronounced hop bitterness. Perfect for enjoying on a warm Arizona day.","ibu":52,"name":"Superstition Pale Ale","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5.1999998093,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"This style of beer is based on the English Mild, which was a combination of a stout and a lighter beer favored by coal miners in Scotland, Ireland and North England.\n\nWe've brought together the grains used to make both a Stout and a Pale Ale and balanced them in our Nut Brown Ale to produce a beer with a chocolate and molasses flavor and hints of caramel and coffee in the background.","ibu":14,"name":"Climax Nut Brown Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":5.1999998093,"address":"2035 Benson Avenue","category":"Belgian and French Ale","city":"St. Paul","coordinates":[44.9084,-93.1538],"country":"United States","ibu":82,"name":"Flat Earth Belgian-style Pale Ale","state":"Minnesota","website":"http://flatearthbrewing.com/"},{"abv":6.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A rich, malty, and very bitter ale. Cascade hops provide a long, fruity, and spicy after-taste. Recommended serving temperature 10°C/50°F. Ideal with barbequed or smoked meat dishes.","ibu":18,"name":"Nøgne Ø India Pale Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":4.3000001907,"address":"2439 Amber Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Boasting superior taste and champion flavor, the Brawler is crafted in the style of English session ales. This malt-forward, ruby colored ale is great for when you want to go a few rounds.","ibu":67,"name":"Yards Brawler","state":"Pennsylvania"},{"abv":6.5,"address":"40 Van Dyke St","category":"North American Ale","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Sixpoint Bengali Tiger is reminiscent of the century-old English IPA. In my perspective, many current IPAs suffer from lacking substance; unbalanced by a hoppy assertiveness that is not substantiated by a strong foundation of rich malt flavors. Our interpretation uses the highest-quality, floor-malted base malt, which lends a full-bodied and rich caramel flavor. We mash at high temperatures and add generous amounts of specialty malts to further emphasize a strong foundation of malt as leverage for our generous additions of hops… Which are indeed generous. We use a total of three different hop strains, and add a total of six different additions throughout the process. The Bengali Tiger has a hoppy snap upfront, but strides at a steady pace, and finishes balanced. The signature characteristic of the Tiger is the aroma… we use massive quantities of whole East Kent Goldings hops to dry hop in our conditioning tanks. The result? The essential oils from the hops are an enticing treat before every sip. Notice the lacing of stripes around the pint glass as you finish your glass; it’s the mark of the Tiger.","ibu":115,"name":"Bengali Tiger","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.5,"address":"237 Joseph Campau Street","category":"Other Style","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Made with unmalted wheat, coriander and orange peel to help you live smart and enjoy everyday!","ibu":37,"name":"Dirty Blond","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Sparkling golden ale with a complexity of malt and hop flavor brewed in a similar style to a turn of the century Canadian ale.","ibu":31,"name":"Syracuse Pale Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5,"category":"North American Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":92,"name":"Achel Bruin 5°","website":"http://www.achelsekluis.org/"},{"abv":10.095460721831186,"address":"23 South Main Street","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":89,"name":"Rapture","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":2.6477879756165548,"address":"102 North Market Street","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Clean, crisp, easy drinking Colonge, Germany style ale. Kolsch's smoothness comes from special Kolsch yeast, German Hallertau hops, a slow fermentation and lager like conditioning.","ibu":103,"name":"Bube's Kolsch","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.0999999046,"address":"Hindenburgstrasse 9","category":"Belgian and French Ale","city":"Bayreuth","coordinates":[49.9477,11.5659],"country":"Germany","ibu":1,"name":"Maisel's Weisse Kristall","website":"http://www.maisel.com/"},{"abv":5,"address":"5080 Rue St-Ambroise","category":"British Ale","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":5,"name":"St-Ambroise Oatmeal Stout","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":7.4000000954,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Let us give praise to our maker and glory to his bounty by learning about beer.\" ~ Friar Tuck \n\nThe debut of Monk Madness began with the Johns Locker Stock draft program before being released to the Rogue Nation in the autumn of 2006 in 22-ounce bottles and kegs. Five layers of malt create a complex, slightly sweet flavor balanced by five different hop varieties. A versatile and robust ale, we recommend pairing this with spicy foods, stong cheeses, and/or with dessert. \n\n\nMonk Madness Ale is brewed with 12 ingredients: 2-row Pale, Belgian Munich, Belgian Special B, Weyermann Melonodon, and Amber Malts; Belgian Nobles, Chinook, Amarillo, Centennial, and Summit Hops; along with free-range coastal water and Rogues proproetary PacMan Yeast. Available in 22 ounce bottles and kegs. Note, Monk Madness was not brewed in the winter of 2007-2008 due to shortages of the speciality malts.","ibu":56,"name":"Monk Madness Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"The satisfying elements of both stout and coffee come together in this full-bodied treat. A marriage of Sumatra's best with rich chocolate and roasted malt provides for a truly enlightening beer.","ibu":73,"name":"Java Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.25,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams® Pale Ale is a delicious, lighter bodied beer with a delightfully fresh taste. Its unique blend of two row malts add a rich harmony of sweet flavors that are complimented by the traditional earthy hop character imparted by authentic British hops. The fermentation character of the ale yeast adds a rich bouquet of fruit and ester notes that add another layer of complexity to this popular style","ibu":46,"name":"Samuel Adams Pale Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":12.125124863032092,"address":"Route de la Marana","city":"Furiani","coordinates":[42.6483,9.4529],"country":"France","ibu":107,"name":"Ambrée / Chestnut Beer"},{"abv":11.814569227909107,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":116,"name":"Mongoose IPA","state":"Washington"},{"abv":5.3000001907,"address":"1221 East Pike Street","category":"German Lager","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":56,"name":"Ambrosia Maibock","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":10.708029837857062,"country":"Netherlands","ibu":74,"name":"Lager Beer","website":"http://www.heineken.com/"},{"abv":4.8000001907000005,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Our first venture into organically-produced beer, Mothership Wit Organic Wheat Beer elevates the zesty Wit or White beers of Belgium. Our far-flung Beer Rangers affectionately refer to our Fort Collins brewery as the Mothership, a name that conjures images of earth shot from space and the interconnectivity of it all. Mothership Wit is brewed with wheat and barley malt, as well as coriander and orange peel spicing resulting in a balance of citrus and sour flavors held in suspension by a bright burst of carbonation.","ibu":94,"name":"Mothership Wit","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":3.018284529449742,"address":"3435 Cesar Chavez #227","city":"San Francisco","coordinates":[37.7481,-122.419],"country":"United States","ibu":116,"name":"Coney Island Lager","state":"California"},{"abv":1.7242666904149384,"address":"7791 Egg Harbor Road","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":118,"name":"Lighthouse Light","state":"Wisconsin"},{"abv":10.889090048557637,"category":"North American Lager","city":"Oconomowoc","coordinates":[43.1117,-88.4993],"country":"United States","ibu":15,"name":"Amber Rye Lager","state":"Wisconsin"},{"abv":3.1974647788890764,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":48,"name":"Adler Bräu Marquette Pilsner","state":"Wisconsin"},{"abv":3.666981107162438,"city":"Fairfax","coordinates":[37.9871,-122.589],"country":"United States","ibu":52,"name":"Kölsch","state":"California"},{"abv":6.47696285846672,"address":"119 South Front Street","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":57,"name":"Canadian Blonde Ale","state":"Michigan"},{"abv":8.354765735711865,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":17,"name":"Jasper Brown Ale","state":"Michigan"},{"abv":14.212007314617015,"address":"8201 NE Birmingham Road","category":"North American Lager","city":"Kansas City","coordinates":[39.1551,-94.482],"country":"United States","ibu":112,"name":"Hofbrauhaus Brewery & Biergarten Vienna Velvet","state":"Missouri"},{"abv":0.7718108384402056,"address":"105 South Second Street","category":"North American Lager","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":11,"name":"Lager","state":"Wisconsin"},{"abv":10.215462402524095,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":3,"name":"Colonel Kolsch","state":"Wisconsin"},{"abv":7.8000001907000005,"address":"Tallinna mnt.2","category":"North American Ale","city":"Saku","coordinates":[59.3014,24.6679],"country":"Estonia","ibu":0,"name":"Porter"},{"abv":3.573862948173032,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":26,"name":"Schlafly Tripel","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":8,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":114,"name":"La Trappe Tripel","website":"http://www.latrappe.nl/"},{"abv":0.7842137752524136,"address":"An der Knigsbach 8","city":"Koblenz","coordinates":[50.3216,7.5862],"country":"Germany","ibu":101,"name":"Pils","state":"Rheinland-Pfalz"},{"abv":12.292274568185759,"address":"Lancaster Road","category":"British Ale","city":"Gateshead","coordinates":[54.9548,-1.6576],"country":"United Kingdom","ibu":114,"name":"Angel Ale","state":"Tyne and Wear"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":77,"name":"Old Stock Ale 2001","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":3.2308301943899043,"address":"1860 Schell Road","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":75,"name":"Caramel Bock","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":8,"address":"Nieuwbaan 92","city":"Merchtem-Peizegem","coordinates":[50.985,4.2226],"country":"Belgium","ibu":119,"name":"Satan Gold","state":"Vlaams Brabant"},{"abv":8.5,"city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":86,"name":"Golden Triangle Triple","state":"California"},{"abv":4.4600000381000005,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":27,"name":"Lucky U Denver Special Bitter","state":"Colorado"},{"abv":9.8000001907,"city":"Redmond","coordinates":[47.6701,-122.118],"country":"United States","ibu":70,"name":"Wild Banshee Barleywine","state":"Washington"},{"abv":10.600000381000001,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"The style was first brewed in England for the Russian Czar and it is the king of stouts. Plenty of big malt flavors- chocolate and roasted- and high alcohol with lower carbonation and mild hops. \n\nWe brewed this beer with double the malts and four times the hops of regular stouts!\n\n\nOtter Creek Russian Imperial Stout clocks in around 10% ABV- a beer to be savored responsibly. True to style, this beer will last for years so you may want to stock up on a few bottles for your cellar while it's available.\n\n\nRussian Imperial Stouts pair well with creamy cheeses such as camembert (we recommend Vermont-made!), decadent chocolate desserts, or a hearty meal.","ibu":112,"name":"Otter Creek Russian Imperial Stout","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":5.5,"address":"404 South Figueroa Street #418","category":"North American Ale","city":"Los Angeles","coordinates":[34.0532,-118.256],"country":"United States","description":"Light amber color and a mild malty background. Well-hopped featuring Cascade hops with a distinct floral finish.","ibu":80,"name":"Bonaventure Pale Ale","state":"California","website":"http://www.bonaventurebrewing.com/"},{"abv":6.0999999046,"address":"105 East State Street","category":"British Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A dark rich full-bodied stout with a dense creamy head. Full of character and very satisfying.","ibu":61,"name":"State Street Oatmeal Stout","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":13.291843264168484,"address":"17605 Monterey Road","category":"British Ale","city":"Morgan Hill","coordinates":[37.1553,-121.676],"country":"United States","ibu":107,"name":"El Toro Negro Oatmeal Stout","state":"California","website":"http://www.eltorobrewing.com/"},{"abv":12,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is our Imperial Stout that we age in conditioning tanks with oak staves. This adds a classic character of old world aging with out the Bourbon tones. This black ale is about 12% alc. and very rich in roasted and chocolate malt tones. Velvety smooth and able tobe aged for years. For now this will be a Seasonal Beer Offering. \n\n\nAll Beers to be bottle conditioned and Refermented.","ibu":81,"name":"Big Black Voodoo Daddy","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":10,"address":"638 W. 4th Street","category":"North American Ale","city":"Winston-Salem","coordinates":[36.0973,-80.2509],"country":"United States","ibu":19,"name":"Sexual Chocolate","state":"North Carolina","website":"http://www.foothillsbrewing.com/"},{"abv":11.901857536772303,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":94,"name":"Lakefront IPA","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":7.3000001907,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"We started with the same grain bill as Scratch #12 (IPA) and substituted 25% rye for the base malt giving Scratch #18 a creamy mouth feel and a full-bodied taste.\n\n\nMount Hood and Chinook hops are combined here for flavoring and aroma, and Warrior hops are used for overall bitterness.\n\n\nThe rye plays off the Mount Hood hops, with both ingredients releasing an herbal, spicy flavor. Cheers.","ibu":62,"name":"Scratch #18 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.6999998093,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"Our pilsner is a traditional Northern German Style Pilsner. It has a fantastic malty aroma with a slight spice from the hops. The head is brilliant white and floats on the clean pale lager. The sparkling mouthfeel gives way to a soft malt sweetness that is followed by a long, dry, crisp finish. The balanced clean finish taunts the mouth to take another drink. Lagered for a minimum of 8-12 weeks to ensure smoothness and drinkability.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":83,"name":"Baron Pilsner","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.3000001907,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Brown is brewed to accentuate the sweeter, rounder notes derived from six different malts, including a de-husked chocolate malt that adds a hint of chocolate. The blend of these malts produces a beer that is complex and delicious without being heavy. This drinkable beer is perfect as a session beer or paired with foods.\n\n\nThis is the first year-round Harpoon beer the brewery has released in almost a decade. While the craft beer industry has seen a growing trend in \"extreme\" beers, the brewers of Harpoon wanted to create something they could sit down and enjoy over an extended period of time - a session beer. At 4.3% alcohol by volume, the Harpoon Brown Ale has the lowest alcohol content of all Harpoon beers.\n\n\nHarpoon Brown Ale will be available in bottles and on draft beginning in March 2007. An evening of celebrations to toast the beer's release will be held at locations throughout New England on Thursday, March 8th, including tastings at Harpoon's breweries in Boston, MA and Windsor, VT","ibu":103,"name":"Harpoon Brown Session Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.4000000954,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Beach Bum Blonde Ale is a traditional American \n\nblonde ale with a slightly spicy hop note and balanced malty flavor.","ibu":22,"name":"Beach Bum Blonde Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.893554365709832,"address":"980 NE Fourth Street","category":"North American Ale","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":63,"name":"Chehalem Mountain IPA","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":9,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Produced in the tradition of 18th Century English brewers who supplied the court of Russia's Catherine the Great, Old Rasputin seems to develop a cult following wherever it goes. It's a rich, intense brew with big complex flavors and a warming finish.","ibu":94,"name":"Old Rasputin Russian Imperial Stout","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":10,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":18,"name":"Fred","state":"Oregon"},{"abv":0.04658687355603708,"address":"1441 Cartwright Street","category":"German Ale","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":50,"name":"Hefeweizen","state":"British Columbia"},{"abv":13.322883276721745,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":87,"name":"Organic Belgian Ale","state":"California"},{"abv":7.3000001907,"address":"600 Brea Mall","category":"Irish Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":117,"name":"Jeremiah Red","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":8.1000003815,"address":"800 East Lincoln Avenue","category":"North American Lager","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":29,"name":"Double Pilsner","state":"Colorado"},{"abv":5.5,"address":"Rijksweg 33","category":"North American Ale","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":27,"name":"Petrus Speciale","state":"West-Vlaanderen"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":109,"name":"Bigfoot 2002","state":"California","website":"http://www.sierranevada.com/"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":36,"name":"Old Foghorn 2001","state":"California"},{"abv":0.7043316757847728,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":68,"name":"Espresso Porter","state":"Nebraska"},{"abv":3.7869155374643637,"address":"4607 Wedgewood Boulevard","category":"British Ale","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":108,"name":"Big Ale","state":"Maryland"},{"abv":14.994424144784182,"address":"624 Ludington Street","category":"Irish Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":59,"name":"Peninsula Porter","state":"Michigan"},{"abv":7.630578879921241,"address":"2145 Blake Street","city":"Denver","coordinates":[39.7557,-104.993],"country":"United States","ibu":58,"name":"Barleywine","state":"Colorado"},{"abv":2.47629976639961,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":73,"name":"Guinea Pig Amber Ale","state":"Nebraska"},{"abv":13.946471990042127,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":80,"name":"Christmas Ale","state":"Wisconsin"},{"abv":5,"address":"1075 East 20th Street","category":"German Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur Summerfest® is a refreshing, pilsner-style lager. Its incredible smoothness comes from an extra-long lagering period. Lighter in body than our ales but just as complex in character, Summerfest® quenches your thirst with big aroma and a tangy hop bite. \n\n\nGOLD MEDAL WINNER\n\nCalifornia State Fair (European Light Lagers: 1999)","ibu":65,"name":"Summerfest","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.1999998093,"address":"5 Bartlett Bay Road","category":"German Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"THE Hefeweizen. Unfiltered and unfettered, Circus Boy is a unique and refreshing American-style Hefeweizen. Is he a who? Or a what? Or perhaps some of both? \n\n\nBrewed with organic lemongrass.","ibu":25,"name":"Circus Boy","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.9000000954,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Spicy and Bold, a big Christmas cookie of a beer.\n\nSamuel Adams® Old Fezziwig® Ale is the Christmas cookie of beer. Bursting with spices of the season and a remarkably full body, it helps those long winter nights pass much quicker. The full body hits the palate first with a depth of malt character ranging from sweeter toffee and caramel notes to the more dark, roasty chocolate notes. Then come the spices in full force. Cinnamon, ginger and orange peel dance on the tongue bringing with them the celebratory spirit that goes hand in hand with the season.","ibu":103,"name":"Samuel Adams Old Fezziwig Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.1999998093,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This Belgian-style strong golden ale showcases a variety of the ingredients and brewing methods that help differentiate Flying Fish beers. The Grand Cru is fermented at a higher temperature than our other beers adding an undercurrent of fruitiness (although there is no fruit in the beer). Very lightly filtered, the Grand Cru exhibits complex mouthfeel, strong malt flavors, a spicy hop presence and a soothing alcohol warmth, followed by a clean, dry finish. It is excellent with food as well as served by itself.","ibu":62,"name":"Grand Cru Winter Reserve","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5.5999999046,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Ice, introduced in 1993, was the world’s first Ice-Brewedâ„¢ beer and the most successful new brand introduction in Canadian brewing history. Labatt Ice is a fully fermented beer that is allowed to mature at cold temperatures. Labatt Ice uses selected North American hops to complement its smooth, full flavour.","ibu":61,"name":"Labatt Ice","state":"Ontario"},{"abv":4.466980719433994,"address":"2598 Telegraph Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":45,"name":"Red Oak Ale","state":"California"},{"abv":6.111069264763248,"category":"North American Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Stockyard Stout","state":"Illinois"},{"abv":7.692864277551296,"address":"208 East River Drive","category":"Other Style","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":51,"name":"Cherry Ale","state":"Iowa"},{"abv":9.406459979021442,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":68,"name":"Black Cobra Stout","state":"Iowa"},{"abv":9.390263210329783,"category":"German Ale","city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":96,"name":"Weisse","state":"Bayern"},{"abv":2.267094210970119,"address":"Am Deich 18-19","category":"North American Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":59,"name":"St.Pauli Girl Beer","state":"Bremen"},{"abv":14.395278896831696,"category":"Irish Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":75,"name":"Black Hook Porter","state":"Washington","website":"http://www.redhook.com/"},{"abv":12.006082826602976,"address":"Am Brunnen 2","city":"Wolnzach","country":"Germany","ibu":7,"name":"Nikolausbier Altfränkisches Dunkel","state":"Bayern"},{"abv":8.566117223576246,"address":"CZ-294 15 Klter Hradit nad Jizerou","city":"Klter Hradit nad Jizerou","country":"Czech Republic","ibu":78,"name":"Tmavé 10% / Dark Beer"},{"abv":5.0999999046,"address":"1809 Larkspur Landing Circle","category":"North American Lager","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":58,"name":"Hefe Weiss","state":"California"},{"abv":14.54108593932805,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":15,"name":"Lake Effect Pale Ale","state":"Indiana"},{"abv":1.3337063333573962,"address":"5080 Rue St-Ambroise","category":"North American Ale","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":35,"name":"Griffon Brown Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":2.3253083336176914,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":73,"name":"Beaver Tail Brown Ale","state":"Colorado"},{"abv":11.924520082767291,"address":"234 Dallas Street West","category":"German Lager","city":"Dallas","coordinates":[45.2585,-91.8181],"country":"United States","ibu":9,"name":"Copperhead Premium Ruby Lager","state":"Wisconsin"},{"abv":4.447435755878484,"address":"1875 South Bascom Avenue #700","category":"North American Lager","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":101,"name":"Faller Wheat","state":"California"},{"abv":0.11396174289437067,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":35,"name":"Northwest Pale Ale","state":"North Carolina"},{"abv":14.938783785695033,"address":"906 Washington Street","category":"British Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":70,"name":"Holiday Scottish Strong Ale","state":"California"},{"abv":5.6999998093,"address":"856 10th Street","category":"Irish Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":6,"name":"Storm Cellar Porter","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":5,"address":"26 Osiers Road","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":12,"name":"Ramrod Special Bitter Ale","website":"http://www.youngs.co.uk"},{"abv":4.745568311072706,"category":"Other Style","city":"Belmont","country":"United States","ibu":50,"name":"Full Boar","state":"CA"},{"abv":10.5,"address":"1680-F East Waterloo Rd.","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Smooth malt flavors of this golden Belgian-style abbey ale are complimented by traditional imported ingredients. A slightly spicy and complex flavor makes this European celebration-style beer unique and refreshing","ibu":26,"name":"Gulden Fraug Belgian Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6,"address":"2050 Yavapai Dr","category":"Irish Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":47,"name":"King Crimson","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":4.5999999046,"address":"1860 Schell Road","category":"North American Lager","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","description":"This beer has changed hands a bit over its 60+ year history - first brewed by the Grain Belt Brewery in Minneapolis, then by the now-defunct Minnesota Brewing and currently by August Schell Brewing Co. in New Ulm.","ibu":77,"name":"Grain Belt","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Country of origin: India \n\nBeer type: Lager \n\nAlcohol content by volume: < 7.5% by volume \n\nCarbohydrates: - \n\nTaste: full bodied malty flavour \n\nMalts: Indian malts, 6 row barley \n\nHops: German hop extract (CO2) & Indian hop palate \n\nColour: Golden yellow \n\nAvailability: India - all seasons, South East Asia, Middle East and Europ \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml and 330 ml Indian standard glass amber bottle ; 500 ml Non returnable bottles ; 500 ml cans and 330 ml cans ( in select markets) \n\n \n\nhttp://www.sabmiller.in/brands_haywards_5000.html","ibu":63,"name":"Haywards 5000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6.0999999046,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Mahogany in color, this full-bodied ale features a floral aroma and malty finish for a taste that's the perfect accompaniment to a crisp autumn afternoon.","ibu":8,"name":"Pyramid Broken Rake","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":8,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"Amber ale with Palmetto berries and hibiscus.","ibu":78,"name":"Pays du Soleil","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"British Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Full Curl Scotch Ale is brewed in the traditional Wee Heavy Scotch strong ale style. (This is not to be confused with the lighter-bodied Scottish ale style.) All about malt, Full Curl pours dark brown with a tan head. Its medium body provides sustenance while its strength boosts courage. With a stiff mug of Full Curl under your belt, you may even have what it takes to don a kilt.","ibu":39,"name":"Full Curl Scotch Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.6999998093,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An Extra Special Farmhouse Ale. A Bam celebration of excess. More malt, more hops, same vivacious personality.","ibu":80,"name":"E.S. Bam","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":3.3099999428,"category":"North American Lager","country":"Japan","description":"From Kirin's Site:\n\n\nWith just 95 calories and full-flavor, Kirin Light is one of the few great world-class Lights.\n\n\nYou might think Kirin Light would be a lightweight contender, content to let his sturdier siblings steal the show. But this fitness-minded newcomer won't compromise. You won't have to compromise either - with just 95 calories and full flavor, Kirin Light is one of the few great world-class lights.\n\n\nWhat makes Kirin Light great\n\nCanadian barley malt, Czech hops, rich golden color","ibu":0,"name":"Kirin Light","website":"http://www.kirin.com/"},{"abv":4,"address":"32295 State Route 20","category":"British Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"An English style ale, copper in color with subtle English malt hints balanced nicely with fresh Washington grown Yakima Valley hops.","ibu":25,"name":"Spitfire Best Bitter","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":4,"address":"32295 State Route 20","category":"German Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A Bavarian style Hefeweizen, a cloudy brew with slight hints of bannana and clove. Light and refreshing.","ibu":2,"name":"Heat Seeker Hefe","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.4000000954,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber, full-bodied lager made in the traditional style with German hops. Brewed in early August and put on tap with a keg of the previous years batch by October of each year. This beer is brewed in memory of \"Lewis\", the owners beer-drinking long-haired Dachsund, who passed away at 17-1/2 on 8/17/99.","ibu":20,"name":"Lewmeister Oktoberfest","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5.3000001907,"category":"Other Style","city":"Hereford","coordinates":[52.056,-2.7175000000000002],"country":"United Kingdom","description":"Strongbow is a brand of cider manufactured in England by Bulmers. It is the UK's most popular cider[citation needed], accounting for more than half of the draught cider sold in British pubs. Strongbow is also unique in that it is produced with a Royal Warrant.","ibu":80,"name":"Strongbow Cider"},{"abv":4.5999999046,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":58,"name":"Corona Extra","website":"http://www.gmodelo.com.mx/"},{"abv":7.5,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":35,"name":"Hitachino Nest Espresso Stout","state":"Kanto"},{"abv":10.408494777204726,"address":"3ra.Av.Norte Final, Finca El Zapote, Zona 2","category":"German Lager","city":"Guatemala City","coordinates":[14.6133,-90.5353],"country":"Guatemala","ibu":100,"name":"Moza"},{"abv":4.642847560842291,"address":"13450 - 102 Avenue","category":"German Lager","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":54,"name":"Iceberg Copper Bock","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":11.035559474126831,"address":"Wilhelm-Schussen-Strae 12","category":"German Ale","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":101,"name":"Weiße","state":"Baden-Wrttemberg"},{"abv":8.3999996185,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":66,"name":"Abtskelder Tripel","state":"Nebraska"},{"abv":9.30984280715505,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":48,"name":"Mönchshof Kellerbräu","state":"Bayern"},{"abv":7.1999998093,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan amber ale brewed in the Flanders tradition. Deep amber with earthy caramel, spice, and sour fruit notes developed through natural barrel aging. Unfiltered, unpasteurized and blended from barrels ranging in age from two to ten months.","ibu":7,"name":"La Roja","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":6.5,"address":"B-1350 Jauche","city":"Jauche","coordinates":[50.6818,4.9547],"country":"Belgium","ibu":71,"name":"Grottenbier","state":"Brabant Wallon"},{"abv":5.3186474871201135,"address":"42 Slateford Road","city":"Edinburgh","coordinates":[55.9358,-3.2297000000000002],"country":"United Kingdom","ibu":61,"name":"Golden Promise Traditional Scottish Ale","state":"Scotland"},{"abv":5,"address":"110 Wisconsin Dells Parkway South","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":61,"name":"Dunkel Lager","state":"Wisconsin"},{"abv":6.5,"category":"Irish Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":18,"name":"Not Tonight Honey Porter","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.5,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":68,"name":"Old Tom Barley Wine","state":"Cheshire"},{"abv":2.563650051131401,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":89,"name":"Nut Brown","state":"California"},{"abv":4.0999999046,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":56,"name":"Corona Light","website":"http://www.gmodelo.com.mx/"},{"abv":10,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":21,"name":"Paradox Speyside","website":"http://brewdog.com/"},{"abv":4.5,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"Other Style","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Razberry Wheat is crisp with a refreshing tartness and the fresh aroma of raspberries. This salmon pink ale is just the thing to transport you to berry time in the summer.","ibu":115,"name":"Cascade Razberry Wheat","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":7.4000000954,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","ibu":61,"name":"Big Hop Harvest Ale","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":7.44118760802616,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":31,"name":"Bud Light Golden Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":10,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","description":"Ladies and Gentlemen, Shmaltz Brewing Co. is proud to introduce Bittersweet Lenny's R.I.P.A. Brewed with an obscene amount of malts and hops. Shocking flavors - far beyond contemporary community standards. We cooked up the straight dope for the growing minions of our nation's Radical Beer junkies. Judges may not be able to define \"Radical Beer,\" but you'll damn well know it when you taste it. Bruce died, officially declared a pauper by the State of California, personally broken and financially bankrupt simply for challenging America's moral hypocrisies with words. The memorial playbill read: \"Yes, we killed him. Because he picked on the wrong god.\" -Directed by, the Courts, the Cops, the Church... and his own self-destructive super ego. Like Noah lying naked and loaded in his tent after the apocalyptic deluge: a witness, a patron saint, a father of what was to come. Sick, Dirty, Prophetic Lenny: a scapegoat, a martyr, a supreme inspiration.","ibu":3,"name":"Bittersweet Lenny R.I.P.A.","state":"California","website":"http://www.shmaltz.com/"},{"abv":7.763788956794816,"address":"700 North Pennsylvania Blvd.","category":"North American Lager","city":"Wilkes Barre","coordinates":[41.2557,-75.8583],"country":"United States","ibu":117,"name":"Lionshead Light","state":"Pennsylvania","website":"http://www.lionbrewery.com/"},{"abv":5.0999999046,"address":"2944 SE Powell Blvd","category":"German Lager","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Our Czech style pilsner is all malt all the time-no choicest rice or corn syrup here! Whole flower Czech Saaz hops balance the delicate honey flavor of our organic Canadian grown pilsner malt creating a golden beer with depth of character.","ibu":13,"name":"HUB Lager","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":3.3095212871899093,"category":"North American Ale","city":"Auburn","coordinates":[38.8966,-121.077],"country":"United States","ibu":41,"name":"Oatmeal Stout","state":"California"},{"abv":1.879291006703887,"address":"200 Village Green","category":"German Lager","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":80,"name":"Bockbier","state":"Illinois"},{"abv":4,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Blue Light was introduced in 1983 as a lower alcohol, lower calorie version of Canada’s most popular brand. Blue Light uses specially selected North American aromatic hops and the same strain of lager yeast as the one used to produce Labatt Blue. The result is a crisp, clean and delicately balanced beer, with a slight sweetness and citrus-like hop character.","ibu":115,"name":"Labatt Blue Light","state":"Ontario"},{"abv":12.499253930454396,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":37,"name":"IPA","state":"Massachusetts"},{"abv":11.101458372877484,"address":"75-5629 Kuakini Highway","category":"Other Style","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":108,"name":"Lilikoi Wheat Ale","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":10.907496816704327,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":38,"name":"Pale","state":"California"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":84,"name":"Andelot Mystique","state":"Oost-Vlaanderen"},{"abv":6.875724467543931,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":7,"name":"Sequoia Red","state":"Washington"},{"abv":4.8000001907000005,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":13,"name":"Loki","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":6.3000001907,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":52,"name":"The Immortal IPA","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":9.1999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":27,"name":"471 Double IPA","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4,"address":"765 Center Boulevard","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":46,"name":"Kent Lake Kolsch","state":"California"},{"abv":5,"address":"Marsstrae 46-48","city":"München","country":"Germany","ibu":74,"name":"Pils","state":"Bayern"},{"abv":11.600000381000001,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":49,"name":"Harvest Ale 2006","state":"Manchester"},{"abv":11.699999809,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":4,"name":"Old Stock Ale 2007","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":6,"name":"Flemish Primitive Wild Ale (Pin Head)","state":"Oost-Vlaanderen"},{"abv":7,"address":"901 S. Bond St.","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"Just like the miracle cure-alls of old, Professor Wagner’s Imperial Pilsner possesses no verifiable medicinal qualities whatsoever. And yet, taken internally, this golden elixir is guaranteed to cure what ails you. Snake Oil is a crisp, Medium-bodied lager with a complex maltiness and heavy hop presence – well-rounded and refreshing.","ibu":74,"name":"Snake Oil","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5,"address":"Am Brauhaus 8b","category":"German Lager","city":"Dresden","country":"Germany","description":"dark, bottom-fermented, more on the sweet side, made of 100% barley malt according to ther description, very good to meat","ibu":86,"name":"Waldschlösschen Dunkel","state":"Sachsen","website":"http://www.waldschloesschen.de"},{"abv":4.8000001907000005,"address":"1100 New York Ave, NW","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness","ibu":34,"name":"Capitol Kolsch","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":6.341369748851101,"category":"North American Ale","city":"Trowbridge","coordinates":[51.3201,-2.208],"country":"United Kingdom","ibu":17,"name":"IPA","state":"Wiltshire"},{"abv":14.825536837177458,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":83,"name":"Special Beer","state":"Wisconsin"},{"abv":5.393076196977447,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":51,"name":"Adler Bräu Downtown Brown","state":"Wisconsin"},{"abv":7.4022572180839665,"address":"103 West Michigan Avenue","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":46,"name":"Lake Superior ESB","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":11.058863680940354,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":7,"name":"Clovis","state":"Hainaut"},{"abv":3.25324528092319,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":20,"name":"Alt","state":"Wisconsin"},{"abv":2.919091596981028,"city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":38,"name":"Biloxi Blonde","state":"Mississippi"},{"abv":14.266619762653253,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":94,"name":"Depot Pils","state":"Michigan"},{"abv":2.9099242219497845,"address":"200 East Michigan Avenue","category":"North American Lager","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":37,"name":"Winter Wheat","state":"Michigan"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":60,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":10,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Pilgrim’s Dole is a barleywine-style ale made with fifty percent wheat malt, or what we at New Holland call a wheatwine. Pilgrim’s Dole blends warming and slightly sweet flavors with a unique caramelized character. It would be an excellent accent to nutty dishes, fruit crisps or creme brulee.","ibu":113,"name":"Pilgrim's Dole","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":6,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Scotch Ale is a full-bodied, malty sweet ale. True to Scottish brewing tradition, this malty flavor and deep copper brown color are a result of Scottish two row malt and roasted barley.","ibu":90,"name":"Saranac Scotch Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.8600001335,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This intensely dark Kulmbacher style lager has a superb malt complexity with the distinctive flavors and aromas of coffee, caramel and chocolate.\n\n\nA renowned smoothness and a creamy, tan head make it a world champion.","ibu":48,"name":"Black Bavarian Lager","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.5450250198262,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":63,"name":"Hefeweißbier","state":"Bayern"},{"abv":14.784801147033335,"address":"5919 Chicago Road","category":"British Ale","city":"Warren","coordinates":[42.5278,-83.0472],"country":"United States","ibu":85,"name":"120 Shilling Scotch Ale","state":"Michigan","website":"http://www.kbrewery.com/"},{"abv":2.332744506294394,"address":"18 East 21st Street","category":"Irish Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":69,"name":"Porter","state":"Nebraska"},{"abv":8.3000001907,"address":"Naamsesteenweg 469","city":"Kerkom","coordinates":[50.7763,5.166],"country":"Belgium","ibu":93,"name":"Winterkoninkse","state":"Limburg"},{"abv":1.3826141167036543,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":5,"name":"India Pale Ale","state":"California"},{"abv":14.136879123012552,"address":"57 Hamline Avenue South","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":24,"name":"Knockadoon Irish Ale","state":"Minnesota"},{"abv":0.34892303785086454,"address":"701 Evans Street","category":"North American Ale","city":"Greenville","coordinates":[35.6083,-77.3732],"country":"United States","ibu":9,"name":"Buccaneer Brown Ale","state":"North Carolina"},{"abv":3.5,"address":"451 Wilmington-West Chester Pike","category":"North American Lager","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":118,"name":"Light Lager","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":14.925575301616734,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":84,"name":"Klout","state":"California"},{"abv":10,"address":"2001 Second Street","category":"German Lager","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":85,"name":"Doppelbock","state":"California"},{"abv":3.533484820818579,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":47,"name":"Dubbel Ale","state":"Texas"},{"abv":4.877297509694732,"address":"4607 Wedgewood Boulevard","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":12,"name":"Stone Beer","state":"Maryland"},{"abv":5.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Doggie Style Pale Ale \n\nMeet the Alpha of the pack ... Flying Dog Classic Pale Ale is brilliant amber in color and dry hopped with buckets full of Cascades for an unrivaled hop flavor and aroma. This is a true representation of an American-style pale ale, using the finest ingredients. Flying Dog Classic Pale Ale is a multi-award winning product and is consistently ranked as one of the best pale ales in the U.S. This is what craft beer is all about.","ibu":117,"name":"Classic Pale Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":13.047333140997067,"address":"1933 Davis Street #177","category":"German Lager","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":82,"name":"Maibock","state":"California","website":"http://drinkdrakes.com/"},{"abv":7.60915426439743,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":16,"name":"Adler Bräu Tailgate Amber","state":"Wisconsin"},{"abv":11.019597271383248,"address":"4057 Pennsylvania Avenue","category":"North American Ale","city":"Kansas City","coordinates":[39.0534,-94.5919],"country":"United States","ibu":34,"name":"Deluxe Cream Stout","state":"Missouri"},{"abv":3.1353183138988006,"address":"Kreuzstrae 4-10","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":74,"name":"Organic Ur Pils","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":2.667661232333247,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":38,"name":"Old Knucklehead 1999","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":7.214224662004838,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":66,"name":"Stout","state":"Indiana"},{"abv":12.570330974625834,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":24,"name":"Blonde Light","state":"South Carolina"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","description":"It is made using 100% Granny Smith apples. This cider has a mouth-watering flavor that is tangy and tart, with just a touch of sweetness.","ibu":53,"name":"Woodchuck Granny Smith Varietal Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":4.5,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Hammerin’ Ale is the Barbarian’s first beer. Brewed to be a well-balanced, easy-going beer, Hammerin’ Ale comes from a rather simple recipe which yields a deep amber color and a sublime balance of malt character and hop flavors. This beer goes very well with grilled meats and is meant to be enjoyed year-round. Hammerin’ Ale is an excellent choice for “Barbarians” who are new to craft beer.","ibu":69,"name":"Hammerin' Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":6.4000000954,"address":"5429 Shaune Drive","category":"Other Style","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"English Olde Ale. Traditionally malty with the warming sensation of alcohol, Olde Ales are brewed in the fall as winter warmers.\n\n\nBrewed in the style of an English Olde Ale, this ale balances the sweet heady aroma of spruce tips with the clean crisp finish of noble hops. Its malty richness is complemented by the warming sensation of alcohol.\n\n\nAlaskan Winter is made from glacier-fed water, Sitka spruce tips and a generous blend of the finest quality European and Pacific Northwest hop varieties and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year.","ibu":61,"name":"Winter Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":6.5,"address":"5429 Shaune Drive","category":"Irish Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Smoked Beer. Known as \"rauchbier\" in Germany, smoke-flavored beers were virtually unknown in the U.S. until Alaskan Smoked Porter was developed in 1988.\n\n\nThe dark, robust body and pronounced smoky flavor of this limited edition beer make it an adventuresome taste experience. Alaskan Smoked porter is produced in limited \"vintages\" each year and unlike most beers, may be aged in the bottle much like fine wine.\n\n\nWater, five types of malt, 2 varieties of hops and yeast with no adjuncts, no preservatives and no pasteurization. Our glacier-fed water originates in the 1,500 square-mile Juneau Ice Field. Prior to brewing, selected malts are smoked in small batches under carefully controlled conditions in a commercial food smoker using local alder wood.","ibu":90,"name":"Alaskan Smoked Porter","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":6.708255076628077,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete's Wicked Strawberry Blonde is truly a unique beer experience. Reward yourself with our golden lager made of the finest pale and wheat malts and Cluster Hops, with a kiss of natural strawberry flavor.","ibu":70,"name":"Pete's Wicked Strawberry Blonde","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":5.0999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A beer lover's dream! This classic irish stout and amber lager blend is malty, yet pleasantly bitter with many complex flavor notes. Look for a deep brown-black color and full-body.","ibu":107,"name":"Saranac Black & Tan","state":"New York","website":"http://www.saranac.com"},{"abv":14.5,"address":"5763 Arapahoe Avenue","category":"British Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"A super-caramelly, oak-aged English-style strong ale. The oak is very apparent in this rich and high gravity ale. Additional depth and complexity result in a woody and cask-like nose, with a pronounced vanilla flavor on the palate. As of 2007, the use of additional roasted malt has resulted in subtle bitternes to balance the natural sweetness.","ibu":41,"name":"Samael's Oak-aged Ale","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8,"address":"701 Galveston Ave","category":"British Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Break out the bagpipes with your lederhosen! We’re proud to present our Iron Thistle Scotch Ale – Rahr’s first National Grand Champion winner. This dark, Scottish ale has a bold taste dominated by a smooth, sweet maltiness balanced with a low, hoppy bitterness. So don your kilts and enjoy. Here’s to your health – Slàinte! Prosit!","ibu":14,"name":"Iron Thistle","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Celtic Copper is a mahogany hued ale with rich malt flavor and subtle hop balance; an excellent choice for those who prefer amber ales.","ibu":45,"name":"Celtic Copper Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":0.26291890303268284,"address":"1022 Main Ave.","category":"North American Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"The slightly roasted flavor and nutty palate with a hint of hops make this beer subtle and drinkable.","ibu":65,"name":"Colorado Trail Nut Brown Ale","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":6,"category":"Belgian and French Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"This pale golden, Belgian-influenced ale is for everyone: Farm Girl, wannabe Farm Girl. In the Belgian Farmhouse tradition, this brew has a dry malt finish and a spiciness that only Belgian yeasts can create. Smooth and well rounded... this one can please anyone in any situation, whether you are on the water, in the sun, or hiding from winter's chill.","ibu":113,"name":"Farm Girl Saison","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"British Ale","city":"Grimstad","country":"Norway","description":"A light session ale, with an assertive hop aroma of E K Golding. Great beer to pair with lots of different food - a good allround.","ibu":5,"name":"Nøgne Ø Bitter","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"From the talented brewers of Midnight Sun comes an incredible, beautifully bright and sunny golden ale. Every sip entices the taste buds with a bold balance of pils malt and noble hops. Midnight Sun Kolsch is a traditional German-style beer that unites the liveliness of an ale with the crispness of a lager for real refreshment any time of year. \n\n\nCreating a beer that truly serves both newcomers to craft beer as well as avid beer aficionados is no easy task. Midnight Sun Kolsch brewers struck gold with this beer...and now you can too. \n\n\nAvailability:\n\nAK - draft (year-round)","ibu":30,"name":"Midnight Sun Kolsch","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":72,"name":"Impromptu Pale Ale","state":"Nebraska"},{"abv":9.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":5,"name":"Brune","state":"Hainaut"},{"abv":5.5,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":93,"name":"Amber Weizen","state":"Washington"},{"abv":5.6999998093,"address":"104 North Lewis Street","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":4,"name":"Saison","state":"Washington"},{"abv":11.373841508242618,"address":"Haldenstrasse 69","category":"North American Lager","city":"Winterthur","coordinates":[47.5077,8.7302],"country":"Switzerland","ibu":116,"name":"Original Ittinger Klosterbräu"},{"abv":10,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":79,"name":"Double Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.252703640394849,"address":"Kreuzstrae 4-10","category":"North American Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":75,"name":"Jubilate Special Reserve Anniversary Ale","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":10.583915458967718,"address":"320 Pierce St","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":57,"name":"Whiskey Barrel Whitetail Cream Ale","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":5.0999999046,"address":"1001 16th Street #A-100","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":80,"name":"Lucky U ESB","state":"Colorado"},{"abv":6,"address":"Route 4 & 100A","category":"British Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"This robust and malty brew will take the bite from a cold winter night.","ibu":18,"name":"Hibernator","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":4.5,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":108,"name":"Cerveza Sol","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":7.415380197691799,"address":"16 North Brown Street","category":"North American Ale","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":85,"name":"Amber","state":"Wisconsin"},{"abv":6.704978813780552,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","ibu":105,"name":"Classic Special Brew","website":"http://www.aass.no"},{"abv":4.9000000954,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":78,"name":"Albion Amber Ale","state":"California"},{"abv":8.568432131038819,"address":"147 West Broadway","category":"German Lager","city":"Salt Lake City","coordinates":[40.7626,-111.895],"country":"United States","ibu":88,"name":"Black Forest Schwarzbier","state":"Utah"},{"abv":3.2294415790132494,"city":"Richmond","coordinates":[37.543,-77.4691],"country":"United States","ibu":2,"name":"Stubborn Mule Barleywine","state":"Virginia"},{"abv":12.383848523162198,"address":"1 Dostal Alley","city":"Central City","coordinates":[39.8019,-105.514],"country":"United States","ibu":109,"name":"Powder Keg Raspberry Porter","state":"Colorado"},{"abv":6.4000000954,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":13,"name":"Maduro","state":"Illinois"},{"abv":4.923581290591948,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":55,"name":"Pale Ale","state":"Illinois"},{"abv":13.023510946145858,"city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":89,"name":"Winter Wheat","state":"Missouri"},{"abv":7.868339762323965,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":104,"name":"Schlafly Winter ESB","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":1.8259061311030933,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":21,"name":"Missouri Brown Dark Ale","state":"Missouri"},{"abv":9.089399033868993,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":101,"name":"Double Cream Oatmeal Stout","state":"Michigan"},{"abv":3.969197541793432,"address":"1501 Arboretum Drive","category":"North American Lager","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":119,"name":"Fox Light","state":"Wisconsin"},{"abv":9.8000001907,"address":"196 Alps Road","category":"Belgian and French Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"This Belgian IPA has a malt bill of a Belgian Tripel and a hop bill of a Double IPA. The yeast I chose for this beer comes from one of the 7 Trappist breweries.\n\n\nBelieve it or not, this is the first time in my professional brewing career that I have used dextrose (corn syrup) in a Terrapin brew. True to style no doubt.\n\n\n“Monk’s Revenge” (otherwise known as the “Big Nasty”) has all the flavor and aroma of a Double IPA while hidden beneath lies the malt character of a fine Belgian Tripel.\n\n\nI hope you enjoy my interpretation of this very fun style.","ibu":98,"name":"Terrapin Monk's Revenge","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":10.199999809,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Our 12th anniversary brew is a Rye Barleywine. Checking in at 10.2% abv, Twelve is being released in July and through the end of the year. Made from 50% Rye Malt and 50% Barley Malt, this strong ale is extremely viscous. The rye adds a tantalizing note of flavor on the palate with a hint of tartness you've come to expect from Rye. Slightly warm when its young, the beer will age very well, perhap 5 years or more. We're guessing that peak taste will be in the 1 to 2 year old range, with 3 and 4 not far behind. Be sure to lay some down in your collection.","ibu":8,"name":"Twelve","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":12.50321264427563,"category":"German Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":65,"name":"Black Lava Lager","state":"Hawaii"},{"abv":8.22427506645086,"city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":75,"name":"Colorado Kölsch Ale","state":"Colorado"},{"abv":9.972084500483366,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":118,"name":"Stout","state":"California"},{"abv":5.8000001907000005,"city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":95,"name":"Double Eagle Scotch Ale","state":"North Carolina"},{"abv":13.584562738561608,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":26,"name":"Kriek","state":"Vlaams Brabant"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":94,"name":"Old Foghorn 1998","state":"California"},{"abv":1.9912046301095643,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":89,"name":"Railroad Stout","state":"Illinois"},{"abv":8.120095252629216,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Amber is a Munich style lager. It has a smooth, malty, slightly caramel flavor and a rich amber color.","ibu":96,"name":"Abita Amber","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11.28156506629131,"address":"351 Allen Street","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"A coffee lover's delight! A wonderful stout infused with coffee that is specially roasted for us by Emy J's (www.emyjs.com) in Stevens Point, WI.","ibu":28,"name":"Brewhouse Coffee Stout","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":6.1999998093,"address":"40 Bowden Square","category":"North American Ale","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":74,"name":"South Hampton IPA","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5.6999998093,"address":"939 Getchell Street","category":"North American Ale","city":"Helena","coordinates":[46.5977,-112.037],"country":"United States","description":"A GOLD MEDAL WINNER at the Great American Beer Festival, beating out 98 other IPA's and chosen as the best IPA in the country! It's amber color and incredible hoppy aroma will keep you coming back for more. R-U-HOPPY?","ibu":77,"name":"Tumbleweed IPA","state":"Montana","website":"http://lewisandclarkbrewing.com/"},{"abv":6.25,"address":"445 St.Paul Street","category":"German Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Certain things seem interminable. The line at the DMV. The commencement address. Winter. \n\n\nBut take heart. Even the longest, darkest winter gives way to spring and a new sense of optimism that the best is just ahead. That thought—and an itchy wool robe—sustained the monks through times of fasting. Their reward? A bock beer with the power to rejuvenate the body and the soul. That, and the opportunity to exchange the wool robe for a nice burlap one. \n\n\nSo when you’re stuck in the middle of that seemingly endless glass of mediocre beer, be optimistic. A Dundee Pale Bock awaits.\n\n\nA traditional German Maibock with a deep, golden color, malty-sweet aroma, and clean finish from Magnum and Czech Saaz hops.","ibu":45,"name":"Dundee Pale Bock Lager","state":"New York"},{"abv":6,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":82,"name":"Village Nut Brown Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":3.1570390259602554,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Much like the local icon it is named for, our version of American Pale Ale has a bold character. We add a healthy dose of hops in both the kettle and the finishing tank.","ibu":80,"name":"Great Blue Heron Pale Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":7,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A full-bodied brown ale with smooth hints of pumpkin and brown sugar. Perfect to warm-up with, as the season cools.","ibu":90,"name":"Punkin Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6.5,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Ever met a New Belgium Beer Ranger? They are our beloved folks out in the field. Spanning all 26 of our states from the Pacific to the Atlantic, our Beer Rangers do their best to protect, to pour and to partake. And explore many a beer from many a brewery, they do. The fellows up in the Northwest kept calling for “more hops!” Soon it became a common theme across the land. Rangers, fans and craft lovers everywhere were searching for hoppier beers. \n\n\nSo, here it finally is – New Belgium’s foray into the true American India Pale Ales. Bring out the hops! This clear amber beauty bursts at the starting gate with an abundance of hops: Cascade (citrus), Chinook (floral/citrus), and Simcoe (fruity) lead off the beer, with Cascade added again for an intense dry hop flavor. Brewed with pale and dark caramel malts that harmonize the hop flavor from start to finish, Ranger is a sessionable splendor for all you hopinistas. Thank your Beer Ranger!","ibu":9,"name":"Ranger India Pale Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":6.8000001907000005,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Sweet Orange Blossom Honey is combined with Belgian two-row malted barley and Munich malt to create another Belgian classic. Tetternger and E. Kent Goldings hops are added to round out the finish of this beer. The aroma of the honey remains without the sugary sweetness.","ibu":73,"name":"Bronze Griffin","state":"Michigan"},{"abv":5.75,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":64,"name":"No Doubt Stout","state":"Washington"},{"abv":1.1824115310702976,"category":"North American Lager","country":"Netherlands","ibu":109,"name":"Premium Light Lager Beer","website":"http://www.heineken.com/"},{"abv":5.105429603966298,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":52,"name":"Edel-Pils","state":"Baden-Wrttemberg"},{"abv":9.161003717253728,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":38,"name":"Maisbier"},{"abv":9,"address":"Kaiser-Ludwig-Platz 1","category":"German Lager","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":68,"name":"Curator Dunkler Doppelbock","state":"Bayern"},{"abv":8.1000003815,"address":"Ul. Marii Konopnickiej 1","category":"North American Lager","city":"Witnica","coordinates":[52.6739,14.9004],"country":"Poland","ibu":44,"name":"Mocny BOSS / BOSS Beer","website":"http://www.browar-witnica.pl/"},{"abv":7,"address":"ul. GoÅ›niewska 65","category":"North American Lager","city":"Warka","country":"Poland","description":"European Strong Lager","ibu":89,"name":"Warka Strong","website":"http://www.warka.com.pl/"},{"abv":7,"address":"9750 Indiana Parkway","category":"British Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A big malty body from chocolate and roasted malts, well balanced with just the right combination of hops. Robust yet smooth, a true malt-lover's delight.","ibu":14,"name":"Robert the Bruce Scottish Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":5.1999998093,"address":"2201 Sherman Street","category":"North American Ale","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":35,"name":"India Pale Ale","state":"Wisconsin"},{"abv":3.9460903843143083,"address":"23 White Deer Plaza","category":"Irish Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":1,"name":"Packs A Punch Porter","state":"New Jersey"},{"abv":8.881293186030998,"address":"686 South Main Street","category":"North American Ale","city":"Moab","coordinates":[38.5657,-109.55],"country":"United States","ibu":116,"name":"Scorpion Pale Ale","state":"Utah"},{"abv":10.341110445679735,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":26,"name":"Milkhouse Stout","state":"Wisconsin"},{"abv":8,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Essentially a strong American IPA made with 20% rye malt. Darker in color, Hop Rod Rye boasts a huge hop aroma and flavor accompanied by a slightly sweet, malty finish.","ibu":116,"name":"Hop Rod Rye","state":"California","website":"http://www.bearrepublic.com/"},{"abv":2.2441094297435296,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":19,"name":"Old Scratch Barleywine 2002","state":"Wisconsin"},{"abv":7.202006712814077,"address":"4150 Sycamore Dairy Road","category":"North American Ale","city":"Fayetteville","coordinates":[35.0707,-78.9545],"country":"United States","ibu":37,"name":"Hoppy Hour IPA","state":"North Carolina"},{"abv":2.4677902162437784,"address":"Hohe Buchleuthe 3","city":"Kaufbeuren","coordinates":[47.8781,10.6161],"country":"Germany","ibu":0,"name":"Jubiläums German Pils","state":"Bayern","website":"http://www.aktien-brauerei.de/"},{"abv":6.6999998093,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Dark, rich, hearty, smooth and chocolaty. The two siloettes on the logo are Marina and Kshusha adopted from Russia by Amherst Brewing Company's owners, John and Terrie.","ibu":64,"name":"Two Sisters Imperial Stout","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"(White of Chambly) was the first bottle\n\nrefermented ale produced by Unibroue. It is\n\nbrewed from a blend of pale barley malt,\n\nwheat malt and unmalted wheat, to which\n\nwe blend selected spices and hops.\n\n \n\nBlanche de Chambly is only partially filtered,\n\nretaining its natural cloud of yeast that is\n\ncharacteristic of the original white ales\n\nbrewed during the Middle Ages.\n\n\nWe recommend this remarkably refreshing","ibu":118,"name":"Blanche de Chambly","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":23,"name":"Red Nectar","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":2.0049254643646854,"category":"North American Ale","city":"Cincinnati","coordinates":[39.1361,-84.5031],"country":"United States","ibu":63,"name":"5 Malt Ale","state":"Ohio"},{"abv":5.9000000954,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":114,"name":"Natural Ice","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.6999998093,"address":"310 Mill Creek Avenue","category":"Irish Ale","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Dark Brewed Porter is an original specialty beer that has been brewed expressly for tavern owners and family trade since 1829. We are proud to be recognized as one of the largest porter producers in the US. An authentic craft-style beer, our Porter calls for a generous portion of caramel and dark roasted malts, which deliver a rich full-bodied flavor and creamy taste with slight tones of chocolate evident in every sip. It pours dark, topped with a thick foamy head, and imparts a faint malty aroma. This smooth and robust Porter has a unique character that complements any meal from steak or seafood to chocolate desserts. Yuengling Dark Brewed Porter is enjoyed by even the most discerning consumer for its flawless taste and unwavering quality.","ibu":49,"name":"Yuengling Porter","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":13.216828533544932,"address":"26 Old Cross","category":"North American Ale","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":84,"name":"Special Reserve Oatmeal Ale","state":"Hertfordshire"},{"abv":2.2917135925778553,"address":"3015-D Hopyard Road","category":"North American Lager","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":108,"name":"Copper Wheat","state":"California"},{"abv":11.349578357794861,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":78,"name":"Sun Fest","state":"California"},{"abv":11.489386082022655,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Similar to the Harvest Wit but with a lot more punch. A very pronounce citrus aroma with a triple hop flavor makes for one great beer.","ibu":46,"name":"Triple Citra Hopped Satsuma Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":6.25,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This is a single malt-English pale, and single hop-English Fuggles, India Pale Ale with a rich golden color and spicy finish. Named for brewery supporters John and Cindy Bundick, with reference to John's service on a submarine.","ibu":83,"name":"Bluejackets Best","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.3000001907,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Ports Pale Ale is an extremely light and easy to drink Pale Ale. It is brewed with the finest German and English Malt and Hops. Brewed for the local Stockton ports baseball team.","ibu":42,"name":"Ports Pale Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.1999998093,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"This is our smooth golden ale. Our Gold has a medium body and low to medium hop bitterness \n\nand aroma.","ibu":18,"name":"Estes Park Gold","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":5.3000001907,"address":"2944 SE Powell Blvd","category":"British Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Beer of the Ancients! Barley (Egyptian), Wheat (Mesopotamian), Oats (Egyptian), Amaranth (Aztec), Quinoa (Incan), Spelt (Mesopotamian), and Kamut (Egyptian) sustain the soul with a nutrients cultivated through the millennia. Finished with 15 pounds of cold-pressed Stumptown Hairbender espresso. Unlock the mystery entombed in darkness.","ibu":21,"name":"Survival Stout","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":4.6999998093,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"ith more than 2,800 bodies of water in the Adirondacks, it's not too hard to find a sunny place to relax, rest your feet and look out over the water. To celebrate summer in the Adirondacks, we've brewed a beer with generous amounts of wheat malt for a light, refreshing taste. Look for subtle hints of lemon.","ibu":82,"name":"Saranac Summer Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This golden sparkling blond ale was brewed to pay homage to a 1000-year tradition rooted in Cologne, Germany. Clear, crisp and easy to drink, the Kolsch of today is lighter than the \"House\" beer that was served in Cologne 200 years ago - the city that made Kolsch famous. We hope you'll enjoy it!","ibu":55,"name":"Saranac Kolsch","state":"New York","website":"http://www.saranac.com"},{"abv":3.360328457038071,"address":"PO Box 721","city":"Freetown","coordinates":[8.4841,-13.2287],"country":"Sierra Leone","description":"• Millions of golden bubbles\n\n• Sparkling brightness\n\n• Refreshing taste\n\n• Cascading foam head\n\n• Cold filtered for quality\n\n\nhttp://www.slbrewery.com/index.php?option=com_content&task=view&id=18&Itemid=36","ibu":82,"name":"Star Beer","state":"Sierra Leone","website":"http://www.slbrewery.com/"},{"abv":6.25,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Mogul is a complex blend of 5 malts and 7 hops. This years Mogul (12/05) will only get better with time...its a hedonistic mouthful with layers of rich malt and tremendous bitterness. A quote from John \"more hops\" Maier, \"Keep Warm, Drink Mogul ~ Prost!\" This batch of Mogul was brewed with Pale, Munich, Dark caramunich, Melanoidin, and Amber malts. \n\nMoguls hops include Newport, Amarillo, Chinook, Horizon, Cascade, Centennial and Crystal...and Mogul (12/05) is dry-hopped with Amarillo and Centennial at the rate of 1 pound per barrel! Oh Hoppy Day!","ibu":110,"name":"Mogul Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":111,"name":"Fur Rondy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Leroy's BIG Brother. Sweet floral hop aroma balances out the big malty roasted body with the slightest bitter spiced-chocolate finish. A very untraditional hopping technique gives this beer a unique character significantly more robust than our traditional Leroy Brown Ale. The beer weighs in at 5.0% alc./vol. Cheers!!","ibu":52,"name":"American-Style Brown Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":9.5,"address":"1516 Sansom Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":108,"name":"Wee Heavier","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":7,"address":"1201 First Avenue South","category":"British Ale","city":"Seattle","country":"United States","ibu":84,"name":"Snow Cap","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":13,"name":"Kitsilano Maple Cream Ale","state":"British Columbia"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":19,"name":"Harvest Ale 2005","state":"Manchester"},{"abv":3.9698767044596517,"category":"German Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":74,"name":"Adler Bräu Weiss","state":"Wisconsin"},{"abv":1.2458278037934556,"address":"226 Elk Avenue","city":"Crested Butte","coordinates":[38.8698,-106.987],"country":"United States","ibu":23,"name":"Red Lady Ale","state":"Colorado"},{"abv":13.203725020730793,"category":"North American Ale","city":"Riverside","coordinates":[33.9533,-117.396],"country":"United States","ibu":96,"name":"Double Chocolate Stout","state":"California"},{"abv":10.488171658523083,"address":"237 Joseph Campau","category":"Irish Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":107,"name":"Double Chocolate Porter","state":"Michigan"},{"abv":9.1999998093,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"This dangerously drinkable garnet beauty is a hop lover's delight. The intense dry-hop nose and the alcohol content are perfectly balanced for a caramel candy-like malt finish. This is a serious beer for serious beer afficianados and it only gets better with age. Cellerable for 3 years.","ibu":61,"name":"Hog Heaven Barleywine","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":1.4626768856626926,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":79,"name":"Oude Gueuze","state":"Vlaams Brabant"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":21,"name":"Reinaert Flemish Wild Ale","state":"Oost-Vlaanderen"},{"abv":9.9099998474,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":35,"name":"Old Guardian Barley Wine 2003","state":"California","website":"http://www.stonebrew.com/"},{"abv":5,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":90,"name":"Golden Export","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":14.146314153888424,"address":"Onekaka","city":"Takaka","coordinates":[-40.7658,172.705],"country":"New Zealand","ibu":54,"name":"Strong Ox"},{"abv":7.5,"city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":77,"name":"Bourbon Barrel Scotch Ale","state":"Wisconsin"},{"abv":4.347098176574961,"category":"German Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":51,"name":"Half Again Bock","state":"Delaware"},{"abv":8.842985490641148,"address":"686 South Main Street","city":"Moab","coordinates":[38.5657,-109.55],"country":"United States","ibu":22,"name":"Dead Horse Ale","state":"Utah"},{"abv":9,"address":"6 Cliffe High Street","category":"North American Ale","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":89,"name":"A. LeCoq Imperial Extra Double Stout 1999","state":"East Sussex"},{"abv":10.725978298077369,"address":"313 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":102,"name":"Marzenbier","state":"Wisconsin"},{"abv":10.762774393751478,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":83,"name":"Old Courthouse Stout","state":"Missouri"},{"abv":5.6593864647897965,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":71,"name":"Hinterland Pale Ale","state":"Wisconsin"},{"abv":11.080591174462844,"category":"Irish Ale","city":"Lake Delton","coordinates":[43.6011,-89.7937],"country":"United States","ibu":49,"name":"T.P.H. Porter","state":"Wisconsin"},{"abv":6.401193298429543,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"An amber-colored ale with a pronounced floral aroma and a flavor contributed by Cascade hops. Hop lovers will savor this bold version of an American classic.","ibu":8,"name":"Pale Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":14.165667634054087,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":11,"name":"Bitter Amber","state":"Colorado"},{"abv":12.377738364134903,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":16,"name":"Sun Fest","state":"California"},{"abv":5.062858168439586,"address":"2920 North Henderson Ave","category":"North American Ale","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":2,"name":"White Rock Red","state":"Texas"},{"abv":9.718789115750523,"category":"North American Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":28,"name":"Red Lager","state":"Texas"},{"abv":4.805385371252836,"category":"German Lager","city":"Lake Oswego","coordinates":[45.4207,-122.671],"country":"United States","ibu":82,"name":"Jack Frost Winter Doppelbock","state":"Oregon"},{"abv":0.5003168594138119,"category":"North American Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":21,"name":"India Pale Ale","state":"Washington"},{"abv":14.975305647877367,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":13,"name":"Smoke Jump Stout","state":"South Dakota"},{"abv":5.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Maduro is a Northern English-style brown ale with some American affectations. It is unlike the typical American Brown Ale, as it doesn’t have the big hop character common in American-brewed Brown Ales. And Maduro is higher in alcohol than the common English brown ale. Maduro also has oats, in the malt bill which imparts a silky body and aids in making the roasted, toasted and chocolate components mesh together in Maduro's complex malt profile. The end result is a remarkably full flavored yet approachable and sessionable brown ale that pairs well with cigars.","ibu":77,"name":"Maduro Oatmeal Brown Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":4.1999998093,"address":"3300 Old Seward Highway","category":"Other Style","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"Brewed with wheat and barley malts and flavored with pureed raspberries, this pink-hued, slightly tart ale gives a clean sip.","ibu":85,"name":"Wild Country Raspberry Wheat","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":5.3000001907,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Behold the hop. A flower, but too unsightly to be used for decoration. The ugly duckling of the flower family. \n\n\nOh, but the secret it holds. Soak it in some water with the right companions and it surrenders its bouquet to use a corny flower metaphor. That unique hop flavor is the difference between a fine pale ale and more ordinary beers. \n\n\nDundee Pale Ale understands the secret of the hop flower—the power to turn an ordinary beer into something extraordinary. \n\n\nAnd the power to make you indescribably hoppy. \n\n\nA wonderfully balanced true pale ale. Cascade, Tomahawk, and Amarillo hops create a citrusy aroma with a smooth, crisp finish. A subdued malt character nicely complements the hop complexity and produces an orangey amber hue.","ibu":41,"name":"Dundee Pale Ale","state":"New York"},{"abv":7.398998310499189,"address":"4366 Huntington Dr","category":"German Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"A truly delicious beer, Heffevenom is a medium bodied, lightly hopped wheat beer brewed in the true Bavarian tradition. Our brewers combine mountain pure water, select wheat and domestic malted grain, hops and yeast to create a highly refreshing ale with a pronounced banana and clove bouquet. Perfect with a slice of lemon as garnish.","ibu":106,"name":"Heffevonom Bavarian Wheat","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":14.889731284931148,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A Scotch Ale, “brewed with 100% Michigan barley and a blend of Pacific Northwest and Michigan hops.”","ibu":91,"name":"Bell's Christmas Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"If you like your beer on the bitter side then this one's for you. This American Style IPA uses Pale Ale, Munich, and Caramunich malt blest with Cascade, Chinook, Willamette and Centennial (dry hopped) hops to create a brew that is fit for the crazy American hop addicts.","ibu":2,"name":"Broken Paddle","state":"Michigan"},{"abv":5.5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A classic American style pale ale. A well balanced, light copper colored, medium bodied ale with a distinctive hop bitterness and aroma.","ibu":87,"name":"Mackinac Pale Ale","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5.1599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"For hops lovers - this bitter ale is pale colored and made with a blend of 6 different malts and 5 different hops. This ale is dry-hopped for extra flavor and aroma.","ibu":81,"name":"Holy Cow IPA","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bitters are popular pub beers in England and are closely related to the more well known pales ales. Saranac Extra Special Bitter has a rich, malty taste balanced by the pleasant bitterness of Williamette Hops. The finish is dry with a hint of the Foral English Fuggle and Spicy Saaz hop. Enjoy!","ibu":72,"name":"Saranac Extra Special Bitter","state":"New York","website":"http://www.saranac.com"},{"abv":5.5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"White ale brewed with apple must\n\n\nRedolent of ripe Granny Smith apples, this\n\nunique white ale pleases the palate with a\n\ndelicate balance of fruit and spice notes and\n\njust a hint of sweetness.\n\n \n\nÉphémère apple satisfies with each sip and\n\nrefreshes in all seasons, especially when\n\npaired with an artisan cheddar cheese, pork\n\ntenderloin served with apple chutney or Vidalia\n\nonion soup.\n\n\nWe developed the Éphémère (Ephemeral)\n\nseries to feature a seasonal fruit in a\n\nrefreshing, lightly spiced white ale.\n\n \n\nThe label depicts a fairy, an ephemeral spirit\n\nassociated with fruits picked at the peak of\n\nripeness during each harvest season. \n\nÉphémère apple flavor is brewed with apple\n\nmust, which consists of the freshly-pressed\n\njuice from apples.\n\n\nEnjoy this beer 'alfresco' while dining in the\n\nafternoon sun, relaxing at a family gathering or\n\nat a picnic in the back yard.\n\n\nWinner of 3 Gold Medals from the Beverage\n\nTesting Institute since 2002","ibu":20,"name":"Éphémère Pomme","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8.5,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A strong, fruity, belgian-style trippel 8.5% alc./vol.\n\n\nOur aptly named Christmas Ale is based on the strong beers traditionally brewed by Belgium's trappist monasteries. Trippel is typically at least 8% alc./vol. and has a light golden colour. Because of its high strength this beer has an intensely fruity palate. Up front it has a honeyish sweetness but the finish is dry and champagne-like. Most weary Christmas shoppers would be well advised to benefit from the warmth and 'ho-ho-ho factor' that only a beer of the Biltzen's calibre can provide.","ibu":65,"name":"Blitzen Christmas Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":4.9000000954,"country":"Israel","description":"The best beer ever!","ibu":34,"name":"Goldstar","website":"http://www.tempo.co.il/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob is a malty and full-bodied lager with an elegant European hop profile.\";\"0","ibu":29,"name":"Michelob Beer","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.1999998093,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A big malty ale brewed in the style of English Old Ales. Deep ruby in color and lightly bittered with a big malty backbone.","ibu":76,"name":"Arthur's English Old Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.8000001907000005,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":93,"name":"Perfect Stout","state":"New Jersey"},{"abv":5.743336960131518,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":55,"name":"Esker Alt","state":"Wisconsin"},{"abv":4.5999999046,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":119,"name":"Red Lager","state":"Wisconsin"},{"abv":9.57718921865235,"address":"3560 Oakwood Mall Drive","category":"North American Lager","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":25,"name":"Whitetail Wheat","state":"Wisconsin"},{"abv":1.294621219026304,"category":"North American Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":13,"name":"Derailed Ale","state":"Wisconsin"},{"abv":6,"address":"Val Dieu 225","category":"Belgian and French Ale","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","description":"This authentic Abbey Ale is based on the recipe perfected centuries ago by the monks of Abbey Du Val-Dieu.","ibu":33,"name":"Blonde","state":"Lige"},{"abv":11,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":41,"name":"Castaway Barley Wine Winter Ale","state":"Washington"},{"abv":4,"address":"404 South Third Street","category":"North American Lager","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":107,"name":"Del Rio Lager","state":"Washington"},{"abv":4.8000001907000005,"address":"1253 Johnston Street","category":"German Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":42,"name":"Haupenthal Hefeweizen","state":"British Columbia"},{"abv":3.37380766840639,"address":"Astridlaan 134","city":"Assebroek","coordinates":[51.1968,3.2527],"country":"Belgium","ibu":73,"name":"Vuuve","state":"West-Vlaanderen"},{"abv":11.355779954245431,"address":"200 East Campbell Avenue","category":"North American Lager","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":63,"name":"Kristall Weizen","state":"California"},{"abv":3.622084315356621,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":75,"name":"Eccentric Belgian Wheat","state":"Nebraska"},{"abv":5,"address":"Unit 21-24 Batten Road Industrial Estate","city":"Salisbury","country":"United Kingdom","ibu":56,"name":"Summer Lightning","state":"Wiltshire"},{"abv":7.5,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Imperial Hefeweizen","state":"California"},{"abv":5.1999998093,"address":"3525 Liberty Avenue","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Gold Medal Winner of the Great American Beer Festival. Our beer is fairly dark in color, but don’t be afraid. It is a perfect example that dark beers are not always strong beers. The body is surprisingly mellow, and the alcohol content is a bit lower than most people might think. It has a wonderfully clean and roasty aroma. Hop bitterness levels are kept in line, but is has a noticeable hop flavor.","ibu":88,"name":"Pious Monk Dunkel","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":14.506308021778977,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":17,"name":"Prescott Pale Ale","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":6,"address":"1814 Second Street","category":"North American Ale","city":"Santa Fe","coordinates":[35.6631,-105.966],"country":"United States","ibu":17,"name":"Second Street IPA","state":"New Mexico","website":"http://www.secondstreetbrewery.com/"},{"abv":7,"address":"190 5th Street","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named after a drawing of an old cedar tree growing out of a cliff on the Lake Superior shoreline done by friend and artist Ladislav Hanka, this beer is copper colored and hopped with American Centennial and English East Kent Golding hops.","ibu":32,"name":"Old Cedar","state":"Michigan","website":"http://liverybrew.com/"},{"abv":2.0049845658783383,"address":"1634 18th Street","category":"Other Style","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A light German-style beer made with Anaheim chiles and smoked Ancho peppers. A 2006 Great American Beer Festival Bronze Medal Winner in the Fruit and Vegetable Beer category anda Wynkoop specialty.","ibu":92,"name":"Patty's Chile Beer","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":5,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"The American hop Cascade is used to give this brew its classic American Aroma. Pale and Crystal malt from the U.S. are used to give this beer a medium body and high hop flavor. This beer goes down easily and opens the door to a world of microbrewed beers.","ibu":60,"name":"Crooked Door","state":"Michigan"},{"abv":5.1599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Named after Donovan's, a 19th century Irish restaurant in downtown Waterbury. This medium-bodied, red-colored ale has a nice hop flavor and aroma.","ibu":1,"name":"Donovan's Red","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.8000001907000005,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":70,"name":"Mickey's Ice","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":5.5,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Hefe-Weißbier is the best-selling beer by the Paulaner Brewery. Specially produced top-fermented yeast is what gives it its unmistakeable character: sparkling light, fruity, and just a tiny bit bitter. Because it is not filtered during the brewing process, it retains its originality and the many vitamins, minerals and trace elements.\n\n\nHefe Weissbier Naturtrüb:\n\n12.5% original wort; 5.5% alcohol; 44 kcal/100 ml","ibu":60,"name":"Hefeweizen","website":"http://www.paulaner.com/"},{"abv":5,"category":"German Lager","country":"Portugal","description":"\"Authentic Flavour\" Super Bock is the leading beer brand on the Portuguese market and is the only brand to have won 19 consecutive gold medals in the international contest \"Monde Sélection da la Qualité","ibu":43,"name":"SuperBock","website":"http://www.unicer.pt"},{"abv":18,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Dark, rich, roasty and complex, World Wide Stout has more in common with a fine port than a can of cheap, mass-marketed beer. Brewed with a ridiculous amount of barley. Have one with (or as!) dessert tonight!","ibu":15,"name":"World Wide Stout","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"This special coffee stout includes NAFTA approved, organic, shade grown coffee beans from Costa Rica, Indonesia, and Ethiopia roasted by the brewmaster at local coffee roaster Red Twig in Edmonds, Wa. Hints of your morning cup are evident in the aroma, flavor and finish of this breakfast beer (but not just for breakfast). \n\nNo Chemicals, Additives or Preservatives.","ibu":8,"name":"Jittery Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.114757428519072,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Dedicated to Spanish author Juan de la Cueva, who, in 1575, wrote of a an dish that combined seedless chipotles with beer: Chipotle Ale is based on Rogues American Amber Ale, but delicately spiced with smoked jalapeno (chipotle) chile peppers. Deep amber in color with a tight head, rich malty aroma, delicately smooth and crisp flavor, and subtle chipotle chili finish. Chipotle Ale is created from Northwest Harrington, Klages, and Maier Munich Malts; Willamette and Cascade hops; and Chipolte (smoked jalapeno) Peppers. Available in a 22-ounce (12/case), 12-ounce (24 loose/case) screened bottles, and on draft. Blend it with Rogue Chocolate Stout and create a Mole black and tan!","ibu":55,"name":"Chipotle Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":12,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Batch 7000 is part of our commemorative series celebrating our progress with special brews. Our 7,000th batch is a special recipe to be brewed only once.","ibu":105,"name":"Batch 7000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":10.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"The vintage port of American stout. A good ale for the cellar. Well suited for November storms and trips across the Sahara.","ibu":25,"name":"Expedition Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"Belgian and French Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"This easy drinking beer is made with pale and \n\nMunich malts, wheat, honey and fresh raspberry puree. Honey Raspberry Ale is refreshing and mildly sweet.","ibu":88,"name":"Honey-Raspberry Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This Belgian-style Abbey Dubbel is an exceptionally complex beer with many interwoven flavors. This classic-style Abbey beer features an immense head with a fruity nose and a generous body. Malty in the middle, the beer features a clean, almondy dry finish and a slight alcohol warmth. More like a wine than a beer—it has a lot of the qualities of a fine Burgundy.\n\n\nBeer writer Michael Jackson has praised the Flying Fish Dubbel as \"a wonderful example of the style.\";\"0","ibu":44,"name":"Belgian Abbey Dubbel","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6.816556934761864,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":92,"name":"Birch Wood Ale","state":"Wisconsin"},{"abv":4.3000001907,"address":"238 North Boundary Street","category":"Irish Ale","city":"Wasilla","coordinates":[61.5816,-149.439],"country":"United States","ibu":20,"name":"Pioneer Peak Porter","state":"Alaska"},{"abv":10,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":41,"name":"K-O Blond Beer","state":"Oost-Vlaanderen"},{"abv":10.579400200546713,"address":"123 East Doty Street","category":"North American Lager","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":62,"name":"Pro-Tel Memorial Malt Liquor","state":"Wisconsin"},{"abv":4.50292201974513,"address":"7791 Egg Harbor Road","category":"Other Style","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":57,"name":"Raspberry","state":"Wisconsin"},{"abv":5.758576773419134,"address":"Lichtenfelser Strae 9","category":"German Ale","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":77,"name":"Kapuziner Gold","state":"Bayern"},{"abv":6.483738356828633,"city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":33,"name":"Stronghold Pilsner","state":"Wisconsin"},{"abv":7,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Our interpretation of a legendary style ale is not for the timid. Assertively hoppy and dangerously seductive. A skillful blend of three premium barley malts with generous amounts of Northern Brewer and Cascade Hops creates a special ale to satisfy even the most demanding palate.","ibu":23,"name":"High Seas IPA","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":8.192483471785616,"address":"3703 North Main Street","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":49,"name":"Kolsch","state":"Indiana"},{"abv":6,"address":"237 West Butler Avenue","category":"Irish Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"Rich and smooth on the pallate this ale is a near perfect \"Irish Red\". A variety of hops, Mt. Hood, Liberty & Fuggles combined with some roasted barley make an agreeable brew.","ibu":101,"name":"Crabby Larry's Irish Red Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":5.1999998093,"address":"The Street","city":"Pentlow","coordinates":[52.081,0.6559],"country":"United Kingdom","ibu":4,"name":"Augustinian Ale","state":"Essex"},{"abv":4.9000000954,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Our Massatucky Brown Ale with a subtle raspberry flavoring","ibu":11,"name":"Raspberry Brown Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":13.577676229187633,"address":"23-1 Azumabashi 1-chome","category":"Irish Ale","city":"Tokyo","country":"Japan","ibu":12,"name":"Kuronama","state":"Kanto"},{"abv":1.3353741997691804,"address":"2027 13th Street","city":"Boulder","coordinates":[40.0187,-105.279],"country":"United States","ibu":67,"name":"Angry Monk","state":"Colorado"},{"abv":4.625054370168967,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":63,"name":"Pilsner","state":"Wisconsin"},{"abv":1.7799889371528321,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":78,"name":"Sunset Red","state":"Michigan"},{"abv":10,"address":"Rue de Maredsous, 11","category":"Belgian and French Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Moortgat's Maredsous 10 is an orangy-blond big sweet tripel nudging into a barley wine.","ibu":46,"name":"10","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":9.812754889971854,"address":"580 North Nimitz Highway","category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":62,"name":"Bumbucha Stout","state":"Hawaii"},{"abv":3.7499763846735155,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":39,"name":"Honey Weizen","state":"California"},{"abv":12.780675269088933,"category":"North American Lager","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":31,"name":"Mountain Wheat","state":"Nebraska"},{"abv":3.289757602569127,"address":"205 North Broadway","category":"North American Lager","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":19,"name":"Honey Wheat Ale","state":"Illinois"},{"abv":6.8000001907000005,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Raise your glass to the heavens in a toast to HOPS – the spice of beer! This classic American I.P.A. features the finest American hops to add a spicy, assertive, and citrusy character to its full-bodied, rich malt taste","ibu":20,"name":"Hoppin' To Heaven IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":12,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The transformation of Scratch #3-2007 to Splinter Gold has been a slow rest in oak wine barrels dosed with brettanomyces. During a two-year aging period the horsy flavors of the brett combined with the Westmalle yeast used during primary fermentation to create a complex blend of flavors. Bone-dry and 12% abv, Splinter Gold is highly carbonated.","ibu":109,"name":"Tröegs Splinter Beer Gold","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian blonde ale from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nThis organic blonde ale presents a nice yeasty nose, long-lasting head and a spicy, earthy note on the palate.","ibu":4,"name":"Brasserie De Brunehaut Bio Bière Blonde (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.0999999046,"address":"PO Box 1510","category":"Belgian and French Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Real Louisiana Satsumas, golden wheat, oats and the finest barley create Abita Satsuma Harvest Wit. Pale and cloudy, like the haze on a hot summer day, this white beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing. \n\n\nAbita Satsuma Harvest Wit is very versatile and can compliment a number of dishes. This brew pairs well with salads, fish, shrimp and lobster, as long as the dishes are not too spicy. Thai dishes, which often have citric notes in their flavor profile, would also perfectly compliment the orange flavors in Abita Satsuma Harvest Wit.","ibu":111,"name":"Satsuma Harvest Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":3.20313509302495,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A light copper-colored ale with moderate hoppiness which exhibits a spicy hint of fruit, notable maltiness and a medium body.","ibu":15,"name":"Standing Stone Amber Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":12,"address":"190 5th Street","category":"Belgian and French Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Brewmaster Steve took his Belgian Amber Ale and re-fermented it in a merlot cask with 100# of sweet Michigan cherries from Husteds Farm Market. He than moved the resulting beer into another cask with 30# of tart cherries. 5 fermentations due to wild yeast and 9 months later, we have our version of a Belgian Kriek. Named after our good friend and musician, April Verch.","ibu":30,"name":"Verchuosity","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.8000001907000005,"address":"8 Mt. Desert Street","category":"North American Ale","city":"Bar Harbor","coordinates":[44.3875,-68.2046],"country":"United States","ibu":9,"name":"Thunder Hole Ale","state":"Maine","website":"http://www.barharborbrewing.com/"},{"abv":4.5,"address":"2050 Yavapai Dr","category":"North American Lager","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":25,"name":"Forty-Niner Gold Lager","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.4000000954,"address":"186 James Fletcher Drive, Otahuhu","category":"North American Ale","city":"Auckland","coordinates":[-36.9489,174.821],"country":"New Zealand","description":"Supreme Champion Beer - New Zealand International Beer Awards","ibu":101,"name":"Epic Pale Ale","website":"http://epicbeer.com/"},{"abv":6,"address":"Metaalweg 10","category":"North American Ale","city":"Roermond","coordinates":[51.1684,6.0515],"country":"Netherlands","description":"Born as “Christoffel Bier” this was the first beer brewed by Christoffel. After the introduction of Christoffel Robertus, this beer was named Blond refering to the colour of the beer. Blond is a low-fermenting beer with 6% alc.vol.\n\n\nBlond has a full body, a very balanced taste and a beautiful bitterness due to a generous addition of fresh hop during the brewing-process. The aroma is fruity and Blond has a fresh taste with a pleasant, hoppy finish.","ibu":10,"name":"Christoffel Blond","website":"http://www.christoffelbeer.com"},{"abv":6,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"Dock Street Amber is a classic, top fermented ale and is the company flagship beer. \n\n\nIt is brewed with American Cascade hops and two row imported pale and caramel malts and then dry hopped. Our traditional brewing process gives this beer its subtle, complex and fruity character and its distinctive hop \"nose.\" The result is an exceptionally balanced premium full bodied ale that finishes clean and smooth on the palate. It appeals to gourmets and beer aficionados.\n\n\nOur goal in brewing the Dock Street Amber was to produce a phenomenal tasting American beer. At the time it was created, most all full-bodied beers were imports.\";\"0","ibu":96,"name":"Dock Street Amber","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":6.5,"address":"23 South Main Street","category":"Other Style","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This IPA is brewed with 35% rye malt. The crisp malt character is layered with Warrior hops. Dry-hopped with Warrior and Simcoe.","ibu":52,"name":"Revitalization Rye","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":3.7000000477,"category":"North American Ale","country":"Czech Republic","description":"Very good dark beer. Not as heavy as stout.","ibu":46,"name":"Breznak Dunkles/Dark","website":"http://drinksunion.qbizm.cz/de/pages/vyrobky_p_breznak.htm"},{"abv":4.5999999046,"address":"Route 4 & 100A","category":"German Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Long Trail Ale is a full-bodied amber ale modeled after the \"Alt-biers\" of Düsseldorf, Germany.","ibu":14,"name":"Long Trail Ale","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":6.620359904214924,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":114,"name":"Dos Equis Amber Lager","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Bold with a soft finish, our darkest beer has plenty of malt flavor with undertones of coffee and chocolate. The addition of oatmeal to the brew adds extra smoothness and a thick creamy head.","ibu":33,"name":"Blackstone Stout","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.5,"address":"312 North Lewis Road","category":"German Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":8,"name":"Instigator Doppelbock","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.1999998093,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":80,"name":"Cambonator Doppelbock","state":"Bayern"},{"abv":5.5999999046,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":14,"name":"Brown Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":3.107667200152997,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":44,"name":"Zwickelbier","state":"Baden-Wrttemberg"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":62,"name":"Harvest Ale 2005 (Sherry)","state":"Manchester"},{"abv":6.2696722089636285,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":27,"name":"Kölsch","state":"California"},{"abv":3.9000000954000003,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":70,"name":"Jack of Spades Schwarzbier","state":"Nebraska"},{"abv":10,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":101,"name":"Killer Penguin","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":7.115253719097091,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":109,"name":"Summertime Kölsch","state":"Illinois"},{"abv":5.859292912914658,"address":"61 US Highway 1 South","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":6,"name":"32 Inning Ale","state":"New Jersey"},{"abv":1.4765449586421897,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":82,"name":"Kayak Kölsch","state":"Minnesota"},{"abv":4.290216413275793,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":87,"name":"Oktoberfest","state":"Thüringen"},{"abv":12.633950539797418,"address":"1327 North 14th Street","category":"North American Lager","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":76,"name":"Port Washington Pier 96 Lager","state":"Wisconsin"},{"abv":8.5,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Once brewed in Britain for the Russian Czars, this tremendously rich and thick ale uses a profusion of burnt and caramel malts. A massive mouthful of dark roasted malt and coffee flavors finishes with hints of chocolate, caramel & licorice.","ibu":110,"name":"Sprecher Russian Imperial Stout","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":12.079945071877038,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":94,"name":"Stout","state":"California"},{"abv":4.8000001907000005,"address":"540 Main Street","category":"North American Ale","city":"Longmont","coordinates":[40.1688,-105.102],"country":"United States","ibu":1,"name":"Four Alarm Alt","state":"Colorado"},{"abv":7.590594074328957,"address":"375 Water Street","category":"Belgian and French Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"\"Tall and tan and young and lovely","ibu":46,"name":"Ipanema Summer White","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":0.8998670038858192,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":69,"name":"Pale Ale","state":"California","website":"http://www.lostcoast.com/"},{"abv":7.874334303593077,"category":"North American Ale","city":"Helena","coordinates":[46.5958,-112.027],"country":"United States","ibu":46,"name":"Wild West Beer","state":"Montana"},{"abv":6,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A very rich, dark bock beer. dark ruby in color with subtle tones of chocolate and burnt malt. It will warm you on a cold winter night and brighten your days. The perfect holiday gift for the beer drinker.","ibu":11,"name":"St. Nikolaus Bock Bier","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":9.271407586403516,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":50,"name":"Maple Nut Brown","state":"Nebraska"},{"abv":10,"address":"Durham DH7 0NT","category":"North American Lager","city":"Durham","coordinates":[54.8229,-1.7457],"country":"United Kingdom","ibu":92,"name":"Storm Super Premium Malt Liquor","state":"Durham"},{"abv":8.195461481972007,"address":"4301 Leary Way NW","category":"German Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":6,"name":"El Jefe Weizen Ale","state":"Washington"},{"abv":6.1999998093,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":91,"name":"Avatar Jasmine IPA","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":5.5,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":54,"name":"Portage Bay Pilsener","state":"Washington"},{"abv":0.3916115750428284,"address":"Meckatz 10","city":"Heimenkirch","coordinates":[47.6308,9.8889],"country":"Germany","ibu":46,"name":"Weiss-Gold","state":"Bayern"},{"abv":9.288031962475841,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":50,"name":"Blarney Stone Stout","state":"Kansas"},{"abv":6,"address":"High Street","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":11,"name":"Winter Welcome 2007-2008","state":"North Yorkshire"},{"abv":10.81883647601704,"city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":30,"name":"Super Natural ESB","state":"Oregon"},{"abv":9.302607423134898,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":2,"name":"Yuel Fuel","state":"Colorado"},{"abv":0.5843980462740206,"address":"135 North Highway 101","city":"Solana Beach","coordinates":[32.9908,-117.272],"country":"United States","ibu":61,"name":"Mother of All Beers","state":"California","website":"http://www.pizzaport.com"},{"abv":5.089900448331983,"address":"102 North Center Street #111","category":"Irish Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":117,"name":"Porter From Hell","state":"Illinois"},{"abv":8,"address":"980 NE Fourth Street","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":94,"name":"Tannen Bomb","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":5.4549921551873295,"category":"Irish Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":20,"name":"McBride Porter","state":"Iowa"},{"abv":6.095931363186695,"address":"392 George Street","category":"North American Ale","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":103,"name":"Altruistic American Ale","state":"New Jersey"},{"abv":5.3000001907,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"We at FiftyFifty believe that beer is good. Especially this beer. Manifesto is one of FiftyFifty's flagship beers. This beer is a delight for those who take pleasure in craft beers and are looking for something that they can enjoy a few pints of. Manifesto has a restrained malt backbone of flavor with mild biscuit and caramel notes, and the hop character is light to moderate with mild earthiness evolving to a slightly more moderate citrus/piney finish. This is a beer of principle.","ibu":118,"name":"Manifesto Pale Ale","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":7.707691185512015,"address":"720 Main Street","category":"North American Lager","city":"Frisco","coordinates":[39.5765,-106.094],"country":"United States","ibu":77,"name":"Old Smoky","state":"Colorado"},{"abv":10,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Leviathan Imperial IPA will challenge your senses and your palate. As the vibrant aroma rushes out of your glass you will notice the blend of piney and tropical fruit notes. At first sip, this big beer starts with apowerful hop bitterness up front and an aggressive hop flavor and character throughout. \n\n\nLeviathan Imperial IPA is brewed with tons of pale malt and just enough caramel malt to provide a sweet malt body to balance the hop intensity. We used copious amounts of a variety of hops including Chinook, Centennial, Simcoe, and Amarillo at various points during the boil to create a complex hop flavor and clean lingering bitter finish. We then fermented the beer with Harpoon’s own versatile proprietary yeast. Finally, we dry hopped at a rate of over 1 lb a barrel to produce this beer’s massive aroma.","ibu":94,"name":"Harpoon Leviathan","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":6.1999998093,"address":"1940 Olney Avenue","category":"Other Style","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"Exit 11 Hoppy American Wheat Ale is the second in their wildly popular Exit Series of Big Bottle Beers. Exit 11 is a confluence of styles and ingredients, just as Exit 11 is the point in New Jersey where the Garden State Parkway, the New Jersey Turnpike and several other highways come together.\n\n\n“Exit 11 is the point on the Turnpike where the Garden State Parkway branches off and takes hundreds of thousands of travelers to the renowned Jersey Shore,” says Flying Fish Founder Gene Muller. “Our Exit 11 Wheat Ale is a fresh, citrus-y summer beer perfect for beachgoers and those who only wish they were headed ‘downa shore’.”\n\n\nExit 11 is an American-style wheat beer brewed with English ale yeast and three Pacific Northwest hops, Columbus, Palisade and Amarillo. It is brewed with 50% Belgian pale malt and 50% white wheat, and is an ideal summer thirst quencher, with its bouquet of tangerines and apricots. Exit 11 is available only during this one-time release, and only until it sells out across New Jersey, Pennsylvania and Delaware.","ibu":22,"name":"Exit 11 - Hoppy American Wheat","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5,"address":"Kendlerstraße 1","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Paracelsus Zwickl is a natural beer specialty with a mellow impression on the tongue. The aftertaste unfolds a slight bitterness. Zwickl-beer is not filtered and therefore shows some cloudiness due to rests of yeast, minerals and trace elements.\n\n\nThis very special beer is brewing at its best using a sophisticated recipe combined with love and dedication. Stiegl only uses excellent ingredients from Austrian agricultural suppliers, applying biological techniques. As a result of this Paracelsus Zwickl beer was awarded the Bio-Austria certificate. Bio-production is subject to strict yearly controls by “Austria-Bio-Guaranty”.\n\n\n“Bier is a really divine medicine”. This quotation comes from Paracelsus (1493 – 1541). He was a well known physician, forward thinker and visionary who lived in Salzburg for many years. He found out that beer had healing powers.","ibu":97,"name":"Paracelsus Zwickl","website":"http://www.stieglbrauerei.at/"},{"abv":11.498267270473928,"address":"1022 Main Ave.","category":"British Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"One of these beers is available all of the time. Our heartiest beers emphasize roasted malts and the generous use of hops. Creamy, smooth and always nitrogenated, these beers are nearly a meal or a dessert in themselves.","ibu":10,"name":"Iron Horse Oatmeal Stout","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":8.653963673828185,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":9,"name":"Timmermans Gueuze","website":"http://www.anthonymartin.be/"},{"abv":4.315342368724711,"address":"2 Sagamore Street","category":"British Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Tavern Ale is a traditional English Bitter, dry bodied and light in color. This sessions ale utilizes Northdown and Kent Golding Hops. Tavern Ale is the creation of Assistant Brewer Adrian Bethel.","ibu":61,"name":"Cooper's Cave Tavern Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":6,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Resinous hop character and bitterness balance the rich carmel malt base. We took it a step further and Amarillo dry-hopped the brew to 45 ibu's, creating refreshing and savory hop flavors and aromas. Is it red IPA? That's your call.","ibu":71,"name":"Hop Hed Red Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":5,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":44,"name":"Feuerwehrmann Schwarzbier","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.8000001907000005,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"The second beer of the Brewmaster's reserve line, Saison de Brooklyn is brewed in the style produced by old farmhouse breweries in Belgium and France. Well-hopped and fermented to a crisp dryness, Saisons were brewed in the spring to sustain farmers through the summer. Saison de Brooklyn is boldly hoppy, dry and flinty, with a bright spicy, citric aroma and pillowy white head. This beer has remarkable versatility with food, complementing spicy dishes particularly well.","ibu":100,"name":"Saison De Brooklyn","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":4.9000000954,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"The rich mahogany hue of the Nut Brown is the first thing you will notice. You'll find subtle hints of both chocolate and coffee. We delicately blend chocolate and caramel malts with four others to make this flavorful, easy drinking beer. The malt character will appeal to those looking for a moderately dark ale, but the smoothness is what will surprise all.","ibu":68,"name":"Nut Brown","state":"New York"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"British Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Mother Earth is the rich fertile “living” planet. Our EARTH combines pale and dark malts for essential body. Cocoa nibs—decadent chocolate in its most elemental form—add distinction. Lush lactose creates incredible creaminess. But Earth gains amazing ground with extensive aging on Bergenfield extra dark cocoa.","ibu":39,"name":"Earth - Belgian Style Chocolate Milk Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4,"address":"Route 4 & 100A","category":"Other Style","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Light & refreshing with a hint of blackberry at the finish makes this beer a real thirst quencher. For the health conscious, Blackbeary Wheat has less than 6 grams of carbs and contains 0 fat.","ibu":5,"name":"Blackbeary Wheat","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":13.47914371799275,"address":"60 Ship Street","category":"North American Lager","city":"Providence","coordinates":[41.819,-71.4097],"country":"United States","description":"Made on Honor, sold on Merit. Flavorful lager.","ibu":52,"name":"Narragansett Lager","state":"Rhode Island","website":"http://www.narragansettbeer.com"},{"abv":9,"address":"Route de Charlemagne 8","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Named Grande Réserve in 75 cl (25.4 fl.oz.) bottles, it is principally distinguished by its character of a strong beer. \n\n\nThis is a beer whose fragrance of fresh yeast with a light, flowery rosy touch is especially pleasant. \n\n\nIts flavour, noticed when tasting it, only accentuates the pleasant sensations perceived in the aroma , while revealing a light but pleasant touch of roasted malt.\n\n\nThis top fermented Trappist beer , refermented in the bottle, is not pasteurised.","ibu":52,"name":"Chimay Grand Reserve(Chimay Blue)","website":"http://www.chimay.com"},{"abv":14.294493205012655,"address":"30 Germania Street","category":"North American Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Great tasting yet drinkable, with a clean smooth finish. Sam Adams Light® is not just a lighter version of our Samuel Adams Boston Lager® but rather the culmination of over two years of tireless research and brewing trials to create a flavorful Light beer. And it has proved to be worth the wait. Brewed using only the finest two row malt and German Noble hops it has a smooth, complex roasted malt character that is superbly balanced with the subtle orange fruit notes of the Noble hops. Sam Adams Light® finishes crisp and smooth without any lingering bitterness, leaving you yearning for more.","ibu":73,"name":"Sam Adams Light","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":9.883399350715838,"category":"North American Ale","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":103,"name":"Last Stop Stout","state":"Wisconsin"},{"abv":3.9000000954000003,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":9,"name":"Refreshing Summer Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":11.110941885915263,"category":"North American Lager","city":"Collegeville","coordinates":[40.1857,-75.4516],"country":"United States","ibu":86,"name":"Peckiomen Pils","state":"Pennsylvania"},{"abv":13.469977094570936,"category":"Irish Ale","city":"Albuquerque","coordinates":[35.0845,-106.651],"country":"United States","ibu":54,"name":"Plaza Porter","state":"New Mexico"},{"abv":9.363277384689855,"category":"North American Ale","city":"Blue Ash","coordinates":[39.232,-84.3783],"country":"United States","ibu":33,"name":"Y2KIPA","state":"Ohio"},{"abv":1.3316773058548748,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":47,"name":"Pale Ale","state":"California"},{"abv":5.0999999046,"address":"231 San Saba Court","category":"North American Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Smooth blend of malt, citrus and fruit","ibu":56,"name":"Firemans #4","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Stout was first introduced by Guinness in Ireland as \"Extra Stout\" (a stronger version of their Porter). Later, the stronger Imperial and Double Stouts emerged. Sweet, Milk, and Oatmeal Stouts are English adaptations with less alcohol and less bitter then the dry Irish Stouts. Victorian England recognized Oatmeal Stouts nutritional value and it is traditionally the drink of choice for nursing mothers and athletes. It is a beer equally at home with oysters as it is with a homemade pizza and freshly tossed green salad (or as a float over ice cream).\n\n\nRogues Shakespeare Stout received a 99, the highest score of the 309 beers in 44 categories at the 1994 World Beer Championships. The June/July 1998 issue of Mens Journal included Rogue Ales Shakespeare Stout as one of \"The 100 Best Things to Eat in America.\"Based on Stuart Kallens book, \"The 50 Best Beers in the World\", Shakespeare Stout was ranked the third best beer in the world and best American Beer--which makes it the Worlds Best Stout!\n\n\nRogues Shakespeare Stout is ebony in color, a rich creamy head and a mellow chocolate aftertaste. It is made from Northwest Harrington, Crystal, and Chocolate malts, roasted barley and rolled oats, along with Cascade hop. Shakespeare Stout is available in the classic 22-ounce bottle, a commemorative 3-litre bottle with ceramic swing-top, and on draft.","ibu":29,"name":"Shakespeare Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Hoppiest Brew Works beer ever? The smell of grapefruit, a sweet malt flavor, and oh by the way, lots of hop bitterness. Brewed in the tradition of West Coast ales, we have put loads of malt and hops in our kettle to come up with this sensational ale. Brewed with pale, and crystal malts, hopped with Tomahawks for Yakima Valley, WA. This beer styled has made many a microbrewery famous and this one is sure to please all those who love hops.","ibu":18,"name":"Hop Explosion","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":5.3499999046,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"rk in color yet medium bodied. Rich and smooth.\n\nSamuel Adams® Brown Ale is a study in flavor, body, and style. Supported by an interesting blend of malts, it shines with a deep mahogany luster. The roasted malt blend is complex and deep as well, with notes of biscuit, nut and caramel. The hops are imported from Europe; Noble Spalt from Germany and citrusy Goldings, a traditional British ale hop selected from a single farm in East Kent. With moderate hop bitterness, a deep malt body, and a fruity ale fermentation character, Samuel Adams® Brown Ale satisfies the soul and doesn","ibu":40,"name":"Samuel Adams Brown Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":4.5,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"Adnams Suffolk Special Bitter, at 4.5% alcohol by volume, is a dry, crisp, refreshing, and distinctly hoppy example of its style.\n\n\nThis beer is also available in some markets in tradtional cask form, as Adnams Bitter. At only 3.7% alcohol, Adnams Bitter is the classic English 'ordinary,' though we think you'll agree that there's full of flavor.\n\n\nDespite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain’s fastest growing brewery over the last two years. To top it off, Adnams’ head brewer was recently chosen as Britain’s Brewer of the Year by a panel of his peers.","ibu":76,"name":"Adnam's Suffolk Special Bitter","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":11.800000191,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"First released in March 2007, Blasphemy is our award winning QUAD aged in bourbon barrels. But not overaged, so we've picked up gentle vanilla oaky notes which complement rather than supercede the complex qualities that already make QUAD such an incredible beer. Expected to be an annual Spring seasonal, supplies are limited. ABV is 11.8%.","ibu":87,"name":"Blasphemy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.9400000572,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A smooth, refined version of a classic ale.\n\nSamuel Adams® Boston Ale was first brewed to celebrate the opening of our Boston Brewery. Like Samuel Adams Boston Lager®, it was an old family recipe that was rescued by Jim Koch from his father's attic. Samuel Adams® Boston Ale, a Stock Ale, has a complex, caramel malt character balanced with distinct spicy and herbal hop notes. Our proprietary ale yeast imparts a variety of fruit and ester notes in both the nose and flavor which are indicative of the style.","ibu":2,"name":"Samuel Adams Boston Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":10,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"The Mighty Fish Brewers first produced Ten Squared Anniversary Ale to celebrate Fish Brewing Company’s tenth anniversary. The ale was so good and the response to it so overwhelmingly positive that it has become the crown jewel of REEL ALEs. Ten different hops: Horizon, Chinook, Columbus, Willamette, Tradition, Northern Brewer, Santiam, Tettnanger, Cascade and Golding, in the order of their use -- give Ten Squared a unique hop character which has to be tasted to be believed. \n\n\nEven with 100 IBUs, this brew sports a strong malt backbone. Two-row Pale, Caramel 40, Caramel 75, Special B and Aromatic malts impart remarkable balance for such a hop monster. This is smooth ale with surprising similarities to ten year old malt whiskey. Produced for the holidays, 10 102 Anniversary Ale is usually available into late spring.","ibu":31,"name":"10 Squared (10²)","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.248118193225821,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This American wheat beer is infused with 20% wildflower honey resulting in a light, semi-sweet refreshing beverage. This beer represents the next evolution of Sophie’s Sparkling Ale as we have added the wheat base, essentially combining two of our most popular beers. This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg.","ibu":55,"name":"Wildflower Honey Wheat","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.3000001907,"address":"50 N. Cameron St.","category":"German Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A special German wheat ale yeast produces clove and banana flavors during fermentation leaving this unfiltered beer with an incredibly spicy and fruity complexity!\n\n\nOur Brewmaster has acquired many medals at the Great American Beer Festival for this beer style. A difficult, four-step infusion mash schedule produces the complexity of this traditional beer style.","ibu":20,"name":"Hinterland Hefe Weizen","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":3.3558864591563795,"city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":78,"name":"Hula Girl Pale Ale","state":"Hawaii"},{"abv":10.972609588841658,"address":"2380 Larsen Drive","city":"Camino","coordinates":[49.1482,-122.862],"country":"United States","ibu":65,"name":"Best Bitter Ale","state":"California"},{"abv":7.878736368799545,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":63,"name":"Triple Nickel Irish Stout","state":"Illinois"},{"abv":12.58198400251178,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":15,"name":"Ringneck Red Ale","state":"South Dakota"},{"abv":5.1999998093,"address":"550 South Wisconsin Avenue","category":"North American Ale","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"A standard American-style beer and our flagship brand. A small amount of corn is added to the grist to give the brew a smooth character. Features a rich, golden color and a light malt character balanced with a mild dose of hops.","ibu":81,"name":"Big Buck Beer","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":6.5,"address":"66 East Eighth Street","category":"British Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"The Poet has a rich, smooth malt character enveloped in tones of roast and chocolate. A soft mouth-feel brings luxurious flavors and soothing aroma. It pairs wonderfully with earthy flavors such as mushrooms and beef, while remaining the perfect accent to any chocolate.","ibu":5,"name":"The Poet","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":14,"address":"Eggenberg 1","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"Brewed only once a year on December 6. Samichlaus is aged for 10 months before bottling. This beer is perhaps the rarest in the world. Samichlaus may be aged for many years to come. Older vintages become more complex with a creamy warming finish.","ibu":114,"name":"Samichlaus Bier 2006"},{"abv":5.5,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This traditional Witbier (Wheat beer) has been developed in cooperation with Master Brewer Pierre Celis, the Godfather of Hoegaarden and Celis White. \n\n\nThis beer as well has a second fermentation in the bottle, giving this beer its specific taste (5.5% alcohol content).","ibu":77,"name":"St. Bernardus Witbier","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A light to medium bodied deep golden ale that starts with an elegantly creamy malt complexity and ends with a firm but understated hop finish that balances the initial sweetness with a touch of bitterness.","ibu":57,"name":"Orlio Common Ale","state":"Vermont","website":"http://www.orlio.net/"},{"abv":8.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","description":"I have crafted this very special ale from the finest Challenger and Northdown hops, Maris Otter malted barley, and of course, our unique yeast, to create a truly extraordinary limited edition brew.\n\n\nIndividually packed and numbered, this bottle is one of only one hundred and forty-five thousand produced.","ibu":114,"name":"Vintage Ale 2008","state":"London","website":"http://www.fullers.co.uk/"},{"abv":4.5,"address":"1714 Camus Lane","city":"Madison","coordinates":[43.0844,-89.4761],"country":"United States","ibu":13,"name":"Fauerbach Amber Lager","state":"Wisconsin","website":"http://www.fauerbachbrewery.com/"},{"abv":4.5999999046,"address":"470 Prospect Village Dr.","category":"Irish Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Porters are dark ales without the roasted malt character of a stout. Our porter is a brown porter with a very smooth, balanced profile.","ibu":88,"name":"Estes Park Porter","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":12.619842142756486,"address":"1430 Washington Avenue South","category":"Other Style","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Our popular summer seasonal brewed with honey, orange, and lemonrass.","ibu":20,"name":"Thunderstorm","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.4000000954,"address":"D-73525 Schwbisch Gmnd","category":"German Lager","city":"Schwbisch Gmnd","country":"Germany","ibu":45,"name":"Trompe La Mort","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"7160 Oliver Street","category":"North American Lager","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":22,"name":"Cream Ale","state":"British Columbia"},{"abv":5.1999998093,"address":"Friedhofstrae 20-36","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":30,"name":"Edel-Spezial","state":"Baden-Wrttemberg"},{"abv":12,"address":"Emil-Ott-Strasse 1-5","category":"German Lager","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":114,"name":"Aventinus Weizen-Eisbock","website":"http://www.schneider-weisse.de"},{"abv":1.161710834187617,"address":"2880 Wilderness Place","category":"British Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":19,"name":"GABF 25th Year Beer","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.090260629264234,"address":"1001 16th Street #A-100","category":"North American Ale","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":1,"name":"Falcon Pale Ale","state":"Colorado"},{"abv":14.000923071452945,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":111,"name":"Sugar River ESB","state":"Wisconsin"},{"abv":5.504681143027708,"category":"British Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":46,"name":"Deep Powder Winter Ale","state":"Washington"},{"abv":6.841285931624873,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":36,"name":"Michelob Hefeweizen","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.4000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":29,"name":"Kapuziner Kristall-Weizen","state":"Bayern"},{"abv":8,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":21,"name":"Lucifer","state":"West-Vlaanderen"},{"abv":10.01990248985571,"address":"243 North Gaither Street","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":11,"name":"Mojo Ale","state":"Oregon"},{"abv":5,"address":"Westgate Street","category":"Other Style","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","description":"Based on a traditional Irish recipe from county Wexford that dates back to 1810, we use only the best ingredients to ensure that our Wexford Ale has a smooth mellow creaminess we believe you will enjoy.","ibu":30,"name":"Wexford Irish Cream Ale","state":"Suffolk"},{"abv":7.111320380288555,"address":"Carretera a Puerto Corts","category":"North American Lager","city":"San Pedro Sula","country":"Honduras","ibu":76,"name":"Port Royal Export"},{"abv":5.9244879771451515,"address":"26 Old Cross","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":95,"name":"AK Original Bitter","state":"Hertfordshire"},{"abv":11.134938400233406,"address":"1000 Great Highway","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":26,"name":"Essex S.O.B.","state":"California"},{"abv":12.69675749093929,"category":"Irish Ale","city":"Wauwatosa","coordinates":[43.0495,-88.0076],"country":"United States","ibu":4,"name":"Badger Porter","state":"Wisconsin"},{"abv":5.6999998093,"address":"45980 Waterview Plaza","category":"North American Ale","city":"Sterling","coordinates":[39.0324,-77.4097],"country":"United States","description":"A fruity, copper-colored ale with a firm maltiness & dry hop.","ibu":63,"name":"Great American's Restaurant Pale Ale","state":"Virginia","website":"http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"},{"abv":5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Royal Challenge Premium Lager is the second largest selling mild beer in India. Royal Challenge is brewed with the choicest 6 malt barley. Its long brew duration provides it with a distinct, smooth taste and rich flavour. It has all the hall marks of a great beer - Color that is golden honey, taste that is smooth and crisp, lace that sticks to the wall of the glass. Royal Challenge Premium Lager is the beer for the discerning who have the confidence to make their choices based on their superior taste and knowledge rather than follow the crowd.\n\n\n\nhttp://www.sabmiller.in/brands_royal-challenge.html","ibu":3,"name":"Royal Challenge","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":11.52780633285306,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \"Cousin Jack\" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin!","ibu":35,"name":"Bourbon Barrel Aged Cousin Jax","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.8000001907000005,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"The Hoffmann Helles (pronounced Hell-es), which is German for \"bright\" is a pleasant and easy to drink summer beer with a bready/grainy taste.","ibu":3,"name":"Climax Helles","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":7,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"Irish Ale","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":18,"name":"Baltika 6 Porter","state":"Sankt-Peterburg"},{"abv":6.0999999046,"address":"1634 18th Street","category":"North American Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A dark, deeply roasted and full-bodied ale. Rich with kisses of chocolate, coffee and oats, it's a glorious version of an American-style stout. A longtime house favorite.","ibu":0,"name":"Sagebrush Stout","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":11.245314905150034,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"A bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia.\n\n\n A spiced saison with chamomile, rosemary and black pepper.","ibu":42,"name":"Saison Athene","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":5.5,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"\"O'zapft is!\" The cry of happy beer drinkers at the start of the Munich Oktoberfest, which in German means \"The keg is tapped!\" Rahr's Oktoberfest Celebration Lager is a traditional Marssen style Oktobefest lager - dark amber in color, super smooth, medium body with a sweet malty finish. True to tradition, this is a classic Oktoberfest Lager.","ibu":105,"name":"Rahr's Oktoberfest","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":11.343229998449742,"address":"1 Old Brewery Lane","category":"North American Lager","city":"Formosa","country":"Canada","ibu":104,"name":"Waterloo Dark","state":"Ontario"},{"abv":8.6999998093,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Gordon is a hybrid version of strong ale, somewhere between an Imperial Red and a Double IPA. We make it with six different malts and three types of hops, then dry-hop it with a mutha lode of Amarillo hops. It is 8.7% alcohol by volume, and has 85 International Bittering Units. \n\n\nIt features a gooey, resiny aroma and a luscious mouthfeel. Gordon is brewed with dash of chocolate malt in it, to round out its load of hops and balance the beer. The result is an assertive yet exceptionally smooth version of strong beer.\n\n\nWe brew Gordon in tribute to the late Gordon Knight. In addition to opening some of Colorado’s first microbreweries, Knight was a Vietnam vet, grade-A citizen, and huge promoter of craft beer. He lost his life in 2002 while fighting a wild fire outside of Lyons, Colorado.\n\n\nOriginally our winter seasonal beer, it has become a cult favorite of extreme-beer lovers, so we now brew occasional batches of Gordon throughout the year. Released in bottles in 2003 and 2004, Gordon is now sold in four packs of hand-labeled cans and on draft in select markets.\n\n\n--http://www.oskarblues.com/brew/","ibu":62,"name":"Gordon","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Delicious Fruity ale is brewed with blackberries, raspberries and sweetened with a touch of blueberry honey. Light and refreshing.With a reddish-Amber color, be sure to look for the ale bitter and berry sweetness. Enjoy!","ibu":8,"name":"Saranac Mountain Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.0999999046,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Malt Advocate described Saint Rogue Red as \"An ale with great character and plenty of hops to satisfy. Full aromatic punch of caramel, citrus fruit and melon, with underlying fresh earth tones. Sweet caramel notes up front are quickly taken over by an array of fruit and hops bitterness that lingers into the night. A more adventurous ale than most.","ibu":117,"name":"Dry Hopped St. Rogue Red Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":9,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Trois Pistoles has a dark brown color topped with a rich foam mousse.\n\nIts slightly sweet taste is enhanced by accents of roasted malt, cocoa, ripe fruit and dark spices with a smooth finish like an old port.\n\n\nBrewed with four selected malts and four\n\nexotic spices, Trois Pistoles beckons with a\n\nsubtle sweetness that makes it surprisingly\n\nsmooth and satisfying for a beer of such strength and complexity.","ibu":17,"name":"Trois Pistoles","state":"Quebec","website":"http://www.unibroue.com"},{"abv":9.8000001907,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep, golden, rich malt flavor huge citrus, fruity grassy, ethanol sweetness aroma with a profound bitterness, yet balanced malt back bone with grapefruit, mellow citric overtones. Dry hopped three times in the fermenter. Brewed with over 65 lbs of hops for 300 gallons of beer. The beer to bring world peace and end the war. Bronze Medal - 2006 Imperial IPA Festival at the Bistro in Hayward, California.","ibu":100,"name":"Double Trouble IPA","state":"California","website":"http://www.21st-amendment.com/"},{"abv":4.5,"address":"Bergerstrae 1","category":"North American Ale","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":75,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":9.591160712162205,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":101,"name":"E.S.B.","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":10.5,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":40,"name":"Winter","state":"Lige"},{"abv":5.0999999046,"address":"1001 North 102nd Street","category":"North American Ale","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":11,"name":"Duke IPA","state":"Nebraska"},{"abv":4.5,"address":"Unit 3, Century Park, Valley Way","city":"Swansea","coordinates":[51.6666,-3.9443],"country":"United Kingdom","ibu":10,"name":"OSB Premium Ale","state":"Wales"},{"abv":7.5,"address":"Denterhoutembaan 2","city":"Ninove","coordinates":[50.8417,4.0213],"country":"Belgium","ibu":101,"name":"Witkap-Pater Tripel","state":"Oost-Vlaanderen"},{"abv":4,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":106,"name":"Bitter","state":"Oxford"},{"abv":6.033167365593956,"category":"North American Ale","city":"Holland","coordinates":[42.7875,-86.1089],"country":"United States","ibu":26,"name":"Lake Effect Stout","state":"Michigan"},{"abv":6.735736381711589,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":102,"name":"Fox River Golden Ale","state":"Wisconsin"},{"abv":0.4541227647220947,"address":"1101 North Water Street","category":"German Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":81,"name":"Bavarian Weiss Beer","state":"Wisconsin"},{"abv":10.28582506478822,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":106,"name":"Rendezvous Bière de Garde","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":7.180124629048656,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":52,"name":"Adler Bräu Oatmeal Stout","state":"Wisconsin"},{"abv":12.507128370307548,"address":"Burg. van den Heuvelstraat 35","category":"North American Lager","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":65,"name":"Hollandia"},{"abv":0.22935933600603198,"category":"North American Ale","city":"Casper","coordinates":[42.8666,-106.313],"country":"United States","ibu":104,"name":"Surefire Stout","state":"Wyoming"},{"abv":10.818187071795219,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":99,"name":"Queen of Clubs Schwarzbier","state":"Wisconsin"},{"abv":1.5708827502517964,"category":"North American Lager","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":111,"name":"Wazee Wheat","state":"Colorado"},{"abv":3.599999904599999,"address":"639 Conner Street","category":"North American Lager","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":103,"name":"Flat Belly American Wheat","state":"Indiana"},{"abv":3.516740244186094,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":37,"name":"Schlafly Wheat Ale","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":5.81031523069914,"address":"114 North Main Street","category":"North American Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":70,"name":"Stubbins Stout","state":"Michigan"},{"abv":12.167099998063998,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":98,"name":"Organic Extra Special Bitter","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":9.15717056495116,"address":"2617 Water Street","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":75,"name":"Augsburger Golden","state":"Wisconsin"},{"abv":5,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","description":"A smooth, full-bodied nut brown ale, lightly hopped with a hint of roasted chocolate and crystal malts. This ale is dark in color without the heavy taste of porter or stout.","ibu":21,"name":"Downtown Brown","state":"California","website":"http://www.lostcoast.com/"},{"abv":0.9450022243546163,"address":"1327 North 14th Street","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":83,"name":"Pumpkin Ale","state":"Wisconsin"},{"abv":7.908117820706653,"address":"835 48th Avenue","category":"German Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":68,"name":"Schokolade Bock","state":"Iowa"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"This traditional Belgian Whitbierre is the multiple gold medal winning Pierre Celis original. White and cloudy in appearance, brewed with wheat and seasoned with orange peel and coriander. A refreshing unfiltered ale that is both sweet and tart.","ibu":13,"name":"Celis White","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"A British Pale Ale never tasted so fresh. We challenge our good friends across the pond to match this one. Can’t be done. We’ve honored the traditions of the great British Pale brewers of Burton-on-Trent using our patented Firestone Union oak barrels. You’re left with a mild blend of vanilla and toasted oak flavor touched with an elegant hint of English noble hops. DBA is the flagship of our company and wildly popular.","ibu":78,"name":"Double Barrel Ale","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.4131626839774065,"address":"2922 Lyndale Avenue South","city":"Minneapolis","coordinates":[44.9491,-93.2885],"country":"United States","ibu":55,"name":"Kolsch","state":"Minnesota"},{"abv":5.074465091234773,"address":"8377 Pearl Road","city":"Strongsville","coordinates":[41.347,-81.8226],"country":"United States","ibu":118,"name":"Big Woody Lager","state":"Ohio"},{"abv":8,"address":"407 Radam, F200","category":"Belgian and French Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Our first anniversary release is a Belgian-style strong ale that is amber in color, with a light to medium body. Subtle malt sweetness is balanced with noticeable hop flavor, light raisin and mildly spicy, cake-like flavors, and is finished with local wildflower honey aromas. Made with 80% Organic Malted Barley, Belgian Specialty grains, Forbidden Fruit yeast, domestic hops and Round Rock local wildflower honey, this beer is deceptively high in alcohol.","ibu":65,"name":"One","state":"Texas","website":"http://512brewing.com/"},{"abv":8,"address":"Rue de Panneries 17","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian Bière de Garde - full of fruity esters, alcohol phenols, Belgian malts, noble hops and a dry, refreshing after-taste. Award-wining Mont Saint-Aubert received 'World's Best\" recognition in the Bière de Garde category during the 2009 World Beer Awards (London).\n\nIn 2008 Mont Saint-Aubert took Silver medals in the Belgian-Style Pale Strong Ale category at the Brewers Association World Beer Cup and the Australian International Beer Awards.","ibu":80,"name":"Mont St. Aubert","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":11.5,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":87,"name":"Night Stalker","state":"Illinois"},{"abv":1.9822377866145435,"address":"100 Searsport Avenue","category":"North American Ale","city":"Belfast","coordinates":[44.4295,-68.975],"country":"United States","ibu":22,"name":"Lobster Ale","state":"Maine","website":"http://www.belfastbaybrewing.com/"},{"abv":2.2175729161680255,"address":"75-5629 Kuakini Highway","category":"Irish Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","description":"Pipeline Porter is smooth and dark with a distinctive roasty aroma and earthy complexity from its diverse blends of premium malted barley. This celebration of malt unites with freshly roasted 100% Kona coffee grown at Cornwell Estate on Hawaii’s Big Island, lending a unique roasted aroma and flavor. A delicate blend of hops rounds out this palate-pleasing brew.","ibu":81,"name":"Pipeline Porter","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":4.8000001907000005,"address":"306 Northern Avenue","category":"Other Style","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"We have added natural raspberry flavor to our UFO Hefeweizen to create this beer. Consistent with the hefeweizen style, this beer is unfiltered and cloudy with a solid foamy head. UFO Raspberry has a distinctive, hazy rose color. The scent of fresh raspberries hits the nose immediately, along with a subtle bready aroma from the wheat and yeast. The body is light and the unfiltered yeast provides a soft mouthfeel. The taste of the fruit compliments the beer nicely, neither overwhelms the other. There is a faint sweetness on the palate, which finishes cleanly in a semi-dry, tart finish.","ibu":24,"name":"UFO Raspberry Hefeweizen","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.1999998093,"address":"91 S Royal Brougham Way","category":"German Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Hefe Weizen is left unfiltered for extra flavor and aroma. \n\n\nHandcrafted with 60% malted wheat (10% more than Bavarian tradition calls for), our award-winning Hefe Weizen is unsurpassed in quality and exceptionally smooth and refreshing for the whole beer experience.","ibu":84,"name":"Pyramid Hefe Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":9.6000003815,"address":"Ul. Marii Konopnickiej 1","category":"North American Ale","city":"Witnica","coordinates":[52.6739,14.9004],"country":"Poland","ibu":37,"name":"Porter Czarny Boss / Black BOSS Porter","website":"http://www.browar-witnica.pl/"},{"abv":13.529354253491437,"address":"Heitzerstrae 2","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":105,"name":"Hefe-Weizen Dunkel","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":11.93237028085949,"address":"The Eagle Maltings","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":24,"name":"Wychcraft","state":"Oxford"},{"abv":11,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":54,"name":"EKU 28","state":"Bayern"},{"abv":6.5999999046,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":28,"name":"Zinnebir Xmas","state":"Vlaams Brabant"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":20,"name":"Bigfoot 2004","state":"California","website":"http://www.sierranevada.com/"},{"abv":0.22397300781922147,"address":"809 Rue Ontario Est","city":"Montreal","coordinates":[45.5181,-73.5642],"country":"Canada","ibu":105,"name":"Apocalypse Buckwheat Ale / Coup de Grisou","state":"Quebec"},{"abv":7.465340678543639,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":48,"name":"Amber","state":"Wisconsin"},{"abv":9.158424744563465,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":85,"name":"Kölsch","state":"Colorado"},{"abv":6.0584928311186435,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":26,"name":"Big Ben Brown","state":"Colorado"},{"abv":6.981831437901501,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":24,"name":"River City Red Ale","state":"Missouri"},{"abv":10,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A bit of backwoods pleasure without the banjo. This stout is brewed with a hint of coffee and vanilla then aged in oak bourbon barrels. Our process ensures that strong bourbon undertones come through in the finish in every batch we brew. We recommend decanting at room temperature and best enjoyed in a brandy snifter.","ibu":83,"name":"Founders Kentucky Breakfast","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":6.5,"address":"357 Salmon Brook Street","category":"British Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"As English style extra special bitter, brewed using the finest malt and hops from England to produce a well balanced medium body pint.","ibu":21,"name":"Old Mill Pond ESB","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":5.1999998093,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A dark beer made with a touch of roasted chicory, organic Mexican coffee, St. John's Wort, and licorice root. Brewed with whole-leaf Cascade and Fuggles hops, the grains include pale, roasted & oatmeal.","ibu":62,"name":"Chicory Stout","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.830793965024789,"address":"5500 Greenville Avenue #1300","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":47,"name":"ESB","state":"Texas"},{"abv":12.078484763499716,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":4,"name":"Amber","state":"Hawaii"},{"abv":3.0282934716353127,"category":"North American Lager","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":64,"name":"Weizen","state":"California"},{"abv":14.037484079786548,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":94,"name":"Summer Brau","state":"California"},{"abv":10.727738754197404,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":7,"name":"Blue Heron Pale Ale","state":"California"},{"abv":1.631760415770045,"address":"13351 Highway 101","category":"Irish Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":59,"name":"Yuletide Porter","state":"California"},{"abv":12.808086936810449,"category":"German Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":74,"name":"Hefeweizen","state":"North Carolina"},{"abv":12.681510100178222,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":57,"name":"Noche Buena Special Holiday Amber Beer","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":1.5302944827743103,"address":"717 East Butterfield Road","category":"German Lager","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":53,"name":"Dark Satin","state":"Illinois"},{"abv":2.2508124509253715,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":83,"name":"Hinterland Pub Draught","state":"Wisconsin"},{"abv":14.198187252679231,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":13,"name":"Hinterland Amber Ale","state":"Wisconsin"},{"abv":4.5,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":84,"name":"Spitfire Premium Kentish Strong Ale","state":"Kent"},{"abv":4.5,"address":"3525 Liberty Avenue","category":"German Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"I’m sure everyone here knows, Pittsburgh has some humid summers. What can you do to escape the heat and enjoy yourself? Well I’ve got the answer. How about a light thirst quenching Hefe Weizen (pronounced hefa Vite zen) in the cool environment of our Hop Garden patio. I can hear you wondering, what is a hefe weizen? Allay your fears my friends because I’m going to tell you. A hefe weizen is a special style of beer made with malted wheat and malted barley. Hefe weizens are from Germany. This beer is top fermented (an ale) with a very special yeast. The Hop levels are kept deliberately low in order to bring out the character of the yeast. If you notice the nose of the beer, it has a clove-like or fruity aroma. The grain bill includes 50% wheat malt and 50% barley malt. It is served very carbonated and a touch cloudy. It is cloudy because it is served unfiltered. The remaining yeast contributes flavor, adds B vitamins, and improves the beer as it ages.","ibu":36,"name":"Heavenly Hefeweizen","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":5.3499999046,"address":"24 North Pleasant Street","category":"British Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber in color, medium body with very hoppy aroma and bitter finish. Dry hopped with Oregon Goldings","ibu":70,"name":"Amherst ESB","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":3.267843177881785,"category":"Irish Ale","city":"White River Junction","coordinates":[43.649,-72.3193],"country":"United States","ibu":119,"name":"Porter","state":"Vermont"},{"abv":11.787217727908647,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":9,"name":"Birra Canadeo / Gridiron Gold","state":"Wisconsin"},{"abv":12.604770958741442,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":95,"name":"Bridge Out Stout","state":"Wisconsin"},{"abv":4.5999999046,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":68,"name":"Old Hooky","state":"Oxford"},{"abv":5.1999998093,"address":"Grntenstrae 7","category":"German Ale","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":59,"name":"Bavarian-Weissbier Hefeweisse / Weisser Hirsch","state":"Bayern"},{"abv":5.867264340558702,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":8,"name":"Habañero","state":"Minnesota"},{"abv":7.5,"address":"Hohe Buchleuthe 3","category":"German Lager","city":"Kaufbeuren","coordinates":[47.8781,10.6161],"country":"Germany","ibu":35,"name":"St. Martin Doppelbock","state":"Bayern","website":"http://www.aktien-brauerei.de/"},{"abv":6.5999999046,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":42,"name":"East Kent IPA","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":2.7346890533169868,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":61,"name":"New Century Beer","state":"Wisconsin"},{"abv":14.908446149501493,"address":"7734 Terrace Avenue","category":"North American Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":82,"name":"Capital Wisconsin Amber","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":5.460820060885366,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":37,"name":"Old Woody Pale Ale","state":"Indiana"},{"abv":1.3737246359295796,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":25,"name":"Imperial Stout","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":8,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Introduced on May 1, 2007. Available May and June. Distributed throughout our network of wholesalers in draft and 22 oz. bottles.","ibu":99,"name":"PENNdemonium","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":9,"address":"2800 North Reading Road","category":"Belgian and French Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"The Triple is a strong, full-bodied Belgian abbey-style ale. The authentic Belgian yeast strain used in fermentation contributes to a rich array of spicy, phenolic, and fruit-like flavors and noticeable alcoholic warmth. This unfiltered ale has an irresistible pale orange-colored hazy glow.","ibu":11,"name":"Abbey Triple","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":106,"name":"Milwaukees Best","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":10.847110883506604,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":34,"name":"Kona Coffee Stout","state":"Hawaii"},{"abv":0.8249654441201548,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":79,"name":"Kickstart Oatmeal Stout","state":"Arizona"},{"abv":3.96529041019263,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":38,"name":"Honey Brown Ale","state":"Illinois"},{"abv":4.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Fat City Ale is the newest release from Valley Brewing Company. Fat City Ale is produced using only the finest 2-Row Barley and fresh Hops resulting in a crisp and refreshing flavor.","ibu":22,"name":"Fat City Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":9,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The hexagram talisman has been used around the world for centuries to invoke magic and good luck. The six–point star is also the customary symbol of the brewer, representing the essential aspects of purity: water, hops, grain, malt, yeast, and of course, the brewer. Wishes of good fortune often collaborate with the brewer’s creativity to yield dramatic results. We carefully chose the name for this Imperial India Black Ale, Iniquity – a word opposing goodness. Why? This beer is contrary to what one may expect from an IPA; this is an ale as black as night. It is the antithesis of Unearthly. Some may consider it an immoral act to blacken an ale. We suggest they don’t rely on conventional standards. Allow the darkness to consume you. Cheers!","ibu":53,"name":"Iniquity Imperial Black Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":50,"name":"Fireside Nut Brown","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":14.668425762158385,"address":"170 Orange Avenue","category":"German Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"The Coronado 'Islandweizen' is our version of an American-styled Hefeweizen or unfiltered wheat beer. It's lightly hopped with Nobel Tettnang and Saaz hops to create a great full-bodied beer. This refreshing beer can be enjoyed with a slice of lemon.","ibu":81,"name":"Islandweizen","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.4200000763,"address":"23 South Main Street","category":"Irish Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This dark mahogany ale has agreat and delicious malt depth, yet is balanced with supple, energizing bitterness.","ibu":6,"name":"Pappy's Porter","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5,"category":"British Ale","country":"Australia","description":"http://www.fostersbeer.com/home.aspx?fullbrowser=h","ibu":66,"name":"Foster's Special Bitter","website":"http://www.fostersbeer.com/"},{"abv":6.1999998093,"address":"2516 Market Avenue","category":"North American Lager","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"An amber lager with rich, fragrant malt flavors balanced by crisp, noble hops.","ibu":16,"name":"Eliot Ness Amber Lager","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.3000001907,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":101,"name":"Gordon Biersch Schwarzbier","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"The days are long but the season is short. So what gives? Sleep! After doing more before midnight than most Outsiders do in a week, Alaskans deserve some down time. And these moments of relaxation demand more than that ordinary, non-distinct lawn mower beer. Celebrate a day well done with a beer done well—a seriously delicious IPA with some scorchin’ hops. \n\n\nOur new seasonal double IPA is designed to keep you incredibly hopped up spring through summer.","ibu":77,"name":"Meltdown Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.1999998093,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":64,"name":"Paddle Out Stout","state":"California"},{"abv":9.6999998093,"address":"1777 Alamar Way","category":"British Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":51,"name":"Triple Exultation Old Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":13.993914655711288,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":95,"name":"Cardinal Pale Ale","state":"Nebraska"},{"abv":13.52142730112371,"address":"Grntenstrae 7","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":29,"name":"Neuschwansteiner Bavarian Lager","state":"Bayern"},{"abv":1.1540075661252258,"address":"515 Jefferson Street SE","category":"Irish Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":28,"name":"Mudshark Porter","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":2.857599967243515,"address":"871 Beatty Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":72,"name":"Red Truck Ale","state":"British Columbia"},{"abv":5.3000001907,"address":"Am Hopfengarten 5","city":"Leutkirch im Allgäu","coordinates":[47.8243,10.0239],"country":"Germany","ibu":28,"name":"Dunkle Weisse","state":"Baden-Württemberg"},{"abv":6,"address":"Hohenzornstrasse 2","category":"North American Lager","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":35,"name":"Honey Brown Ale"},{"abv":10,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":55,"name":"Ultrabrune","state":"Hainaut"},{"abv":6,"address":"Mendoza","category":"German Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":88,"name":"Cerveza Roja"},{"abv":5.3000001907,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":5,"name":"Pleasanton Pale","state":"California"},{"abv":13.905933392424808,"category":"North American Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":58,"name":"Celtic Stout","state":"Iowa"},{"abv":8.773027676790901,"address":"Uran","category":"North American Lager","city":"Maharashtra","coordinates":[18.88,72.94],"country":"India","ibu":100,"name":"Royal Challenge Indian Premium Lager"},{"abv":3.1755894870351087,"address":"33 Main Street","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":116,"name":"Cali \\\"Steam\\\" Locomotive","state":"New Jersey"},{"abv":5.526931909969736,"address":"The Eagle Maltings","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":23,"name":"Scarecrow Ale","state":"Oxford"},{"abv":7.558805182316934,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":106,"name":"Luna Stout","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"210 Aberdeen Dr.","city":"Valparaiso","coordinates":[41.4392,-87.1078],"country":"United States","ibu":76,"name":"Scottish Ale","state":"Indiana"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":64,"name":"Grand Cru 2003","state":"California","website":"http://alesmith.com/"},{"abv":12.05370518371587,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":93,"name":"Winter Wheat","state":"California"},{"abv":3.0218483265188856,"address":"200 North Main Street","category":"German Lager","city":"Las Vegas","coordinates":[36.1755,-115.145],"country":"United States","ibu":112,"name":"Hibernator Doppelbock","state":"Nevada"},{"abv":8.6000003815,"address":"136 East Second Street","category":"British Ale","city":"Salida","coordinates":[38.535,-105.992],"country":"United States","ibu":54,"name":"Loyal Duke Scotch Ale","state":"Colorado"},{"abv":9.870472644689816,"address":"Rue de la Frontire, 435","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":89,"name":"Moneuse Speciale Noël","state":"Hainaut"},{"abv":5.5999999046,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"One of the first beers I brewed after moving out to California to begin my brewing education was a Pale Ale. This version is a true testament to the influences the Wild West had on my early brewing. My Pale Ale is loaded with US-grown Cascade, Crystal, and Columbus hops, so be sure to take a good sniff to enjoy their robust aromas before taking your first sip.","ibu":67,"name":"Captin Lawrence Pale Ale","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration V is yet another exciting Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Living up to its name, Obliteration V finishes with poignant bitterness.","ibu":89,"name":"Obliteration V","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.882780438881771,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"This unfiltered ale retains a medium maltiness and body and features a flowery hop perfume and pleasant bitterness.","ibu":51,"name":"Standing Stone India Pale Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":6.4000000954,"address":"2522 Fairway Park Drive","category":"German Lager","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"An authentic, German-style Bock, celebrating the coming of spring. This strong, deeply flavored lager has been aged to create a smooth, malty taste with a hint of sweetness. A light addition of German hops balances the malt flavor. \n\n\nSaint Arnold Spring Bock is best consumed at 40° Fahrenheit.","ibu":35,"name":"Saint Arnold Spring Bock","state":"Texas","website":"http://www.saintarnold.com"},{"abv":6,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"During a fierce storm on his voyage across the ocean, William Rahr could be heard yelling from the tall masted ship: \"Roll on old sea! And when you are done, when the storm clouds have destroyed themselves, we will still be standing and drinking!\" Today, we have created the ultimate ale for a voyage such as this: A German-Style IPA - a traditional India Pale Ale with German Influence.","ibu":88,"name":"Stormcould IPA","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":12.022556877336209,"address":"2 Sagamore Street","category":"North American Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Sagamore Stout is a light, dry Irish Draught Stout. It is not only named for the street on which our brewery is located but also for the \"Sagamore\" of the Mohicans, the Chief Chingachgook. Best quaffed using a wide mouthed, full blown English Pint.","ibu":52,"name":"Sagamore Stout","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":4.6999998093,"address":"910 Montreal Circle","category":"German Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":2,"name":"Hefe-Weizen","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.8000001907000005,"address":"800 Paxton Street","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In the 14th Century, Sailors would rely on sheer skill to get from a starting point to a final destination. They called this Dead Reckoning. We see our beer the same way. We know where to begin and know where to go, but there are hundreds of ways to get there.\n\n\nDead Reckoning is unfiltered and weighs in at 5.8% abv and 53 IBU’s. It features Pilsner, Caramel, Chocolate and Roasted malts along with Chinook and Vanguard hops. “The outstanding taste and flavor of Dead Reckoning originates in the chocolate and roasted malts,” says John Trogner. \"There is a nice hoppiness in the front of the beer, but the rich, smooth mouth feel is what really stands out.\";\"0","ibu":91,"name":"Dead Reckoning Porter","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Crack open Yeti Imperial Stout’s sophisticated sibling – Oak Aged Yeti Imperial Stout. Although these beers come from the same clan, they have entirely different personalities. Aging on a blend of French and toasted oak chips infuses a subtle oak and vanilla character into Yeti’s already intense chocolate, roasted coffee malt flavor and hugely assertive hop profile. Who says you can’t tame a Yeti?","ibu":0,"name":"Oak Aged Yeti Imperial Stout","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.1051395408573566,"address":"Brckenauer Strae 6","category":"German Lager","city":"Motten","coordinates":[50.3949,9.7724],"country":"Germany","ibu":76,"name":"Will-Bräu Ur-Bock","state":"Bayern"},{"abv":9.844531254096044,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":11,"name":"Icebreaker Barley Wine","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":3.647322290124989,"address":"Lautenberg 1","category":"German Lager","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":105,"name":"Schwarze","state":"Baden-Wrttemberg"},{"abv":6,"city":"Sonora","coordinates":[37.9841,-120.382],"country":"United States","ibu":74,"name":"ESB (Extra Special Blizzard)","state":"California"},{"abv":4.8000001907000005,"address":"800 East Lincoln Avenue","category":"Irish Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Not quite a stout but definitely no lightweight, Cutthroat Porter is smooth and robust. Inspired by the classic London porters, we use dark roasted malts to create a deep, rich color and flavor that hint at chocolate and coffee. We named it Cutthroat Porter as our tribute to the Colorado state fish - with its own rich heritage and unmistakable dark coloring. And while we're big fans of small batches, here's to the currently threatened Cutthroat population reaching mass quantities.","ibu":1,"name":"Cutthroat Porter","state":"Colorado"},{"abv":4.5,"address":"445 St.Paul Street","category":"North American Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"From the Brewer's Website:\n\nThe Dundee family began with Honey Brown Lager in the early 1990's during the height of the craft brewing resurgence. Introduced by then brewery head Jack \"JW\" Wehle, Honey Brown was a full bodied lager brewed with natural honey provided by Wixon's Farm in the Finger Lakes town of Dundee, New York. The brand was an overwhelming success that defied definition as a style and grew to tremendous acclaim, garnering several medals at the World Beer Cup and the Great American Beer Festival.","ibu":51,"name":"Honey Brown","state":"New York"},{"abv":10,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Deserving the title \"Emperor of Ales\" (unlike the bourgeois \"King of Beers\"), Imperial is the strongest and fullest of all stouts. Imperials originally were brewed with large quantities of hops and a high alcohol content to withstand long, unrefrigerated journeys. Rogue Imperial Stout, considered the high end of stouts, is made of 2-row Great Western Harrington & Klages, Hugh Baird XLT-80, Black, Munich and Chocolate Malts; Willamette, Cascade and Chinook hops; rolled oats; and two secret ingredients. Unfiltered and unfined, Imperial Stout is best when aged for one year. Imperial Stout is available in a new 750-ml ceramic swing-top bottle (replacing the much older 7-ounce and more recent 12-ounce XS-line packaging) and on draft.","ibu":59,"name":"XS Imperial Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":14.331933737933367,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Morimoto Soba Ale is part of the new Signature Series of Rogue Ales, launched in the Spring of 2003 with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nSoba (also known as buckwheat) is not a type of wheat but a member of the rhubard family (a fruit, not a grain!) Soba has been a longtime staple of Japanese cuisine because of its nutritional value. Buckwheat is high in potassium, phosphorous, vitamin B (50 percent more than wheat) and protein, and its virtually fat-free. The fruits of buckwheat plant are like small beechnuts, which are milled to separate the edible groats from the dark brown hulls. The groats are then roasted and used more or less like a grain (a good example is Kasha).\n\n\nMorimoto Soba Ale is brewed with Roasted Buckwheat, Pale malt, Munich Malt, 13-17 Carastan Malt, and Crystal Hops. (Note, this beer contains Gluten.) The flavor is unique, toasty-nutty sensation with medium body and good hop bitterness. Morimoto Soba Ale is available in a 22 ounce silkscreened bottle and 13.2 gallon sankey kegs.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":97,"name":"Morimoto Soba Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.8000001907000005,"address":"1100 New York Ave, NW","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness","ibu":105,"name":"Capitol Kolsch","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":4.724905381419245,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":20,"name":"Norski Honey Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.719023129660286,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":17,"name":"Chapeau Exotic Lambic","state":"Vlaams Brabant"},{"abv":1.3607402799865909,"category":"North American Ale","city":"Peoria","coordinates":[40.6936,-89.589],"country":"United States","ibu":90,"name":"Steamboat Oatmeal Stout","state":"Illinois"},{"abv":6.485808415962268,"address":"3545 Summers Lane (restaurant)","category":"North American Ale","city":"Klamath Falls","coordinates":[42.2249,-121.782],"country":"United States","ibu":65,"name":"Kalamath Basin IPA","state":"Oregon"},{"abv":0.406658018801459,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":96,"name":"Bandit Brown","state":"Wisconsin"},{"abv":9.849316707796147,"address":"23 Commerce Street","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":66,"name":"Belgian Wheat","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":10.969070487540515,"address":"3703 North Main Street","category":"North American Lager","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":93,"name":"Wall Street Wheat Ale","state":"Indiana"},{"abv":6.797159159275966,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":18,"name":"Cooper River Red","state":"South Carolina"},{"abv":1.3205110755068394,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":119,"name":"Starboard Stout","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":8,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"Blond beer with a fruity and hoppy aroma and a balanced flavour with a slightly bitter aftertaste.","ibu":53,"name":"Tongerlo Tripple","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":5.8000001907000005,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","ibu":3,"name":"Trappist Westvleteren Blonde","state":"West-Vlaanderen"},{"abv":13.314502360788058,"address":"2980 Cahill Main","category":"German Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":66,"name":"Crop Circle Wheat","state":"Wisconsin"},{"abv":6.325469666312998,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":67,"name":"Yo Ho Ho Christmas Ale 2001","state":"Washington"},{"abv":5.5,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":63,"name":"Gold-Pils","state":"Bayern"},{"abv":6.684878080048309,"address":"636 East Main Street","category":"North American Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":28,"name":"American Pale Ale","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":4.725913580821219,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":35,"name":"Oktoberfest","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8.1999998093,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":59,"name":"Bruin Tradition / Brune Tradition","state":"Hainaut"},{"abv":7.1999998093,"address":"Schillerstrae 14","category":"German Lager","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":99,"name":"Bajuvator Doppelbock","state":"Bayern"},{"abv":14.009361462606995,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":118,"name":"Off The Rail Pale Ale","state":"Illinois"},{"abv":0.27647734371432864,"category":"North American Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":89,"name":"Ribleymeister Light","state":"Iowa"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion & purpose, we present this series of experimental hop-driven beers. Using different hop varieties & brewing techniques, we aim to educate the palate & challenge the hophead in you.\n\n\nObliteration VI is a Double IPA brewed with Summit, Summit and Summit; 95 IBU’s","ibu":91,"name":"Obliteration VI","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":2.1454199314993208,"category":"German Lager","city":"Fresno","coordinates":[36.7477,-119.772],"country":"United States","ibu":19,"name":"Pale Bock","state":"California"},{"abv":5.771420367406751,"address":"255999 Eighth Street SW","city":"Calgary","coordinates":[51.034,-114.083],"country":"Canada","ibu":53,"name":"Dry Pear Hard Cider","state":"Alberta"},{"abv":3.560780106983985,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":96,"name":"Porter","state":"California"},{"abv":5.5,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Is an award-winning, traditional, all-natural style of beer that falls under the category of a \"West Coast\" India Pale Ale (IPA). Characterized by its high hop content, high alcohol content and deep amber color, Hoppy Faceâ„¢ is brewed using water with a high mineral content. Using only the finest 2-row malted barley and great northwestern grown hops, this combination results in a clean, crisp, well-balanced beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\n\nIt will put a smile on your face!!!","ibu":3,"name":"Hoppy Face Amber Ale","state":"California","website":"http://www.hoppy.com"},{"abv":5.5999999046,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":48,"name":"Castelain Blond Biere de Garde"},{"abv":5.484857306231968,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":88,"name":"English Brown Ale","state":"Wisconsin"},{"abv":5.0999999046,"address":"Alte Akademie 2","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":49,"name":"Original Lager","state":"Bayern"},{"abv":3.3226268132676138,"category":"North American Ale","city":"Phoenix","coordinates":[33.4484,-112.074],"country":"United States","ibu":93,"name":"Splitfinger Stout","state":"Arizona"},{"abv":0.565337903063734,"category":"North American Ale","city":"Albany","coordinates":[44.6365,-123.106],"country":"United States","ibu":112,"name":"Russian Imperial Stout","state":"Oregon"},{"abv":5.459892051799587,"address":"30 Butterfield Road","category":"German Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":77,"name":"Ebelweiss","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":8,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"The first in our Brew Crew Big Beer Series, Hopmouth Double IPA is a hop lover’s delight! Deep amber hue with a generous white head, Hopmouth showcases a rich, toasty flavor and a sweet caramel notes as a result of the high-quality Maris Otter Malt, imported from the UK. The hops are right up front in the aroma, reminiscent of citrus and pine, while the resin-like flavors linger well after the last sip.\n\n\nThis is a BIG beer. True to our original vision, we have achieved a level of balance and drinkability rarely found in this style. Delicious on its own, Hopmouth is also a brilliant pair with many boldly-flavored foods, including many cheeses and desserts.","ibu":46,"name":"Hopmouth Double IPA","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":4.5,"category":"Irish Ale","city":"Kilkenny","coordinates":[52.6538,-7.248],"country":"Ireland","ibu":2,"name":"Smithwick's","website":"http://www.diageo.ie/Company/Brewing/KilKenny/CompanyBrewingKilkenny"},{"abv":12.027657883226944,"address":"5555 76th Avenue SE","category":"Other Style","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":3,"name":"Grasshopper","state":"Alberta"},{"abv":11,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":111,"name":"11","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.9000000954,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":71,"name":"Chautauqua Brew","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With a summer release in mind, GREED Belgian-style Single was created miserly—relatively speaking—with one type of malt and two varieties of hops. At 5% ABV and 30 IBUs, Greed is the lightest in our series of 2007 Deadly Sin Beers. However, the Belgian yeast used in fermentation and conditioning contributes an earthy, somewhat spicy flavor and a crisp finish. We invite you to be greedy before it’s gone. \n\n\nGREED...Less [for you] is More [for me].","ibu":39,"name":"Greed","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Messenger of the gods, Mercury symbolizes commerce, travel, thievery, wit and wealth. MERCURY cleverly stole its essence from mistress lover VENUS. Second runnings of the voluptuous quadrupel created this small yet fascinating beer. Indian coriander acknowledges the traveler; a distinct Belgian yeast contributes wit & charm.","ibu":89,"name":"Mercury - Belgian Style Small Beer","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"This West Coast-Style India Pale Ale is extravagantly hopped, full flavored, medium bodied and copper colored. A menagerie of hops is combined throughout the brewing process to impart specific characteristics. Hops used include Simcoe for a unique fruitiness and grapefruit zest, Columbus for strong hop pungency, Centennial for pine and citrus notes, and Cascade for floral aroma.","ibu":5,"name":"West Coast IPA","state":"California","website":"http://www.greenflashbrew.com"},{"abv":6,"address":"21 W. Bay St.","category":"Irish Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Our porter is a full bodied, semi-sweet dark ale, with distinct notes of caramel and chocolate. A touch of English grown Fuggles gives balance to the complex malty sweetness. Brewed in the loving memory of our Brew master's grandfather, the Captain.","ibu":29,"name":"The Captains Porter","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":6,"address":"901 SW Simpson Avenue","category":"German Lager","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Broken Top Bock is a malt forward, high gravity lager with a subtle aroma and warming sweetness. Czech Saaz hops balance a diverse malt composition that creates the flavor, color and mouth feel. The lager yeast chosen for this beer plays an important role in the flavor contribution, adding sweet fruit overtones. This bock boasts a clever 7% alcohol by volume so don’t let it “kick” you off of your stool.","ibu":64,"name":"Brocken Top Bock","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.6599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This I.P.A. is so rich and delicious that you'll need to confess after drinking one! Generously dry-hopped for your olefactory pleasure.","ibu":60,"name":"Mortal Sin","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This malty German style lager is brewed with Bamberg smoked malt using only the best German hops and traditional lager yeast. Look for a smooth malty flavor with a hint of smoke in the finish.","ibu":115,"name":"Saranac Rachbier","state":"New York","website":"http://www.saranac.com"},{"abv":5.375076755568822,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"An amber-colored beer, lightly hopped, with a nice malty finish; go ahead, salute your brew.","ibu":48,"name":"Amber Waves of Grain","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":4.5999999046,"address":"619 10th St. South","category":"Irish Ale","city":"Minneapolis","country":"United States","description":"Finnegans Irish Amber is brewed with potatoes and three varieties of imported two-row malts. The beer is pale amber in color but light in body. A gentle hop bitterness compliments its complex malt character. \n\nFinnegans is currently available on tap and in liquor stores throughout the state of Minnesota. Finnegans is unique in that 100% of the profits are donated to The Finnegans Community Fund which disburses grants to help the working poor and at-risk youth throughout Minnesota.","ibu":51,"name":"Irish Amber","state":"Minnesota","website":"http://www.finnegans.org"},{"abv":10,"address":"8111 Dimond Hook Drive","category":"German Lager","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Beer Description:\n\nThis double bock provides smooth sailin' in rough seas. The fact that this luscious lager was aged in rum barrels creates the illusion that the open sea is a safe place. And while riding out these waves of grain, you may fall victim to the dangers of pirates, rum, bock. OK...maybe the beach is a bit over-rated.","ibu":43,"name":"RUMBAH Double Rum Bock","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.8000001907000005,"address":"4519 W. Pine Street","category":"German Lager","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","ibu":35,"name":"Duck-Rabbit Schwarzbier","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":8.3000001907,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration II is yet another dynamic Double IPA. Its aroma is intense with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration II finishes with poignant bitterness.","ibu":79,"name":"Obliteration II","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":13.829876817669053,"address":"2109 Hickory Street","category":"North American Lager","city":"Cross Plains","coordinates":[43.1147,-89.6531],"country":"United States","description":"German Style Lager","ibu":109,"name":"Esser's Best","state":"Wisconsin","website":"http://www.essersbest.com/"},{"abv":5.766134621052736,"address":"1714 Camus Lane","category":"North American Lager","city":"Madison","coordinates":[43.0844,-89.4761],"country":"United States","description":"Actually a Dortmunder/Export style","ibu":88,"name":"Fauerbach Export","state":"Wisconsin","website":"http://www.fauerbachbrewery.com/"},{"abv":9.1999998093,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","description":"In celebration of the hop,,,,, This is a \"Hop\" tribute, worthy of a Kings Imperial Court! Enjoy the blast of fresh Tomahawk, Chinook and Anthanum Hops as they stimulate the taste buds in a truly Imperial Fashion. Pucker up!","ibu":30,"name":"Moylans Hopsickle Imperial Ale","state":"California","website":"http://www.moylans.com/"},{"abv":5.5,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Dunkel Weisse fills a glass like few beers can. The pour releases banana and clove aromas. Roasted malt flavor is complemented by caramel and chocolate undertones. Then a crisp finish refreshes the palate. Undeniable proof that brewing is truly an art.","ibu":66,"name":"Michelob Dunkel Weisse","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.1999998093,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Alpha, the first entry in our one-off, brewer's choice series is a Belgian-style Pale Ale at 6.2% ABV. Brewed with Pale, Carahell and Wheat malts, Amarillo and Cascade hops. This medium bodied beer is crisp on the palate with a smooth, not overly bitter hops flavor coupled with the fruity esters from the Belgian Abby yeast strain we used. Its bottle and keg conditioned, so expect a tall, fluffy head, and perhaps small amount of sediment. Just one batch was brewed in April 2008, kegs released in late May, and only 20 cases of bottles for sale only at the brewery at the special debut night event of June 13, 2008, from 5 to 8 pm. Recipe by Jeff Musselman, assistant brewer.","ibu":59,"name":"Alpha","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":2.858685324761445,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":118,"name":"Bête Blanche","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":39,"name":"Premium Pils Edelherb","state":"Bayern"},{"abv":5.0999999046,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"This beer is an amalgamation of styles; brown/porter/apa. Five distinct malts, including two from Belgium, give this beer added complexity and depth. We also add oatmeal to this beer to give it a smooth texture not usually associated with this type of beer. We add large amounts of American finishing hops to give Bender a citrus hop aroma because... we like hops. This is a session beer weighing in around 5% alcohol and 25 IBUs. Grab one today, we think you will want another!","ibu":54,"name":"Bender Beer","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":2.548455720910634,"address":"313 Dousman Street","category":"Other Style","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":106,"name":"Framboise","state":"Wisconsin"},{"abv":8.776663438611504,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":37,"name":"IPA","state":"Wisconsin"},{"abv":0.26075856954990595,"address":"1 Fairmount Road","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":39,"name":"ESB","state":"New Jersey"},{"abv":11.225277580114643,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Pick Axe Pale Ale is a classic American Pale Ale which uses premium hops and barley to impart a full bodied characteristic that dances on your tongue and titillates your palate.","ibu":61,"name":"Pick Axe Pale Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":11.386442400216199,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":46,"name":"Rauchbier Märzen","state":"Bayern"},{"abv":5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":28,"name":"Wittekerke","state":"West-Vlaanderen"},{"abv":0.9356191746636777,"address":"1245 Puerta del Sol","category":"North American Ale","city":"San Clemente","coordinates":[33.4577,-117.589],"country":"United States","ibu":14,"name":"Pale","state":"California"},{"abv":8,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A deep, mahogany ale brewed with beet sugar, green raisins, and Belgian-style yeast. As complex as a fine, red wine. Voted \"American Beer of the Year\" in January 2000 by Malt Advocate Magazine.","ibu":49,"name":"Raison D'Etre","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.5,"address":"23 Commerce Street","category":"British Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","description":"To quote Dr. John Harrison, a great influence on my brewing, \"Mild ale is the only beer with an uninterrupted history from medieval times to the present day.\" The \"mild\" means low hop bitterness, \"...which is the only essential feature of a mild ale.\" They can be light or dark in color, high or low in alcohol, dry or sweet. This is difficult for modern style wiennies to grasp. How can one style be so many things? How can I judge it good or bad?. The current Brewery Creek Dark Mild is medium brown, soft hops and about 3.5% abv. It could be a bit more estery. It is a lovely style.","ibu":13,"name":"Dark Mild","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":4.5,"address":"217 North Main Street","category":"North American Ale","city":"Greenville","coordinates":[34.8531,-82.3983],"country":"United States","description":"A classic American pale ale with a taste not unlike fresh citrus follwed by a crisp and spicy bitterness.","ibu":6,"name":"Colonel Paris Pale Ale","state":"South Carolina","website":"http://www.blueridgebrewing.com/"},{"abv":5.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":96,"name":"Sockeye Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.873543519985631,"address":"1 Jefferson Avenue","category":"North American Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":107,"name":"Auburn Ale","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.992902219686274,"address":"4607 Wedgewood Boulevard","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":24,"name":"Hempen Ale","state":"Maryland"},{"abv":13.819465945101323,"city":"Beloit","coordinates":[42.5083,-89.0318],"country":"United States","ibu":6,"name":"McLennium","state":"Wisconsin"},{"abv":17,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":119,"name":"Samuel Adams Triplebock 1994","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.611537710142489,"address":"21A Oak Road","city":"Wallsend","coordinates":[55.0167,-1.4925000000000002],"country":"United Kingdom","ibu":83,"name":"Radgie Gadgie","state":"Tyne and Wear"},{"abv":7.5,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Chestnut in color with a nutty malt profile from its signature Munich malt. A muted hop presence and smooth caramelized body culminate in a clean, dry finish. Excellent choice for hearty meals with dark flavors and sauces. Grilled meats, musty cheeses or pecan pie.","ibu":106,"name":"Blue Goat","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":4.4000000954,"category":"North American Lager","country":"Korea, Republic of","description":"OB Lager is a pale lager available in cans and bottles, and served on draft in Korea.","ibu":101,"name":"OB Lager"},{"abv":12,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Heady with a aromatic fruity start and taste, this amber ale features hints of pear and apricot in its well-nuanced flavor. The initial impression of fruitiness concludes in a refreshing dryness that begs you to sip again. Be fore- warned, this ale is immense as it registers 12% abv.","ibu":102,"name":"V-12","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":7.74242928973904,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Our little village brewery in New Glarus, Wisconsin is proud to offer to you Edel-Pils. This \"Noble-Pilsner\" is the creation of our brewmaster. He brought special yeast from Bavaria, combined it with Wisconsin barley and the finest Bavarian and American hops. Then employing traditional brewing methods, this Pilsner is finished with a long cold rest in our cellars. \n\n\nExpect this bier to be creamy and full-bodied with a smooth finish. It will complement any fine meal or friendly gathering. We took our time in brewing so that you might take your time enjoying.","ibu":9,"name":"Edel-Pils","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.78240999768343,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":110,"name":"Thirsty IPA","state":"California"},{"abv":4.490339815039432,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":18,"name":"HighFalls Indiaman Trader India Pale Export Ale","state":"New York"},{"abv":0.2607569834099932,"address":"1933 Davis Street #177","category":"North American Ale","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":70,"name":"Sir Francis Stout","state":"California","website":"http://drinkdrakes.com/"},{"abv":12.2029171935511,"address":"Ogorodnyj Pr. 20","category":"North American Lager","city":"Moskva","coordinates":[55.7558,37.6176],"country":"Russia","ibu":29,"name":"Beer","state":"Moskva"},{"abv":8,"address":"5763 Arapahoe Avenue","category":"British Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"A winter strong ale with mahogany hue, a hint of hazelnuts and a finish reminiscent of mocha and toffee. No spices, just a perfect blend of five specialty malts.","ibu":30,"name":"Old Jubilation Ale","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":2.7577885444218584,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":103,"name":"IPA Series (Simcoe)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":8.25,"address":"1207 N. FM 3083 E.","category":"North American Ale","city":"Conroe","coordinates":[30.3489,-95.4427],"country":"United States","description":"Jet-black in color, this monster smells of coffee and chocolate. The taste is much of the same, with hints of creamy toffee and roasted malt. Smooth and delicious, this medium bodied ale is all about the malts, but has enough hop bitterness to be balanced.","ibu":113,"name":"Buried Hatchet Stout","state":"Texas","website":"http://www.southernstarbrewery.com/"},{"abv":9.5,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":108,"name":"Port Panzer Imperial Pilsner","state":"California","website":"http://www.portbrewing.com/"},{"abv":5.0999999046,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":48,"name":"Piketown Pils","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.804500943736699,"address":"1150 Filbert Street","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":78,"name":"Belgian Singel","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":4.2685113565211665,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":43,"name":"Oatmeal Stout","state":"Washington"},{"abv":14.873141652342946,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":14,"name":"Light Lager","state":"British Columbia"},{"abv":11.012755234993653,"address":"Weinbichl 6","category":"North American Lager","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":42,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":4.6415810542270215,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":85,"name":"Hofgutsbier","state":"Baden-Wrttemberg"},{"abv":5,"address":"Oberdorferstrae 9","category":"North American Ale","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":18,"name":"Stout"},{"abv":10.552351378567073,"address":"Strada Pilastro 35","city":"Torrechiara","coordinates":[44.6601,10.2814],"country":"Italy","ibu":7,"name":"Panil Barriquée"},{"abv":14.195103471914662,"address":"Zornedinger Strae 2","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":57,"name":"Altbairisch Dunkel","state":"Bayern"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":58,"name":"Harvest Ale 2005 (Port)","state":"Manchester"},{"abv":4.9000000954,"address":"600 Brea Mall","category":"German Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":63,"name":"Harvest Hefeweizen","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5.5,"address":"765 Center Boulevard","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":90,"name":"Fairfax Coffee Porter","state":"California"},{"abv":5.034123034278481,"address":"Rua Bahia, 5181","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":25,"name":"Eisenbahn Defumada","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":7.5,"address":"461 South Road","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"If fine wine were beer it would no doubt be Coopers Extra Strong Vintage Ale. This strong ale imparts rich full flavours that are suitable for maturation. Brewed with choice malts and an extended top fermentation, Coopers Extra Strong Vintage Ale will improve with age, becoming more interesting and complex in flavour for up to 18 months. The results are well worth the wait!","ibu":11,"name":"Extra Strong Vintage Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5.1999998093,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":53,"name":"Irish Style Ale","state":"Washington"},{"abv":6.544979533713827,"address":"99 Pyrmont Bridge Road","category":"North American Ale","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":92,"name":"James Squire India Pale Ale","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":10,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":3,"name":"La Trappe Quadrupel 2000/2001","website":"http://www.latrappe.nl/"},{"abv":4.145365480497509,"address":"2980 Cahill Main","category":"British Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":18,"name":"Stone of Scone Scotch Ale","state":"Wisconsin"},{"abv":9.990259644541176,"address":"2980 Cahill Main","category":"Irish Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":96,"name":"Black Earth Porter","state":"Wisconsin"},{"abv":2.3889787829893114,"address":"835 48th Avenue","category":"German Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":33,"name":"Maifest","state":"Iowa"},{"abv":5.5,"address":"Am Brunnen 2","category":"North American Lager","city":"Wolnzach","country":"Germany","ibu":81,"name":"Roggenbier","state":"Bayern"},{"abv":5.8000001907000005,"address":"Haid-und-Neu-Strae 18","category":"German Lager","city":"Karlsruhe","coordinates":[49.0125,8.4264],"country":"Germany","ibu":5,"name":"Porter","state":"Baden-Wrttemberg"},{"abv":4.4600000381000005,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":99,"name":"Honey Wheat","state":"Colorado"},{"abv":0.2111159780221894,"address":"9322 State Route 414","category":"German Lager","city":"Lodi","coordinates":[42.5739,-76.8582],"country":"United States","ibu":35,"name":"Sled Dog Doppelbock","state":"New York"},{"abv":8,"address":"Michel Theysstraat 58A","city":"Diest","coordinates":[50.9882,5.0554],"country":"Belgium","ibu":1,"name":"Loterbol","state":"Vlaams Brabant"},{"abv":6.1999998093,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":26,"name":"Farmhouse Saison","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":10.097046013491335,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":113,"name":"India Pale Ale","state":"Oregon"},{"abv":7.964851921027375,"address":"25 North Madison St","category":"North American Lager","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":16,"name":"Calumet Wheat","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":2.7038763582329004,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":108,"name":"Irish Stout","state":"Wisconsin"},{"abv":3.7899999619,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"Over a century of brewing skill, along with the finest ingredients obtainable, has resulted in a beer unique for its balance of lightness and delicious flavor.","ibu":116,"name":"Piels Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":3.5,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Light Beer is skillfully crafted to deliver a consistently refreshing brew with only 98 calories. Drawing from traditional brewing techniques, our Light Beer is brewed longer to reduce the sugar content and produce fewer calories in each thirst-quenching drink. Its pale golden color is complemented by a light-bodied flavor. Yuengling Light maintains a well balanced character of malt and hops, with slight carbonation for a crisp satisfying finish. We sacrifice nothing to produce a premium light beer that is low in calories and full of flavor. This combination delivers the ultimate refreshment in Yuengling Light Beer.","ibu":57,"name":"Yuengling Premium Light","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":6.892459405795066,"address":"2804 13th Street","category":"North American Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":76,"name":"Old Powerhouse Lager (discontinued)","state":"Nebraska"},{"abv":5.1999998093,"address":"79 North Eleventh Street","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Brooklyn Lager, the Brewery's flagship label, is New York's \"hometown\" beer, brewed to a pre-Prohibition recipe that dates back to the days when Brooklyn was the brewing capital of the East Coast. Brooklyn Lager has won numerous awards. Wrote Michael Jackson in the Simon & Schuster Pocket Guide to Beer: \"The dry-hopped, fresh, flowery, firm, flavourful, Brooklyn Lager **-*** started well, in 1988, and has gained in character since.\";\"0","ibu":111,"name":"Brooklyn Lager","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":7.5,"address":"St. James's Gate","category":"Irish Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"Foreign Extra Stout is brewed with generous hops and roasted barley for a bittersweet balance & full-flavored, natural bite. Developed over 200 years ago for global export from Ireland, the addition of extra hops ensured this Stout would arrive to its destination in perfect condition. Today, Guinness Foreign Extra Stout is enjoyed by millions of people around the world.","ibu":12,"name":"Foreign Extra Stout","website":"http://www.guinness.com"},{"abv":12.189461792635525,"address":"127 Elm St., Unit C","category":"Irish Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":101,"name":"BackDraft Chocolate Porter","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.5,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"This is what beer is all about. First swallow offers a nice little bite, followed by a blossom of flavors delivered by our handpicked aromatic hops. Flavor carries through the end with a full fisted kick of alcohol content that rocks the Richter scale at 6.5%. A nose of citrus with a floral essence of spice tickles the tongue in this ode to hops. Discover an IPA that encourages how to enjoy what beer is all about.","ibu":0,"name":"Tailgate IPA","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":13.855525563631684,"address":"10983 Hills Road","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Winter Wheat is a rich, brown beer with hints of caramel and citrus creating a warming yet refreshing winter beer. Enjoy with Cajun or spicy cuisine. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":51,"name":"Round Barn Winter Wheat","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":7.0999999046,"address":"86 Newbury Street","category":"Irish Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"Imperial Porter is a full bodied, very dark, malty beer with a good roasted character coming from the Crystal, Chocolate and Black Patent Malts used in the mash. Warrior, English Fuggles, and East Kent Goldings Hops balance the malts with a good hop bite. The beer has an OG of 1.070, rounding out after fermentation with just a slight residual sweetness and cutting dry at the finish.","ibu":74,"name":"Pugsley's Signature Series Imperial Porter","state":"Maine","website":"http://www.shipyard.com/"},{"abv":6.6999998093,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #14-2008 is our interpretation of a farmhouse ale—a once near-extinct winter-brewed (and summer–imbibed) Belgian ale.\n\n\nOur celebratory brew starts with a black pepper and ginger nose. The nicely carbonated brew releases a honey-malt flavor that gives way to a tart crisp finish that masks the elevated ABV.\n\n\nWe use a blended yeast strain (Saison Dupont & Le Chouffe) to create the traditional peppery, spicy earthy flavors of the saison. Slight hints of ginger also come through in the finish.\n\n\nDrink it ‘til the wedding bells chime!","ibu":28,"name":"Scratch #14 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":9,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Scottish \"90/-\" ale. Brewed only once a year, this ale is rich and full with a dryness that is beautifully balanced with a classic malt sweetness.","ibu":108,"name":"Kilt Tilter","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.8000001907000005,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Brewed from very similar ingredients as the Red, but paler and spiced differently. It is intended only to be drunk at the abbey or at the nearby inn Auberge de Poteaupré which is associated with the abbey. The monks themselves drink this variety rather than the stronger three. The Dorée is not sold commercially and the rare bottles which make their way out are through unofficial sources. Even the brewery's own web site makes no mention of this variety.","ibu":35,"name":"Chimay Dorée","website":"http://www.chimay.com"},{"abv":37,"address":"Steingasse 9","city":"Heidelberg","country":"Germany","ibu":3,"name":"Vetter 33","state":"Baden-Württemberg","website":"http://www.brauhaus-vetter.de"},{"abv":12.238697591931327,"address":"23 Commerce Street","category":"North American Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","description":"\"Guinness\" is the prototype of all modern stouts. Many people, however, don't realize that there are different varieties of \"Guinness\" brewed around the world. \"Draught Guinness* and \"Foreign Extra Stout\" are the two primary types brewed in Ireland. Foreign Extra is the one I have emulated. It is closer in style to the London Porters of old than to modern stout. Very dark and rich, not as dry as Draught, about 6% abv and around 60 IBUs (that's hop bitterness). I used \"First Gold\" hops because that's what I could get. Guinness use Nitrogen mixed with carbon dioxide to dispense their stout which adds to the creamy mouth-feel. BTW: The \"Imported\" Guinness you buy here in the US comes from Canada. It could just as well be brewed in the US but the common wisdom in the brewing world is that Americans prefer \"imported\" beers and will pay more for them.","ibu":8,"name":"Irish Stout","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":0.9673462908028096,"ibu":60,"name":"0"},{"abv":5.3000001907,"address":"569 Main St","category":"German Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"Smooth and malty dark copper German ale common to Duseldorf. Brewed with imported Munich malts, tettnang hops and imported yeast giving this brew a unique flovor.","ibu":54,"name":"Arc Weld Alt","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":75,"name":"Winter Warmer","website":"http://www.youngs.co.uk"},{"abv":7.292849948354194,"address":"1401 Miner Street","category":"Other Style","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":70,"name":"Tundrabeary Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.469349094244396,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":70,"name":"Flaming Crane Chili Beer","state":"Nebraska"},{"abv":5.4000000954,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":29,"name":"Bishops Finger Kentish Strong Ale","state":"Kent"},{"abv":13.167973976466927,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":9,"name":"Abbot Pennings Trippel","state":"Wisconsin"},{"abv":8.635386627457217,"address":"Schwendener Strae 18","city":"Marktoberdorf","country":"Germany","ibu":35,"name":"Sailerbräu Rauchenfels Steinweizen","state":"Bayern"},{"abv":3.5780943191345385,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":96,"name":"1634 Urtyp Hell","website":"http://www.paulaner.com/"},{"abv":0.4806858698337846,"address":"149 Steele Street","category":"North American Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":22,"name":"Lightning Bold Gold","state":"Colorado"},{"abv":13.926297184564673,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":26,"name":"Abana Amber Ale","state":"Illinois"},{"abv":2.5259874651595524,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":112,"name":"Bavarian Helles","state":"Illinois"},{"abv":5.506373359042249,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":42,"name":"Steelhead Extra Stout","state":"California"},{"abv":10.613087258284725,"address":"ul. Browarna 14","city":"Brzesko","coordinates":[49.9622,20.6003],"country":"Poland","ibu":58,"name":"O.K. Beer","website":"http://www.okocim.pl/"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":47,"name":"EKU Pils","state":"Bayern"},{"abv":11.470810140646654,"address":"102 North Center Street #111","category":"North American Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":44,"name":"Amber Plus","state":"Illinois"},{"abv":5.5999999046,"address":"1025 Owen Street","category":"Irish Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"In 1767 a great Sauk leader was born. His name meant \"the black sparrow hawk.\" He came to be known as Black Hawk. Strong beliefs, independent thinking and an unwavering commitment to his family and his people earned him a reputation as a man of integrity and courage. In 1832, along with 1,200 of his people, Black Hawk was driven from his ancestral home during a war that bears his name. We celebrate this Sauk leader and his courage with our BlackHawk Porter, the kind of beer that make you say, Ma-ka-tai-she-kia-kiak!\n\n\nChief BlackHawk Porter is a robust black and sharply bittersweet ale. This style was traditionally the session beer consumed by the porters in London.","ibu":27,"name":"Chief Blackhawk Porter","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":11.990952245344884,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":53,"name":"Ultra Ambrée","state":"Hainaut"},{"abv":7.1999998093,"address":"Sinebrychoffinaukio 1","category":"North American Ale","city":"Kerava","coordinates":[60.381,25.1102],"country":"Finland","ibu":117,"name":"Porter IV"},{"abv":9.909951497146615,"address":"1500 Jackson Street","category":"North American Ale","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":103,"name":"Burly Brown Ale","state":"Minnesota"},{"abv":0.9718022344318344,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":64,"name":"Red Square","state":"California","website":"http://www.portbrewing.com/"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":37,"name":"Old Numbskull 2003","state":"California","website":"http://alesmith.com/"},{"abv":5,"address":"1165 Invicta Drive","category":"North American Ale","city":"Oakville","coordinates":[43.4745,-79.6775],"country":"Canada","ibu":102,"name":"Auburn Ale","state":"Ontario"},{"abv":8,"address":"915 Grand Avenue","category":"British Ale","city":"Grand Lake","coordinates":[40.2518,-105.82],"country":"United States","ibu":105,"name":"Plaid Bastard","state":"Colorado"},{"abv":4.7414725230656725,"address":"220 North Randall Road","category":"North American Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":22,"name":"Celtic Cream Ale","state":"Illinois"},{"abv":1.5384999514286335,"address":"Herrenhuser Strae 83-99","category":"German Ale","city":"Hannover","coordinates":[52.3935,9.6814],"country":"Germany","ibu":90,"name":"Weizen Bier","state":"Niedersachsen"},{"abv":8.561485749054809,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":39,"name":"Raspberry Pilsner","state":"Wisconsin"},{"abv":7.491596407564449,"category":"North American Ale","city":"Oconomowoc","coordinates":[43.1117,-88.4993],"country":"United States","ibu":83,"name":"Alt","state":"Wisconsin"},{"abv":2.77474750752377,"city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":10,"name":"Alt Munich Dark","state":"Bayern"},{"abv":13.884095745790562,"city":"Santa Cruz","coordinates":[36.9741,-122.031],"country":"United States","ibu":104,"name":"Beacon Barleywine","state":"California"},{"abv":7,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"This one is dedicated to everyone who has gotten up at the butt crack of dawn, headed towards the shores and found it 4-6 feet and offshore only to find 30 of your \"buddies\" have already claimed the peak. As you paddle out, a swell arrives from nowhere signaling your turn to go. The surf Gods are shinning on you today. You turn, stroke like mad for the wave. Standing up you are alone and blammo you Wipeout....blowing the only chance of a right hander all to yourself. You know who you are. We've all been there too. It's inside each and every one of us.\n\n\nWelcome to the waters of Wipeout IPA, a massively hopped India Pale Ale with enough substance and body to overcome even the worst and most tragic of on the water spills. We brew Wipeout IPA for everyone- especially those hardy souls who brave the cold winter water and monster sets produced by an amazing northwest swell. \n\n\nOnly a tidal wave of hops can overcome the surging tide of malt that is required to produce a beer of this shape. We invite you to drop in, hang on and kick out the backside. That is, unless you enjoy wiping out and all the glory that goes with it.\n\n\nMalts- Two Row, Wheat, Carapils and English Crystal Malts\n\nHops- Amarillo, Centennial and Simcoe \n\nYeast- White Labs California Ale\n\n\nOriginal Gravity- 1.064\n\nTerminal Gravity- 1.008\n\n7.0% ABV\n\n\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":7,"name":"Wipeout IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":6.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Menacingly delicious, with the powerful, aromatic punch of whole flower American hops backed up by rich, German malts. HopDevil Ale offers a roller coaster ride of flavor, coasting to a smooth finish that satisfies fully.","ibu":46,"name":"Hop Devil India Pale Ale","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":14.056667219912837,"category":"North American Lager","city":"Salinas","coordinates":[36.6777,-121.656],"country":"United States","ibu":74,"name":"Hefeweizen","state":"California"},{"abv":4.0212755218400265,"address":"50 East Washington Street","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":112,"name":"Golden Eagle","state":"California"},{"abv":6.082898791468421,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":83,"name":"DPA","state":"California"},{"abv":9.987089514989423,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":64,"name":"Amber","state":"North Carolina"},{"abv":3.6224991135176965,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":90,"name":"Ranger Red","state":"Texas"},{"abv":3.343678925799065,"category":"North American Lager","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":96,"name":"Four Sheets Cream Ale","state":"California"},{"abv":4.398135766115598,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":86,"name":"Independence Ale","state":"California"},{"abv":5.4000000954,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":23,"name":"Weisse Hefe-Weizen","website":"http://www.schneider-weisse.de"},{"abv":11.199272441532406,"category":"North American Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":72,"name":"Heritage Wheat","state":"Illinois"},{"abv":5.5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Christmas Ale is an American style Brown Ale. It is hopped with Willamette, Cascade, and Columbus hops and has a good hop flavor and aroma.","ibu":38,"name":"Christmas Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":6.8000001907000005,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":113,"name":"Goose Island Midway IPA","state":"Illinois"},{"abv":6.941722877339412,"address":"7734 Terrace Avenue","category":"Other Style","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":34,"name":"Capital Island Wheat","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":9,"address":"3913 Todd Lane #607","category":"British Ale","city":"Austin","coordinates":[30.2131,-97.7358],"country":"United States","description":"Brilliantly golden, Jasperilla is a unique take on an old ale. Biscuity malt flavors meld with subtle plum and berry notes, produced by a special blend of English Old Ale and Chico yeasts. Brewed once a year, and aged for six months prior to release, the Jasperilla is smooth despite its 9% abv.\n\nJasper dressed as Hosehead from Strange Brew\n\n\nWe named this beer after our dog Jasper because he has brought so much joy to our lives. We got Jasper from a local dog rescue group called Mixed Breed Rescue. He has been a constant source of smiles and kept our spirits high through many late nights and long hours at the brewery.\n\n\nJasperilla is so good and smooth that you'll beg like a dog for more, roll over for a belly rub, howl at the moon...you get the picture.","ibu":3,"name":"Jasparilla","state":"Texas","website":"http://www.independencebrewing.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"Belgian and French Ale","city":"Grimstad","country":"Norway","description":"This Belgian Ale is what you could call a wit with an attitude. We are generous with all our ingredients - including both orange peel and coriander. This does not stop this ale from being a good companion with seafood dishes.","ibu":67,"name":"Nøgne Ø Wit","state":"Lunde","website":"http://nogne-o.com/"},{"abv":8.5,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Dragonmead's signature product! This is the ultimate Belgian style. The very high gravity of this beer is balanced by the smoothness of its finish. Banana and Clove aromas come from the Belgian yeast strain combining with the generous dose of Belgian Candi Sugar. The Saaz hops help to give this beer a balanced bitterness with no noticeable hop aroma.","ibu":83,"name":"Final Absolution","state":"Michigan"},{"abv":10.800000191,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Night Tripper is an Imperial Stout for a Fat Tuesday release. Dark, mysterious and poetic, Night Tripper's abundance of roasted malts, combined with flaked barley create a rich, roasty beer with deeply intense and lush flavors. Night Tripper's layered, nuanced tones invite intrigue and reward a curious palate.","ibu":6,"name":"Night Tripper","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"This beer is brewed especially for the Grand Hotel located on Mackinaw Island, Michigan.","ibu":24,"name":"Big Porch Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.418292063363353,"address":"24 Kulick Road","category":"North American Lager","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"The East Coast Lager is an easy drinking “golden” lager with a wonderful balance of crisp malt flavors and flowery hop finish. Built specifically with very low bitter aftertaste, the aroma is as clean as the taste.A difficult beer to brew because of the gentleness… this beer is magnificent!","ibu":29,"name":"East Coast lager","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":8,"address":"120 Wilkinson Street","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Dark and robust brewed in the style of a American strong ale, full bodied and screaming with hops.","ibu":77,"name":"Wailing Wench","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5.5,"address":"32295 State Route 20","category":"Irish Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A robust porter in style, a dark and full bodied ale with hints of roasted barley and flavors of coffee and bitter sweet chocolate on the palate.","ibu":57,"name":"Peacemaker Porter","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":11.583046357136777,"address":"3939 W. Highland Blvd","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":87,"name":"Olde English 800","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Oktoberfestbier is festive, full-flavoured and ultra delicious, and is brewed specially for the most famous festival in the world. Every year, more than one million liters are served at the Oktoberfest. You can create your own \"beer tent atmosphere\" at home with this golden yellow, mildly hoppy seasonal speciality - but only between July and October.\n\n\nOktoberfest Bier:\n\n13.7% original wort; 6.0% alcohol; 50 kcal/100 ml","ibu":23,"name":"Paulaner Oktoberfest","website":"http://www.paulaner.com/"},{"abv":5.5,"address":"The Eagle Maltings","category":"North American Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":51,"name":"Hobgoblin","state":"Oxford"},{"abv":6,"category":"British Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","description":"Hearty, creamy oatmeal stout has hints of espresso and an elegant dark chocolate sweetness. Flavor and aroma are characteristic of Espresso and Dark Chocolate. It has a rich, silky, full, and complex body with a long, rich, smooth finish.","ibu":17,"name":"Farmer Jon's Oatmeal Stout","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":6,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"An Ale Brewed with Honey\n\nOur inaugural Epic Elixir, Braggot is a most remarkable honey ale, made with specialty malts & wildflower honey from Vermont's Champlain Valley. The honey adds smoothness with subtle hints of chamomile.\n\n\nBraggot is an ale of shining perfection that simply must be experienced to be understood. But hurry ... for Braggot, as with each entry in our Humdinger series, vanishes almost as soon as it arrives. Get a bottle of Braggot today and come to know a new 'Ale of Legend'. \n\n\nWild Flower Honey, primarily Red Clover and Alfalfa from Champlain Valley Apiaries in Middlebury, Vermont. This represents 50% of the total fermentable sugars.\n\n\nChamomile: Whole Chamomile flowers steeped in hot wort.","ibu":68,"name":"Braggot","state":"Vermont","website":"http://www.magichat.net/"},{"abv":1.8403900090376757,"address":"16 North Brown Street","category":"North American Ale","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":29,"name":"Stout","state":"Wisconsin"},{"abv":5.5,"address":"Zornedinger Strae 2","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":6,"name":"Jahrhundert-Bier","state":"Bayern"},{"abv":8.32851944261453,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","ibu":16,"name":"Starkbier","state":"Bayern"},{"abv":13.172122108500172,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":116,"name":"St.Pauli Girl Special Dark","state":"Bremen"},{"abv":0.39473875555209204,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":7,"name":"Imperial Stout","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":4.6999998093,"address":"Beethovenstrae 7","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":96,"name":"Bayrisch Hell","state":"Bayern"},{"abv":5.3000001907,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"A well-balanced, hoppy American style pale ale with a generous usage of Caramel and Crystal malts. This beer is amber in color and is finished\n\nwith fresh Cascade, Columbus and Mt. Hood hops from the Pacific Northwest for a wonderful floral aroma. World Beer Cup Bronze Medal winner and a Perennial favorite here at the Brewery. Also available in bottles to go.","ibu":84,"name":"Krooks Mill","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":7.6999998093,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":49,"name":"St. Sebastiaan Golden","state":"Antwerpen"},{"abv":5.0999999046,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":78,"name":"Humpis-Original Naturtrub","state":"Baden-Wrttemberg"},{"abv":6,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"La Folie Wood-Aged Biere, is our original wood-conditioned beer, resting in French Oak barrels between one and three years before being bottled. . Peter Bouckaert, came to us from Rodenbach – home of the fabled sour red. Our La Folie emulates the spontaneous fermentation beers of Peter’s beloved Flanders with sour apple notes, a dry effervescence, and earthy undertones. New in 2010, we'll do a single bottling of La Folie for the year. Collect the 22oz unique to 2010 designed bottle and start a yearly wood-aged collection of goodness.","ibu":111,"name":"La Folie","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":4.8000001907000005,"address":"500 Linden Street","category":"German Lager","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Climb on in and grab a paddle. Our first foray into lagered beers, Blue Paddle Pilsener-Lager, is a Czech style pilsener with a refreshing crispness from noble hops and a rich, malty finish. ‘Blue Paddle’ refers to the implement our warehouse manager’s Grandma once used to lovingly paddle his a** when she caught him stealing sips of her beer. With more body than a traditional Belgian pils, Blue Paddle is reflective of Europe’s finest pilseners.","ibu":8,"name":"Blue Paddle Pilsener","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","category":"North American Lager","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","description":"Surviving beer from the Dortmunder Hansa-Brauerei before being acquired by Actien.","ibu":11,"name":"Hansa Imported Dortmunder","state":"Nordrhein-Westfalen"},{"abv":5,"address":"910 Division St","category":"German Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"An authentic example of a Bavarian Hefeweizen.","ibu":13,"name":"Hefeweizen","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":6.8000001907000005,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"IPA brewed with 100% Centennial hops. Big round mouthfeel, very perfumey. Different from our canned IPA. Gotta love the Pacific NW!","ibu":60,"name":"Hopportunity Knocks Ale","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This gruit ale was inspired by the Phish song of the same name. A traditional gruit in style, Bathtub Gin was brewed without hops. Instead Ben spiced his beer with botanicals typically used to flavor gin: juniper berries, orris root, angelica root, grains of paradise, lemon peel, orange peel and coriander. The result is intensely fragrant, flavorful and fabulous.","ibu":59,"name":"Bathtub Gin Gruit Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":9.25,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"XXXX IPA is a non-traditional American IPA with a brilliant copper color and the classic citrus nose of Cascade hops. This beer demonstrates a unique balance of malt-inspired, delicate red grapefruit sweetness and lingering hop dryness. The OG and final ABV provide the structure and body to balance the harmony of distinct flavours. Cascade, Warrior, Summit and Glacier Hops are used for bittering and Cascade Hops are added for dry hopping after fermentation. This hop blend is well balanced with Malted Wheat, Pale Ale, Crystal, and Caramalt Malts. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit. This beer pairs well with Cajun dishes, blackened fish, and BBQ. XXXX draws its name from the British brewing convention of using X’s to denote style. 70 BU’s, 1.092 OG, 9.25% ABV.","ibu":113,"name":"Pugsley's Signature Series XXXX IPA","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.3000001907,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Unfiltered American amber wheat ale brewed with a blend of imported and domestic hops for a balanced slightly citrus hop aroma and caramel malty taste.","ibu":41,"name":"Michelob Hop Hound Amber Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"600 Elmira Road","category":"Other Style","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Partly Sunny is hazy-straw colored wheat beer with coriander, and generous amounts of lemon zest. It's a light refreshing beer with a subtle spicy start and a smooth citrus finish.","ibu":76,"name":"Partly Sunny","state":"New York"},{"abv":5.4000000954,"address":"195 Ottley Drive","category":"North American Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","ibu":7,"name":"420 Extra Pale Ale","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":10,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":30,"name":"Black Chocolate Stout","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":6.1999998093,"address":"231 W. Fourth Street","category":"British Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big, burly Oatmeal Stout full of chocolate, caramelized malt and coffee flavors. This stout has a rich mouthfeel and a smooth, roasty finish.","ibu":13,"name":"Susquehanna Oatmeal Stout","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":4.9000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A light-bodied, unfiltered Blonde ale that retains the bold flavors typical of an Ipswich Ale, our Summer Ale is light enough for a hot summer day and can satisfy even the most scorching thirst.","ibu":27,"name":"Ipswich Summer","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":8.191510341910131,"address":"210 Swanson Avenue","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Full Body Ale Balanced With Assertive Oregon Hops, Deep Amber In Color","ibu":21,"name":"Scorpion Amber Ale","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":0.5879103158635146,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":93,"name":"Artisan Saison","state":"Ohio"},{"abv":5,"address":"Unit 21-24 Batten Road Industrial Estate","category":"North American Lager","city":"Salisbury","country":"United Kingdom","ibu":108,"name":"Thunder Storm","state":"Wiltshire"},{"abv":7,"address":"5945 Prather Road","category":"Irish Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":113,"name":"Lava Rock Porter","state":"Washington"},{"abv":1.2734215155638096,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":4,"name":"Pride of De Pere","state":"Wisconsin"},{"abv":8.280917243774772,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":5,"name":"Eighty Shilling Export Ale","state":"Scotland"},{"abv":4.031507584173278,"address":"801 East Second Avenue","city":"Durango","coordinates":[37.2724,-107.88],"country":"United States","ibu":87,"name":"Steam Engine Steam","state":"Colorado"},{"abv":13.04691543881674,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":49,"name":"Chapeau Framboise Lambic","state":"Vlaams Brabant"},{"abv":11.39379359864512,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":19,"name":"Five Springs Oatmeal Stout","state":"Illinois"},{"abv":9.6000003815,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"Schloss Eggenberg Urbock 23° is one of the strongest beers in the world. We keep the Urbock 23° in our Schloss cellars for 9 months until it is dark gold and strongly matured. Urbock 23° has received the highest acknowledgments and honours at international exhibitions and world evaluations. It is brewed exclusively from natural raw ingredients after the purity requirement of 1516. Schloss Eggenberg Urbock is filled in a 0.33 litre designer bottle embossed with Schloss Eggenberg and in barrels for the export (20 and 30 litre).","ibu":63,"name":"Urbock 23°"},{"abv":5.3000001907,"address":"Wilhelm-Schussen-Strae 12","category":"German Lager","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":1,"name":"Schwarzbier","state":"Baden-Wrttemberg"},{"abv":14.881210769214348,"address":"65 North San Pedro","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":90,"name":"Alpine Gold","state":"California"},{"abv":6.3000001907,"address":"St Peter's Hall","category":"British Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":39,"name":"Winter Ale","state":"Suffolk"},{"abv":4.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Milwaukee's Best Light is Miller Brewing Company's lead low-calorie brand in the near-premium segment. Brewed to uncompromising standards using select pale malt, cereal grains and yeast, this is a smooth, highly drinkable beer at an affordable price. Available nationwide, Miller first rolled out Milwaukee's Best Light in 1986 with an ambition to become the beer choice for guys. Our marketing, including sponsorship with the World Series of Poker and award-winning TV spots, takes a humorous approach to reinforce the idea that \"Men should act like men and light beer should taste like beer.\";\"0","ibu":91,"name":"Milwaukee's Best Light","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":2.4441715456331625,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":18,"name":"Honey Weizen","state":"California"},{"abv":4.550243807656505,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":75,"name":"Pale Ale","state":"Oregon"},{"abv":10.422451787232593,"city":"Lexington","coordinates":[38.0317,-84.4951],"country":"United States","ibu":61,"name":"Beer","state":"Kentucky"},{"abv":14.221139621077413,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":116,"name":"Stout","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.572908624257236,"address":"5555 76th Avenue SE","category":"Irish Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":73,"name":"Cold Cock Porter (discontinued)","state":"Alberta"},{"abv":10.334211971459016,"address":"45 South Barrington Road","category":"North American Lager","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":9,"name":"Wheat Honey Ale","state":"Illinois"},{"abv":12.836416970610664,"address":"137 High Street","city":"Burton-upon-Trent","coordinates":[52.8046,-1.628099999999999],"country":"United Kingdom","ibu":3,"name":"Ale","state":"Staffordshire"},{"abv":5.5999999046,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A brilliant, dry pale ale with an aggressive hop character balanced with a smooth finish. A bold beer best consumed with a stiff upper lip.\n\n\nIBU: 60\n\nAlcohol Content: 5.6% by volume\n\nHops: Stryian Goldings, Mt. Hood, Fuggles, Magnum, Willamette\n\n\n*Contains Wheat\n\n\nCalories per 12 oz 190.85\n\nCarbs per 12 oz 16.82","ibu":96,"name":"Kashmir IPA","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":11.83399558169575,"address":"920 Twelfth Street","category":"British Ale","city":"Golden","coordinates":[39.7546,-105.224],"country":"United States","ibu":2,"name":"Brain Damage","state":"Colorado"},{"abv":11.439755292343618,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":98,"name":"Liberty Pale Ale","state":"Wisconsin"},{"abv":1.9038661317744188,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":119,"name":"Old Knucklehead 1997","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":6.642016923100925,"address":"2201 Sherman Street","category":"North American Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":33,"name":"Lichthouse Lager","state":"Wisconsin"},{"abv":9,"address":"66 East Eighth Street","category":"Belgian and French Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Golden in color with a slightly sweet body. Its ester-laden character reveals an enigmatic dance between Belgian ale yeast and candy sugar complimented by a pleasing dry finish. Black Tulip is a versatile beer for food. Enjoyable pairings include mild bleu cheeses, berries and other light desserts.","ibu":85,"name":"Black Tulip","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.6999998093,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs E.S.B. \"extra special bitter\" is dry hopped in the old world traditions. It has a full bodied caramel malt flavor an spicy hop aroma. A generous amount of Golding hops are added before fermentation to impart a pleasant \"bouquet nose\" and balanced with pronounced caramel malts to create a complex, malty, aromatic amber ale.","ibu":81,"name":"ESB","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.6934957729496,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Golden Pilsner","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.609842229771839,"address":"25 North Madison St","category":"Irish Ale","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":75,"name":"Calumet Dark","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":11.299468885467242,"address":"208 East River Drive","category":"North American Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":83,"name":"Bucktown Stout","state":"Iowa"},{"abv":9,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"An unfiltered and 100% bottle-conditioned version of 90 Minute IPA that's dry-hopped with Palisade, Amarillo, Simcoe, Cascade, CTZ, and Willamette hops. Brewed to honor the Rogue Gallery in Portland, Maine, who will also be releasing a DFH designed clothing line in the summer of '09.","ibu":51,"name":"Squall IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6,"address":"407 Radam, F200","category":"German Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"(512) ALT is a German-style amber ale that is fermented cooler than typical ales and cold conditioned like a lager. ALT means “old” in German and refers to a beer style made using ale yeast after many German brewers had switched to newly discovered lager yeast. This ale has a very smooth, yet pronounced, hop bitterness with a malty backbone and a characteristic German yeast character. Made with 98% Organic 2-row and Munch malts and US noble hops.","ibu":5,"name":"(512) ALT","state":"Texas","website":"http://512brewing.com/"},{"abv":5,"address":"1213 Veshecco Drive","category":"Other Style","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Brewery folklore tells a story about a train engineer with a passion for the taste of Railbender Ale. With every stop he made in Erie came an equal number of stops at our brewery. One extended visit to our fermenter left the engineer in a rather befuddled state of mind. On his fateful trip out of Erie that evening, his train mysteriously derailed. The engineer swears that a huge black cherry tree had fallen across the tracks as the culprit. No such tree was ever found, but the front of the locomotive was spattered with hundreds of red sports. In tribute to this folklore our expert brewers introduce Derailed Black Cherry Ale – brewed with fresh sweet black cherries and the finest malted barley to create a truly cherrylicious ale. Please enjoy responsibly, as we would never want you to get derailed!","ibu":52,"name":"Derailed Black Cherry Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.5999999046,"address":"6648 Reservoir Ln","category":"British Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Bronze medal award winner - Sweet Stout Category – California State Fair 2008 Commercial Craft Brew Competition\n\n\nDon’t be afraid of the dark. This Sweet Stout is a surprisingly charming, and yet extremely robust ale that spills a soothing bouquet of caramel, chocolate and lightly roasted oats. As a truly unique foray into the world of stout ales, this sweet stout drinks so light you might be surprised at how apt you are to enjoy the darkest of TailGate Beer’s. The flavors are so rich and smooth that this TGB Sweet Stout can cool you on the hottest of days and warm you in the worst that winter can bring. Here is heaven in a bottle. If it weren't so wrong, this is what you wish mom could have given you in your baby bottle. Treat yourself right and enjoy an experience that is the best dessert to pass through your lips since mom last made her best fruit pie for you.","ibu":6,"name":"Tailgate Sweet Stout","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":5,"address":"420 Harrison Drive","category":"Belgian and French Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"A smoked wit, you say? \n\nYup. \n\n\nResearching smoked beers led me to a world of smoked wheat beers, particularly a smoked wheat beer popular in Poland about 100 years ago. (I'll list that one as one of the Blind Bat beers when I'm happy with the test batches and am ready to offer it to the public.) I didn't find anything about smoked wit beers, but decided to experiment a bit (a wit is a wheat beer). I like it, and hope you will too. \n\n\nPictured on the label is Long Island's old Walt Whitman, enjoying a smoke and a book in what is purported to be his favorite spot in his native West Hills. Long Island's springtime is awakening all around him.","ibu":46,"name":"Old Walt Smoked Wit","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":7.5,"address":"237 Joseph Campau Street","category":"German Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"A traditional german helles bock, golden in color and brewed with only the finest imported malt and hops. The distinct malty sweetness is balanced by a pronounced hop finish. Brewed to Welcome the Spring Season.","ibu":113,"name":"MAI-BOCK","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":8,"address":"2051A Stoneman Circle","category":"German Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":53,"name":"Heavy Weizen Imperial Unfiltered Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":11.95997505340709,"address":"375 Water Street","category":"British Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"There are some things in life that require a certain sense of bravado: these might include ordering a quadruple espresso, deciding to sleep without a nightlight, or choosing to live in a region of the continent that is gradually sinking into the Pacific Ocean. If you're no longer scared of the dark, then there's no reason to be afraid of our stout. A generous portion of rolled oats and lots of black roasted barley give this beer a warm, roasted nose, and a distinct dryness that succumbs to waves of lingering satisfaction.","ibu":51,"name":"Heroica Oatmeal Stout","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","description":"A rich, creamy stout with roasted chocolate flavors. A perfect dessert beer.","ibu":52,"name":"Double Chocolate Stout","website":"http://www.youngs.co.uk"},{"abv":5,"category":"German Lager","city":"Sopron","country":"Hungary","ibu":23,"name":"Soproni","website":"http://www.heinekenhungaria.hu/"},{"abv":5.8000001907000005,"address":"7160 Oliver Street","category":"North American Ale","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":10,"name":"India Pale Ale","state":"British Columbia"},{"abv":7.126291330303562,"address":"202 - 13018 80th Avenue","category":"North American Ale","city":"Surrey","country":"Canada","ibu":72,"name":"Pale Ale","state":"British Columbia"},{"abv":4.8000001907000005,"address":"Friedhofstrae 20-36","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":52,"name":"Edel-Pils","state":"Baden-Wrttemberg"},{"abv":6.477717251933106,"address":"11337 Davenport St.","category":"North American Ale","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":9,"name":"Harvest Brown","state":"Nebraska"},{"abv":9,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":42,"name":"Triple","state":"Lige"},{"abv":4.5999999046,"address":"800 East Lincoln Avenue","category":"Other Style","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Light and refreshing, Easy Street Wheat is an unfiltered American-style wheat beer. Leaving in the yeast gives the beer a nice, smooth finish and a slightly citrusy flavor. Easy Street Wheat gets its name by brewers \"taking it easy\" and not filtering the beer. However, for ultimate enjoyment, we encourage you to work just a little harder in pouring it: just pour 2/3 of the beer into a glass, swirl what's left to stir up the yeast, then pour the rest and enjoy.","ibu":6,"name":"Easy Street Wheat","state":"Colorado"},{"abv":11.260000229,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":83,"name":"Old Guardian Barley Wine 2007","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.954174919167784,"address":"The Eagle Maltings","category":"North American Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":70,"name":"Black Wych Stout","state":"Oxford"},{"abv":4.5227829178946095,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":52,"name":"Lil Devil","state":"California","website":"http://alesmith.com/"},{"abv":9.617759695521293,"address":"170 Orange Avenue","category":"Irish Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"A robust porter, very dark in color and a roasted malt flavor from chocolate malts. Its slight bitterness is rightfully balanced with a sweet smooth finish. A full-bodied beer with medium hop bitterness and aroma.","ibu":108,"name":"Point Loma Porter","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":14.309366695935395,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":65,"name":"Sunny Summer Ale","state":"Minnesota"},{"abv":8.3000001907,"address":"102 South State Street","category":"German Lager","city":"Ukiah","coordinates":[39.1498,-123.208],"country":"United States","ibu":29,"name":"Emancipator","state":"California"},{"abv":6.7198354619776355,"category":"German Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":9,"name":"Winterfest Lager","state":"Delaware"},{"abv":11.876698879843419,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":98,"name":"Davie Poplar IPA","state":"North Carolina"},{"abv":3.73667367557462,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":69,"name":"Big Black Stout","state":"Texas"},{"abv":5.3000001907,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A beautiful, deep copper brown ale. It has a full, malty body with hints of chocolate, a touch of sweetness and a light hop flavor. A complex malt character is created by combining five different types of malts. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \n\n\nSaint Arnold Brown Ale is best consumed at 45-50° Fahrenheit.","ibu":47,"name":"Saint Arnold Brown Ale","state":"Texas","website":"http://www.saintarnold.com"},{"abv":12.904948083271355,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":85,"name":"Irish Ale","state":"Wisconsin"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Enjoyed alone as a winter-warmer or as the perfect finish to any fine meal, our Raspberry Imperial Stout is a wonderfully full-flavored beer with just a \"kiss\" of raspberry flavor. \n\nWhen we brew this beer we add just a touch of real raspberries during the fermentation process. The result is a modest fruit flavor which enhances--- without dominating the rich, malty, stout taste.\n\n\nOur Raspberry Imperial Stout (8.0% ABV) is great alone or as an after-dinner accompaniment. It's especially good with chocolate desserts. We brew it only during the winter months, so check out the Brewing Schedule on the \"What's New\" page for the next time it will be coming to a beer store near you.","ibu":88,"name":"Raspberry Imperial Stout","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.825006119977795,"address":"2804 13th Street","category":"Irish Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":75,"name":"Irish Porter (discontinued)","state":"Nebraska"},{"abv":1.9076650386578398,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":26,"name":"Gold Nectar","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":10.218683349305488,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":46,"name":"Best Brown","state":"California"},{"abv":12.78994717404175,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":30,"name":"Boulder Creek Pale Ale","state":"California"},{"abv":5.5999999046,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":112,"name":"DSB / Dusters Special Bitter","state":"Nebraska"},{"abv":0.8313936357873541,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":107,"name":"Bourbon Barrel Stout","state":"Washington"},{"abv":7.5,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":22,"name":"WinterFish Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.8000001907000005,"address":"1524 West Marine View Drive","category":"Irish Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":28,"name":"Porter","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":60,"name":"English Bay Pale Ale","state":"British Columbia"},{"abv":0.6497710991998606,"address":"202 - 13018 80th Avenue","category":"North American Lager","city":"Surrey","country":"Canada","ibu":104,"name":"Special Lager","state":"British Columbia"},{"abv":6.5,"address":"13450 - 102 Avenue","category":"North American Ale","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":71,"name":"Red Racer India Pale Ale","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":8.6000003815,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":46,"name":"Snow Bound Winter Ale","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":8.58720439831023,"category":"German Lager","city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":24,"name":"Original Oktoberfest","state":"Bayern"},{"abv":8,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":53,"name":"Bornem Double","state":"Oost-Vlaanderen"},{"abv":4.50538700560768,"address":"300 North Main Street","category":"German Lager","city":"Corona","coordinates":[33.8835,-117.565],"country":"United States","ibu":25,"name":"Mesa Cerveza Schnorzenboomer","state":"California"},{"abv":5,"address":"1777 Alamar Way","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":57,"name":"Climax California Classic","state":"California","website":"http://eelriverbrewing.com/"},{"abv":6.96294940506637,"address":"3301-B East Fifth Street","category":"North American Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"\"Smooth\" is the first word from your mouth after a taste of Big Bark Amber. This Vienna-style lager has a reddish-amber color with a smooth, malty flavor and low hop bitterness. It is made from Czech and German malts and German hops. \"All Bark, No Bite.\" Everyone likes this beer.","ibu":62,"name":"Big Bark Amber Lager","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":1.494810543401336,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":94,"name":"Imperial Delusion","state":"Illinois"},{"abv":3.582925607828332,"category":"British Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":14,"name":"Stock Ale #2","state":"Indiana"},{"abv":13.217783509197767,"address":"Bridge Street","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":67,"name":"Thomas Sykes Barleywine","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":5.3000001907,"address":"Schillerstrae 14","category":"German Ale","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":0,"name":"Helles Hefe Weizen","state":"Bayern"},{"abv":4.065485400260328,"address":"100 Main Street","category":"North American Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":58,"name":"IPA","state":"Wisconsin"},{"abv":5.5,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":62,"name":"Anvil Ale","state":"California","website":"http://alesmith.com/"},{"abv":6,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":101,"name":"Zwergla","state":"Bayern"},{"abv":5.375268780783604,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":76,"name":"Cuvée René Grand Cru Gueuze Lambic","state":"Vlaams Brabant"},{"abv":9.901091531138121,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":32,"name":"Maibock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":5.5,"address":"24 Kulick Road","category":"British Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"A tasty, moderately hoppy, easy to drink beer with an orange marmalade hue with a frothy, off-white head. An herbal hop aroma with a hint of lemon and pine. This beer is not overly bitter, with orangy citrus and pine hop with slight earthy notes! There is a malty biscuit flavor that balances the hops. Makes me wish I had some Fish & Chips!!","ibu":31,"name":"Colonel Blide's Cask Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":9.391689736291596,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":72,"name":"IPA Series (Horizon)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"A deep copper coloured traditional Irish Ale with highly developed and complex flavours. St Patrick’s Ale/Dark is brewed with four malts and two hops, carefully married together to complement eachother producing a satisfying full flavour, ending with a Styrian late hop for a truly brilliant finish.","ibu":62,"name":"St Patrick's Ale","state":"County Down","website":"http://slbc.ie/"},{"abv":12,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our holiday beer is a Belgian-style Dark Strong Ale, brewed with our brewery-made dark candi sugar, Munich and Vienna malts. Dark brown in color, fruity and complex with a rich malt backbone. This is a simple yet immensely complex beer meant to be savored and shared with friends and family.","ibu":50,"name":"Partridge In A Pear Tree","state":"California","website":"http://www.thebruery.com/"},{"abv":5.75,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named for mug club member and local jewelry maker, Angie Caldwell. English Maris Otter pale malt, English Crystal malt, and a blend of English and North American hops create this amber, hoppy IPA with just the right balance.","ibu":8,"name":"Hoppy Chick","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.4000000954,"address":"2501 Southwest Boulevard","category":"Belgian and French Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard’s summer seasonal is our interpretation of a classic Belgian witbier. ZÅŒN (Flemish for “sun”) combines the subtle flavors of coriander and orange peel with other traditional ingredients to create a delightful, refreshing summertime brew. Available from May through August, in bottles and draught.","ibu":97,"name":"Bouldevard ZÅŒN","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Valley Berry Wheat is a fruit beer produced using pure fruit extracts of Raspberry, Wildberry, Cherry and Blueberry. The beer has a wonderful fruity nose and a smooth clean finish.","ibu":43,"name":"Valley Berry Wheat","state":"California","website":"http://www.valleybrew.com/"},{"abv":10.300000191,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams® Imperial White is a new perspective on the classic witbier style. Witbiers are normally light and refreshing with a fruity finish and we wanted to see how these characteristics would stand up when we amped up the recipe. We were totally blown away by the flavors that were created by this beer.\n\n\nThis is not just a more intense version of our spring seasonal Samuel Adams® White Ale. Imperial White is a new recipe that stands on it own merits. In fact, it is more of a wine substitute than just another refreshing witbier. This is a beer that should be sipped and savored and you","ibu":71,"name":"Samuel Adams Imperial White","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.8000001907000005,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":66,"name":"Nectar IPA","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":12,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Palo Santo Marron (Holy Tree Brown)\n\n\nAn unfiltered, unfettered, unprecedented brown ale aged in handmade wooden brewing vessels. The caramel and vanilla complexity unique to this beer comes from the exotic Paraguayan Palo Santo wood from which these tanks were crafted. Palo Santo means \"holy tree\" and it's wood has been used in South American wine-making communities. \n\n\nThis beer is a 12% abv, highly roasty, and malty brown ale aged on the Palo Santo wood. It was a huge hit at our Rehoboth Beach brewpub when first released in November of 2006, so it's coming back... into full production!\n\n\n At 10,000 gallons each, these are the largest wooden brewing vessels built in America since before Prohibition.\n\n\nClick below to watch \"Take Time,\" the short film we released with the first full-production batch of Palo Santo Marron in February 2008.\n\n\nIt's all very exciting. We have wood. Now you do too.","ibu":31,"name":"Palo Santo Marron","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.5,"country":"Egypt","description":"Stella is the most famous brand of beer in Egypt. It has been manufactured in Egypt since the 19th century and so many Egyptian, and actually many experienced travelers, prefer it to any other kind of beer. One will not find a single bar in Egypt that doesn’t sell Stella or even have the Stella logo on the bar or shop. Stella can even be found in many bars in Europe","ibu":35,"name":"stella"},{"abv":5,"address":"8938 Krum Ave.","category":"North American Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"As refreshingly crisp as a morning swim in a Great Lake, this brew is crafted with Pils and Munich malts. The pronounced hop character of this golden lager sparks thoughts of sandy beaches and rocky islands.","ibu":114,"name":"Lager Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This recipe is the actual oldest-known fermented beverage in the world! Our recipe showcases the known ingredients of barley, white Muscat grapes, honey & saffron found in the drinking vessels in King Midas' tomb! Somewhere between a beer, wine and mead, this smooth, dry ale will please with Chardonnay or I.P.A. drinker alike.","ibu":28,"name":"Midas Touch Golden Elixir","state":"Delaware","website":"http://www.dogfish.com"},{"abv":11.30040496256316,"address":"2840 Shawano Avenue","category":"North American Lager","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":61,"name":"Wheat","state":"Wisconsin"},{"abv":13.780804053811377,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":14,"name":"Framboise","state":"Vlaams Brabant"},{"abv":12.687746322576517,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":25,"name":"Old #27 Barleywine","state":"Wisconsin"},{"abv":6,"address":"540 Clover Lane","category":"Irish Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A smooth, creamy, chocolate laden porter.","ibu":61,"name":"Pilot Rock Porter","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":13.199999809,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Arctic Devil Barley Wine, aptly named after the ferocious wolverine of the north, is an English-style (meaning malt-inclined) barley wine. Though the recipe and process for Arctic Devil have evolved over the years, it is typically brewed in January then aged in oak barrels for several months before the entire batch is blended, bottled and released on the Friday after Thanksgiving. \n\n\nIn its youth, Arctic Devil gnarls and snarls its way across the palate. Containing this beast of a beer for long periods in oak barrels--some having previously aged port, wine or whiskey--tames the unleashed malt and fierce hop flavors, melding and mellowing this powerful liquid into an incredible elixir worthy of a brewer's table. \n\n\nEach annual batch of Arctic Devil Barley Wine represents the brewers' resolve to create an intriguing and sought-after barley wine by precisely brewing to well-designed specifications, carefully selecting the type and combination of barrels to use for aging, and meticulously checking the beer as it ages. Distinct nuance and complexity are contributed by the wood's previous tenants, resulting in unique flavor profiles in each batch that continue to change over time. We invite you to savor Arctic Devil Barley Wine upon its release then cellar some for future enjoyment. \n\n\nMidnight Sun's elusive Arctic Devil Barley Wine is Alaska's most awarded barley wine.","ibu":60,"name":"Arctic Devil Barley Wine","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.2000000477,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","ibu":76,"name":"Nut Brown Ale","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"British Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"\"Not your Dad's Wimpy 30 Weight is how our original label used to describe this massive chewy and thick beer. Code named by our brewers-\"The Big Black Nasty,\" this is monstrous dark ale is brewed to no particular style. Thick and sludgy like oil from the crankcase of a wheat threshing combine, Old Viscosity blurs the boundaries of Porter, Stout, Old Ale and Barleywines.\n\n\nA blended beer that mixes old and new brewing traditions into one finished beer, Old Viscosity starts out with 80% of the packaged beer produced from a stainless steel fermentation. It then joins another 20% Barrel Aged Old Viscosity (from a previous batch) that has been aging in bourbon barrels. The blend of the two beers yields an incredibly rich and luscious ale that reveals chocolate and cocoa notes melded to silky body of burnt wood, vanilla and ash.\n\n\nMalts- Two Row, Wheat, Domestic and English Crystal, Carafa III and Chocolate Malts\n\nHops- German Magnum \n\nYeast- White Labs California Ale and Proprietary Yeast Strains\n\n\nOriginal Gravity- 1.092\n\nTerminal Gravity- 1.014\n\n10.5 % ABV\n\n\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":99,"name":"Old Viscosity","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.473572942006545,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":67,"name":"Sod House Altbier","state":"Nebraska"},{"abv":4.3000001907,"address":"1 Kendall Square #100","category":"North American Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Well balanced, medium-bodied, with a deep amber-red color, this beer's complex palate covers all the bases. A malty caramel sweetness is followed by notes of chocolate and a dry, slightly roasty finish, complemented by a touch of fruity, spicy hops.","ibu":94,"name":"Cambridge Amber","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":10.192093659817388,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":61,"name":"Rye","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.839733698781092,"category":"North American Lager","city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":113,"name":"Amber","state":"Texas"},{"abv":9.917655036254114,"category":"North American Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":68,"name":"Irish Red","state":"California"},{"abv":10.479602648292328,"address":"1800 West Fulton Street","category":"North American Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":64,"name":"Baderbräu Pilsener","state":"Illinois"},{"abv":1.338800915349374,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":11,"name":"Red Rocket Amber Ale","state":"Iowa"},{"abv":11.187256499582167,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":106,"name":"The \\\"400\\\" Honey Ale","state":"Wisconsin"},{"abv":13.975459029830489,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":56,"name":"Topping Pale Ale","state":"Iowa"},{"abv":5.1999998093,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Ichabod combines malted barley and real pumpkin with cinnamon and nutmeg in a delicious and inviting brew. A rewarding complement to many dishes, Ichabod pairs well with autumnal foods such as poultry and root vegetables. After dinner, try it with your favorite dessert!","ibu":86,"name":"Ichabod","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.1999998093,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"All the good stuff and just a little bit more. Michigan Brewing Company is proud to offer this thick and creamy stout with all the roasted, coffee-like flavor you can handle. Need we say more?","ibu":20,"name":"Superior Stout","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":3.5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"Our lightest beer in body and color, Humbles has proven to be our most popular offering.","ibu":51,"name":"Humbles Blond Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":0.3499927187556906,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"An extremely complex version of the classic Russian beer style. Roasted, black, and chocolate malts deliver multi-layered coffee and sherry notes in a surprisingly smooth package. The beer is then matured with just a kiss of real sour red cherries.","ibu":55,"name":"Sour Cherry Imperial Stout","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":6.4000000954,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","ibu":32,"name":"Georgi-Belgique","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":8.2600002289,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Our true English style IPA. Bready English Malt gives this beer a firm backbone to hang truckloads of East Kent Golding Hops on. Available on draft at the brewery and select “Beer Geek Bars” Feb. March April (if it lasts that long).","ibu":0,"name":"Bird of Prey IPA","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":3.71710031971399,"address":"3301-B East Fifth Street","category":"German Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"Modeled after the classic wheat beers of Bavaria, our HefeWeizen has a cloudy, straw-colored appearance with a thick, creamy head. It is fermented with an authentic Weizenbier yeast strain which imparts delicate notes of clove, vanilla and banana which harmonize perfectly with its mild refreshing tartness. Together these flavors create the perfect thirst quencher to beat the Texas heat. Available April - August","ibu":10,"name":"Live Oak Hefeweizen","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":4.7607854699539045,"ibu":42},{"abv":10,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Brewed for our 10th Anniversary, the Barleywine is a bottle conditioned ale that's meant to be laid down and enjoyed for years to come. Up front it has a hop nose and hop flavor on the tongue that fades into malty overtones with flavors of vanilla that go into chocolate. As it has aged, we've noticed flavors of dates and raisins as well.","ibu":36,"name":"Climax Barleywine-Style Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":7.827619568154841,"address":"100 West Main Street PO Box 432","category":"British Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Named for the spectacular and complete double rainbow that appeared in the northwest sky just outside the brewhouse during the inaugural mash in. With a foot in both the new and old worlds, this IPA is generously dry-hopped with English Fuggles, resulting in a strong, deep golden, very fresh, and fruity English flavor and aroma.","ibu":112,"name":"Double Rainbow IPA","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":13.36547815310577,"address":"9832 14th Avenue SW","category":"Irish Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":30,"name":"Blacktop Porter","state":"Washington"},{"abv":4.9253866140348,"address":"11337 Davenport St.","category":"North American Ale","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":47,"name":"Heater","state":"Nebraska"},{"abv":6.0999999046,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":31,"name":"Old Princeton Landing IPA","state":"California"},{"abv":5.3000001907,"address":"Hofgasse 6-11","city":"Traunstein","coordinates":[47.8691,12.650500000000001],"country":"Germany","ibu":56,"name":"Export-Hell","state":"Bayern"},{"abv":4.947287810814962,"address":"660 Main Road","city":"Nelson","coordinates":[40.1989,-98.0673],"country":"New Zealand","ibu":113,"name":"Malt Mac Winter Ale"},{"abv":11.203595081171695,"address":"Zornedinger Strae 2","category":"German Lager","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":70,"name":"Oktober Fest - Märzen","state":"Bayern"},{"abv":6.1500000954,"address":"7803 Ralston Road","category":"North American Ale","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":55,"name":"Black Cat Stout","state":"Colorado"},{"abv":0.9730798866189128,"address":"4500 East Sunset Road #30","category":"German Lager","city":"Henderson","coordinates":[36.0721,-115.075],"country":"United States","ibu":99,"name":"Sublimator Doppelbock","state":"Nevada"},{"abv":4.3000001907,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"Augustiner is a premium amber lager with a smooth, full-bodied flavor. From the rich copper color to the subtle caramel taste and clean finish, it’s brewed to please the beer drinker who appreciates the best. This distinctive, well-balanced brew is quickly becoming Pittsburgh’s most talked-about beer. Upgrade to Augustiner!","ibu":116,"name":"Augustiner","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":4.8000001907000005,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Long toasty days, cool breezy nights and a splash of magic provide the inspiration for the Troegs brothers’ dreamiest Single Batch creation—Dreamweaver Wheat. Combining four wheat types with Munich and Pils malts, noble Saaz hops, and a yeast strain that imparts a spicy, peppery, clove taste with a slight hint of bananas, Dreamweaver Wheat is an unfiltered blast of spicy, mouthwatering joy.","ibu":37,"name":"Dreamweaver","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"BP 597","category":"North American Lager","city":"Tahiti","coordinates":[-17.6797,-149.407],"country":"French Polynesia","ibu":57,"name":"Hinano"},{"abv":9.042608722242843,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":82,"name":"Bohemia Clásica","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":0.2217073713304496,"address":"460 West Franklin Street","category":"North American Lager","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":17,"name":"Lager","state":"North Carolina"},{"abv":5.90598771929888,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":104,"name":"Satin Stout","state":"North Carolina"},{"abv":2.5911026091775593,"address":"6863 Lundy's Lane","category":"Other Style","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":98,"name":"Kriek","state":"Ontario"},{"abv":2.2965448675412325,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":113,"name":"Barleywine","state":"California"},{"abv":5.622374189552444,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":113,"name":"Country Ale","state":"Illinois"},{"abv":6,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This 6% trans-atlantic fusion IPA is light golden in colour with tropical fruits and light caramel on the nose. The palate soon becomes assertive and resinous with the New Zealand hops balanced by the biscuit malt. The finish is aggressive and dry with the hops emerging over the warming alcohol.\n\n\nThis fresh, full flavour natural beer is our tribute to the classic IPAs of yester-year. The post modern twist is the addition of amazing fruity hops giving an explosion of tropical fruit flavours and a sharp bitter finish.","ibu":38,"name":"Punk IPA","website":"http://brewdog.com/"},{"abv":10,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"This beer is an Imperial version of our Black Strap Stout, this time brewed with MORE blackstrap molasses and MORE brown sugar, plus a whole lot more malt and hops too. Part of our FESTIVAL OF DARKNESS, this one clocks in at over 10%ABV, and is the thickest beer we've ever brewed here.","ibu":61,"name":"Toaster Imperial Stout","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":5.0999999046,"address":"717 W. 3rd Ave","category":"British Ale","city":"Anchorage","coordinates":[61.2196,-149.896],"country":"United States","description":"This tasty English pale ale gets its charm from Imported Maris Otter Pale Malt, East Kent goldings and a few secret ingredients to keep our competitiors guessing. Styled after a classic English Bitter, Urban Wilderness is supremely balanced, smooth and easy to drink.","ibu":29,"name":"Urban Wilderness English Pale","state":"Alaska","website":"http://www.alaskabeers.com/"},{"abv":6.4885695468276285,"category":"German Ale","city":"Mnchengladbach","coordinates":[51.1913,6.4421],"country":"Germany","description":"Classic German Alt","ibu":33,"name":"Hannen Alt","state":"Nordrhein-Westfalen"},{"abv":5.8000001907000005,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","ibu":4,"name":"Big Hop IPA","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":4.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Guaranteed to turn heads, this is the beer that inspired a new generation of ale drinkers. With its fruity character, and robust flavour, Coopers Pale Ale is perfect for every occasion. \n\n\nNaturally fermented in the 'Burton-on-Trent' style, a secondary fermentation creates the trademark sediment that gives 'Pale' its fine cloudy appearance. This cloudy residue can be stirred through the beer by tipping or rolling the bottle before drinking. \n\n\nPale Ale has no additives or preservatives.","ibu":58,"name":"Coopers Original Pale Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5.6999998093,"address":"281 Heinlein Strasse","category":"North American Lager","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"The name says it all, you want German this is it.","ibu":9,"name":"Marzen","state":"Michigan"},{"abv":10,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A belgian-style Strong ale fermented with blackberries and blueberries.","ibu":29,"name":"Black & Blue","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.6364660328840026,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","ibu":24,"name":"Cider Jack","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":4.6500000954,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"The National Beer of Texas\n\n\"Lone Star beer uses the finest hops from the Pacific Northwest with hearty grains from the Central and Northern Plains. The GABF recognized Lone Star as a high quality American Cream Lager by awarding it with a silver medal. Malted barley and corn extract combine to provide Lone Star with nature's finest ingredients for brewing. Lone Star's ingredients give this beer its full natural flavor. The choicest hops lend complexity and aroma to this beer, and its proprietary mashing regimen creates the perfect balance of alcohol, body, and character.","ibu":2,"name":"Lone Star","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"Select Pale and Wheat Malt, Cluster hops and a hint of Wisconsin honey give this unique refresher a clean, crisp, slightly sweet taste.","ibu":14,"name":"Leinenkugel's Honey Weiss","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.5999999046,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":7,"name":"Seamus Irish Red","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":11.5,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":28,"name":"Urthel Samaranth Quadrium Ale","state":"West-Vlaanderen"},{"abv":14.37461413562706,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":19,"name":"Navidad","state":"Washington"},{"abv":10.345900868777559,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":42,"name":"Bräustatt Pils","state":"Bayern"},{"abv":7.5,"address":"Rue de l'Abbaye 8","category":"North American Ale","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"eddish colour, almost like autumn leaves, very consistent texture with a slightly spicy aroma and an intense taste of caramel, fruit, and hints of raisins. It is only brewed about once per year, representing approximately 1% of total beer production, thus is quite difficult to obtain.","ibu":13,"name":"Rochefort 6","state":"Namur"},{"abv":4.9000000954,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":34,"name":"Weisse","state":"Bayern"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":85,"name":"Bigfoot 2006","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.4000000954,"address":"600 Brea Mall","category":"Irish Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":87,"name":"P.M. Porter","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6.6999998093,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This name became a reference. This beer is mostly pointed out with its product name: “a Paterke”. \n\n\nThis “Paterke” is a chestnut coloured dark beer with a high fermentation (6.7 alcohol content) and a full taste.","ibu":48,"name":"Pater 6","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":11.330558153061737,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":92,"name":"La Bière des Collines van de Saisis","state":"Hainaut"},{"abv":5,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":38,"name":"Tikka Gold","state":"Oost-Vlaanderen"},{"abv":6.1999998093,"address":"1520 SE Seventh Avenue","category":"North American Ale","city":"Portland","coordinates":[45.5118,-122.659],"country":"United States","ibu":73,"name":"Woody Organic IPA","state":"Oregon"},{"abv":4.900184915579478,"address":"500 Linden Street","category":"Irish Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":94,"name":"Big Shot Seasonal Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":1.1873551102921742,"address":"Victor Nonnemansstraat 40a","category":"North American Ale","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":43,"name":"Zinnebir","state":"Vlaams Brabant"},{"abv":7,"address":"7665 US Highway 2","city":"Iron River","coordinates":[47.3812,-94.6669],"country":"United States","ibu":87,"name":"Traditional Brackett","state":"Wisconsin"},{"abv":8.512931344649493,"address":"Walplein 26","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","ibu":49,"name":"Straffe Hendrik Bruin","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":10.711932716614776,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":97,"name":"Goudenband 1999","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":5.4000000954,"address":"Mrstagatan 10-12","city":"Uppsala","coordinates":[59.8544,17.6627],"country":"Sweden","ibu":55,"name":"Vrak"},{"abv":2.4687274699944783,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":19,"name":"Shamrock Stout","state":"Illinois"},{"abv":3.9686823896413994,"address":"114 North Main Street","category":"German Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":48,"name":"Hefeweizen","state":"Michigan"},{"abv":4,"category":"North American Lager","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":100,"name":"Bartles and Lager","state":"Iowa"},{"abv":4.97037278882757,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":52,"name":"Fatøl"},{"abv":2.7948991860127173,"category":"North American Lager","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":68,"name":"Wheat","state":"Wisconsin"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":26,"name":"Old Stock Ale 2002","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":8.434018392402944,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":32,"name":"Eastside Dark","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","ibu":35,"name":"Trappist Westvleteren 8","state":"West-Vlaanderen"},{"abv":11,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"Important: let this beer warm to at least 50° before enjoying. This beer is black with some ruby highlights. The nose is full of pumpkin pie spices and some alcohol. There are notes of nutmeg, caraway and vanilla. The taste starts with chocolate malt with a hint of spice and rolls into a warm spicy alcohol taste which has the effect of creating the balance that usually comes from the hop bitter. There is some hop bitter on the finish, but not much. Overall, this beer finishes relatively dry for such a big beer. As it warms, the spices move forward in the taste and the chocolate moves to the finish. The pumpkin provides a pleasant undertone and a nice mouthfeel. The spices will probably fade some over time; they mellowed considerably while still in the fermenter.","ibu":114,"name":"Divine Reserve 9","state":"Texas","website":"http://www.saintarnold.com"},{"abv":5.5,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":68,"name":"Scratch #22 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"city":"Utica","coordinates":[40.687,-73.708],"country":"United States","description":"A-It's got a nice dark tan texture to it. The description on the bottle says it all.\n\n\nS-It's got a coffee like smell to it. It smells pretty good.\n\n\nT- It tastes a tad like Bass with a hint of coffee to it. At least to me it had a coffee taste. It's got a nice even taste. It's not too strong and not too weak. It's a happy medium.\n\n\nM-It feels good when swallowing. It leaves a mild aftertaste but it's a good aftertaste.\n\n\nD-Well I drank the whole jug w/ no problem and enjoyed myself so that spoke for itself.\n\n\nOverall, I recommend this beer. If you find it, it's worth having. It goes well when watching a movie too.\n\n\nServing type: bottle","ibu":104,"name":"Mississippi Mud Black & Tan","state":"New York"},{"abv":7.6999998093,"address":"River Street, P.O. Box 276","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Pride of Milford\" is a very special ale with a tapestry of complex flavors and aromas. It is brewed with five malts and fermented with the Ringwood yeast at a higher temperature which gives this beer a uniqueness all its own. \"Pride\" has a distinctive reddish copper color. It is strong and rich beer. When \"Pride\" was first brewed in December 1999, many thought the flavor and aromas of this beer had fruit overtones. No fruit or adjunct flavoring is added to this beer. The unique flavor comes from our special brewing process.","ibu":20,"name":"Pride of Milford Special Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":4.8499999046,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A clean crisp ale with a beautiful reddish caramel color and a superb balance of hops and malts.","ibu":95,"name":"Amber Waves","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":6.1999998093,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Oktoberfest is typically available from August to November and has toasty caramel and malty flavor. It is made from German Noble Hops and massive amounts of Münich Malt, which give it an orange color.","ibu":30,"name":"Climax Oktoberfest","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":4.5,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Seven varieties of malted barley are combined to give this English-style ale its complex flavor and deep, brown color. A select British yeast culture adds a subtle fruitiness and a blend of choice hops gives this non-bitter ale a soft finish.","ibu":101,"name":"Sprecher Pub Ale","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"In tribute to its namesake god of agriculture, SATURN celebrates a bountiful Pacific Northwest hop harvest. Ample malt sets the stage for this end-of-season party. Fresh Cascade and Centennial hops from Yakima Valley mingle with Belgian yeasts to impart abundant spice and earthiness.","ibu":19,"name":"Saturn - Belgian-style Fresh Hop IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.4000000954,"address":"1075 East 20th Street","category":"German Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"As winter begins its slide toward the sunny days of spring, we bring you Glissade Golden Bock to help you enjoy the ride. Glissade is a remarkably mellow take on the traditional spring bock. With restrained sweetness, we emphasize subtle malt flavor, balanced against delicate aromas of spicy and floral European hops. This complex balance helps Glissade slide across the palate—bracing us against the last cold nights of winter, while its bright golden color turns our thoughts toward spring.","ibu":49,"name":"Glissade Golden Bock","state":"California","website":"http://www.sierranevada.com/"},{"abv":2.8379357177015296,"address":"13300 Bothell-Everett Highway #304","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":115,"name":"Nebraska Bitter","state":"Washington"},{"abv":3.5,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":50,"name":"1916 Irish Stout","state":"Nebraska"},{"abv":11.270359514177413,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":55,"name":"Traditional India Pale Ale","state":"British Columbia"},{"abv":5.20886738367706,"address":"Hohenzornstrasse 2","category":"German Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":44,"name":"Oktoberfest"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","description":"Schwarzbier means \"black beer\" in German. It is a medium-bodied, malt-accented dark brew, very opaque and deep-sepia in color, with a chewy texture and a firm, creamy, long-lasting head. In spite of its dark color, it comes across as a soft and elegant brew that is rich, mild, and surprisingly balanced. It never tastes harsh, toasty or acrid. The beer is often referred to as a Schwarzpils, a \"black Pils,\" but, unlike a blond Pils, which can be assertively bitter, the hop bitterness in Schwarzbier is always gentle and subdued.\n\n\nIn a glass, Schwarzbier looks much like a British dark ale, but looks can be deceiving. Schwarzbier, unlike a British ale, has a clean lager taste that leaves next to no perception of fruitiness on the palate. Instead, Schwarzbier produces very mild, almost bittersweet, notes of chocolate, coffee, and vanilla. Like most traditional German lagers, Schwarzbier has a malty middle, but the sweetness is never cloying or overpowering. The beer is moderately to well attenuated and the finish tends to be dry. Its alcohol level by volume is in the range of 4.5 to 5%, rarely higher. To accentuate the Schwarzbier's dark elegance and appealing head, always serve it in a tall, fluted or tulip-shaped glass.","ibu":83,"name":"Mönchshof Premium Schwarzbier","state":"Bayern"},{"abv":7,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":26,"name":"Jan de Lichte","state":"Oost-Vlaanderen"},{"abv":9.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":82,"name":"Grand Cru","state":"Hainaut"},{"abv":0.9379489297198151,"category":"North American Lager","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":82,"name":"Summer Wheat","state":"Wisconsin"},{"abv":4.835519044191444,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":58,"name":"Capital Dark Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":8.069247146013286,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":94,"name":"Smokey the Beer","state":"Wisconsin"},{"abv":6.78493439179539,"address":"233 North Water Street","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":96,"name":"Belgian Wit","state":"Wisconsin"},{"abv":10.607429142157581,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":68,"name":"Belgian Trippel","state":"Wisconsin"},{"abv":0.5867150017874556,"category":"Other Style","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":52,"name":"Cherry Ice","state":"Wisconsin"},{"abv":1.0625845614561702,"address":"233 North Water Street","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":31,"name":"Dark Belgian Wit","state":"Wisconsin"},{"abv":6.848781649275114,"address":"1035 Sterling Avenue","category":"Other Style","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":20,"name":"Chessie Cherry","state":"Illinois"},{"abv":5.5,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Golden pale ale, slightly hoppy. Brewed each May for the upcoming graduates. It took you four hard years to graduate so we made this one easy to drink. Congratulations!","ibu":116,"name":"Graduation Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"100 Industrial Way","category":"Belgian and French Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","description":"Our interpretation of a traditional Belgian wheat beer, Allagash White is unique and truly refreshing. Brewed with a generous portion of wheat and our own special blend of spices, this beer is light and slightly cloudy in appearance, with a spicy aroma. Overall, it is a beer that is very drinkable and smooth any time of the year.\n\n\n\n\nAvailable in: 12 oz and 750 ml bottles, 15.5 and 5.17 gal kegs\n\nABV: 5.0%\n\nOriginal Gravity: 1048\n\nRecommended Serving Temp: 34°F to 50°F","ibu":29,"name":"Allagash White","state":"Maine","website":"http://www.allagash.com/"},{"abv":5,"address":"2320 SE OSU Drive","category":"North American Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"In 1998 the McAleese Brothers, owners of Kells Irish Pubs in Portland, OR, Seattle, WA, and San Francisco, CA, wanted to make an American beer that would float Guinness. \n\n\nGerard and Patrick McAleese asked John Maier to create a beer with a green apple bite flavor profile. It took four batches to get it just right. John used acidulated malts imported from Europe to get the crisp, lemony/apple flavor the McAleese Brothers wanted. The bottle label reflects the McAleese family heritage, puctures the Kells Irish Pub logo, and a traditional Irish flutist. \n\n\nThe first Kells Irish Pub opened in Seattle in October 1983 in Post Alley, above the historic Pike Place Market. The restaurant will remind you of the Old Country with its warm, cozy atmosphere and traditional surroundings. Theres also a patio outside thats a great place to feel the breeze from the Puget Sound and the buzz from the Market. Kells has Seattles largest selection of Single Malt Scotch. \n\n\nThe Kells Irish Pub in Portland is a local landmark and has been named the #1 Irish Entertainment venue in America. Sit by the fire, belly up to the bar, check out the cigar room, and dont miss the St. Patricks Day Festival, the largest Irish Fest in Oregon. \n\n\nThe Pub in San Francisco is next to the historic North Beach neighborhood and reflects the Old World charm and hospitality the McAleese family brought with them from Ireland. \n\n\nKells Irish Lager has won world-wide acclaim by winning 8 medals from the World Beer Championship and a Gold Medal at the Australian International Beer Awards. \n\n\nKells Irish Lager is brewed with 7 ingredients: Great Western Pale, Crystal, Wheat and Acidulated Malts; Sterling Hops; Free Range COastal Water and Czech Pilsner Yeast.","ibu":44,"name":"Kells Irish Style Lager","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Rich brown ale perfect for the fall and winter. Plenty of malt character and smooth sweet finish give this brown ale its distinct character.","ibu":60,"name":"Best Brown Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"This dog enjoys his days in the sun... Old Scratch Amber Lager is a malty, mellow beer that is fermented at medium temperatures to develop both ale and lager characteristics. \"Gold Scratch\" raises the standard in the amber lager category.","ibu":17,"name":"Old Scratch Lager","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A deep golden IPA with a firm malt body, finishing with a big hop aroma.","ibu":53,"name":"Lucky Kat","state":"Vermont","website":"http://www.magichat.net/"},{"abv":3.910500547144249,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":42,"name":"Steam Lager","state":"Wisconsin"},{"abv":10.78582279726987,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":83,"name":"Michelob Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.0669233491937264,"address":"Dubovac 22","city":"Karlovac","coordinates":[45.4956,15.5331],"country":"Croatia","ibu":74,"name":"Crno Pivo"},{"abv":4.799368595345287,"category":"North American Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":48,"name":"El Niño Pale Ale","state":"Hawaii"},{"abv":13.640044342475708,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":9,"name":"Geordie Brown Ale","state":"Illinois"},{"abv":5.11031182268916,"category":"North American Ale","city":"Mnchengladbach","coordinates":[51.1913,6.4421],"country":"Germany","ibu":28,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":6.46464013709468,"address":"208 East River Drive","category":"North American Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":114,"name":"Old Davenport Gold","state":"Iowa"},{"abv":9,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pumking is an ode to Púca, a creature of Celtic folklore, who is both feared and respected by those who believe in it. Púca is said to waylay travelers throughout the night, tossing them on its back, and providing them the ride of their lives, from which they return forever changed. Brewed in the spirit of All Hallows Eve, a time of the year when spirits can make contact with the physical world and when magic is most potent. Pour Pumking into a goblet and allow it’s alluring spirit to overflow. As spicy aromas present themselves, let it’s deep copper color entrance you as your journey into this mystical brew has just begun. As the first drops touch your tongue a magical spell will bewitch your taste buds making it difficult to escape the Pumking.","ibu":22,"name":"Pumking Imperial Pumpkin Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":9.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":83,"name":"Big Red Imperial Red Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.3000001907,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A Bavarian black beer with distinctive carmel malt sweetness and rich creamy trademark head. Flavorful, yet smooth; it is very drinkable!","ibu":64,"name":"Saranac Black Forest","state":"New York","website":"http://www.saranac.com"},{"abv":5.613157013863069,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":27,"name":"Chaco Canyon Honey Gold","state":"Nebraska"},{"abv":0.9518882329664835,"address":"800 LaSalle Plaza","category":"North American Lager","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":24,"name":"North Star Premium Lager","state":"Minnesota"},{"abv":1.1004251781156371,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":44,"name":"Bulldog Blonde","state":"New Jersey"},{"abv":10,"address":"Douvieweg 2","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":84,"name":"Het Kapittel Abt","state":"West-Vlaanderen"},{"abv":5.807502664959866,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":24,"name":"Honey Weiss (discontinued)","state":"Wisconsin"},{"abv":5.75,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A flavorful blend of dark roasted and sweet caramel malts defines this smooth and robust lager. The rich, nourishing flavors of a full-bodied Munich bock make this Bavarian-style brew perfect for those long winter nights.","ibu":104,"name":"Winter Brew","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":0.2017570520537637,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":46,"name":"Capital Fest Beer","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.739665779416838,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":26,"name":"Old 47 Ale","state":"Wisconsin"},{"abv":12.52203065767338,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":88,"name":"Smoked Porter","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":2.5732434002199858,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":118,"name":"Wit","state":"Minnesota"},{"abv":2.79544170612727,"address":"323-C Cross Street","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","ibu":35,"name":"Irish Red","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":10.661299814039756,"address":"620 South Madison Street","category":"Irish Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Historically, porter had its heyday in 18th century London, where it was the beer of the working class. It doesn't take much to work up a thirst for this flavorful beer. The distinct roasted and chocolate notes are well balanced by a slight bitterness.","ibu":46,"name":"Pig Iron Porter","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":7.800126316281535,"address":"674 South Whitney Way","category":"Irish Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":119,"name":"Black Diamond Porter","state":"Wisconsin"},{"abv":1.4796588786733844,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":76,"name":"Pumpkin Lager","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":11.011493422700585,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":100,"name":"All Saints Belgian White Ale","state":"West-Vlaanderen"},{"abv":5,"address":"2201 Sherman Street","category":"North American Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":61,"name":"Hefeweizen","state":"Wisconsin"},{"abv":4.511564088026159,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":37,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":3.4000000954000003,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"True to its American heritage, Yuengling Light Lager is an exceptional brew that appeals to consumers who don't want to sacrifice character for a low-calorie light beer. It has been masterfully developed to maintain the full flavor profile akin to our flagship Lager brand. Skillfully pairing a caramel malt flavor and mild hop character creates a beautifully rich-colored beer with deep amber highlights that finishes smooth and clean. With only 99 calories, Yuengling Light Lager is a uniquely refreshing beer that brings new dimension to the meaning light beer.","ibu":46,"name":"Yuengling Lager Light","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":8.799821557825148,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":8,"name":"Pale Ale","state":"California"},{"abv":5.861125216061087,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":26,"name":"Stillwater Stout","state":"California"},{"abv":2.975468283840863,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":21,"name":"Amber Ale","state":"Oregon"},{"abv":3.2619407300226544,"address":"101 East Franklin Street","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":58,"name":"Bitter","state":"North Carolina"},{"abv":4,"address":"State Highway 2","category":"North American Ale","city":"Mangatainoka","country":"New Zealand","ibu":116,"name":"East India Pale Ale"},{"abv":5,"address":"New Alloa Brewery","category":"Other Style","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":73,"name":"Grozet Gooseberry and Wheat Ale","state":"Scotland"},{"abv":4,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":55,"name":"Honey and Ginger Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":14.080319963360107,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":16,"name":"Oatmeal Stout","state":"Nebraska"},{"abv":4.924933490472386,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":95,"name":"Flying Aces Ale","state":"Iowa"},{"abv":4.5014463084468606,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":16,"name":"St. Paul Special","state":"Antwerpen"},{"abv":4.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Sea Dog Raspberry Wheat Ale is a dry, crisp refreshing ale with the added essence of raspberries.","ibu":15,"name":"Sea Dog Raspberry Wheat Ale","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":7.8000001907000005,"address":"8111 Dimond Hook Drive","category":"Irish Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This version is even lovelier than the original. Share with your sweetie.","ibu":71,"name":"Oak-Aged Imperial Chocolate Pumpkin Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A Czech style Pilsner, Two Guns is golden in color with a soft malt character derived from Bohemian barley and just enough spicy bitterness to make another tasted desirable.","ibu":44,"name":"Two Guns Pilsner","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":6.4000000954,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Helles-Bock is similar to a traditional Maibock. Bocks are traditionally brewed in the winter / early spring months and are served during the spring / early summer months. The Helles Bock has a copper golden color with a brilliant white head. The body showcases a clean sweet maltiness that is offset by just enough hops to balance it. Very smooth and easy, drinkable yet deceptive at 6.4%.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":16,"name":"Baron Helles Bock","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.6999998093,"category":"North American Lager","city":"Jacksonville","coordinates":[30.3617,-81.6966],"country":"United States","ibu":56,"name":"Landshark Lager","state":"Florida","website":"http://www.landsharklager.com/"},{"abv":6,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"DOUBLE BLONDE 6°\n\nCopper-coloured beer with a honey aroma, a full and smooth flavour and a gently evolving aftertaste","ibu":52,"name":"Tongerlo Dubbel Blond","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":10.199999809,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"he third time just might be the charm—Scratch #10-2008 is our third triple in the Scratch Beer series.\n\n\nThis grand cru has been lovingly aged since late-February, yet still unleashes the slightest hint of alcohol heat.\n\n\nScratch #10-2008 also has a triple flavor inspiration combining the caramel/toffee notes of dememera sugar and molasses, with citrus and licorice flavors created by the orange peel and star anise; lastly we create a peppery/spicy finish with the same trappist yeast has been used in each Scratch Beer Triple.","ibu":50,"name":"Scratch #10 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Just another day at the bank. Very light, mild ale with a subtle hop finish. Brewed once a year in early Spring.","ibu":84,"name":"Bankers Gold","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":8.174655933748662,"ibu":96,"name":"07/22/10 08:00 PM"},{"abv":5.6999998093,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"With its deep, dark brown-black color, thick, full-bodied, velvety-smooth mouth feel, mocha character, and, strong yet subtle hop bite, Barney Flats Oatmeal Stout is one of the thickest, richest, and most complex stouts on the market today. In 1990, it became our first gold medal winner, at the Great American Beer Festival. Barney Flats was judged so superior to the other stouts that no other medals were even awarded in its catagory. Try it and see why Stewart Kallen described it as, \"Slippery, creamy, dark, and sweet as a Pacific May morning,\" in his book, The 50 Greatest Beers in the World\n\n\nBarney Flats Oatmeal Stout Most recently won the Silver Medal at the 2004 World Beer Cup® and the Bronze Medal at the 2004 GABF , as well as several other medals . Click the blue ribbon to see the entire list.\n\n\nAs with all of our products, Barney Flats Oatmeal Stout is never sterile filtered nor heat pasteurized, and should be stored in refrigeration. However, to fully enjoy its rich and complex flavor, it should be served between 40° and 45°F","ibu":23,"name":"Barney Flats Oatmeal Stout","state":"California","website":"http://avbc.com/"},{"abv":5,"address":"Jszbernyi t 7-11","category":"German Lager","city":"Budapest","coordinates":[47.4921,19.1422],"country":"Hungary","ibu":106,"name":"Dreher Classic"},{"abv":10.133027198445076,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":93,"name":"Vertical Epic 06.06.06","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5999999046,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur most popular beer, Sierra Nevada Pale Ale, is a delightful interpretation of a classic style. It has a deep amber color and an exceptionally full-bodied, complex character. Generous quantities of premium Cascade hops give the Pale Ale its fragrant bouquet and spicy flavor. \n\n\n“Sierra Nevada Pale Ale is the flagship beer, the one that made Chico famous. It is a flawless beer that opens with bright, perky high notes of maltiness and orange blossom and segues into a delectable hoppiness.”\n\n\n– Elaine Louie, Premier Beer—A Guide to America's Best Bottled Microbrews\n\n \n\n \n\n \n\nGOLD MEDAL WINNER\n\nGreat American Beer Festival (American Pale Ale: 1995, 1994, 1993; \n\nClassic English Pale Ale: 1992; Pale Ale: 1990, 1989, 1987)","ibu":7,"name":"Sierra Nevada Pale Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":9.051039194073565,"ibu":49,"name":"07/22/10 08:00 PM"},{"abv":4.6999998093,"address":"814 W Hamilton St","category":"German Lager","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Crisp Clean and refreshing Golden Lager brewed with German Malt and Hops for an authentic flavor. Pig Pen Pils is a great introduction into the world of Craft Brewed beer.","ibu":68,"name":"Pig Pen Pilsener","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":7.5,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":73,"name":"La Divine Double Blond","state":"Hainaut"},{"abv":1.2464301525671218,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":95,"name":"BiFröst Winter Ale","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":10.830059033010146,"address":"15133 Highway 10","category":"Irish Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":37,"name":"Old Sullivan Porter","state":"British Columbia"},{"abv":6.650815400121527,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":32,"name":"Dunkel"},{"abv":5,"address":"rue du Castel, 19","city":"Irchonwelz","coordinates":[50.620400000000004,3.7592],"country":"Belgium","ibu":76,"name":"Saison Voisin","state":"Hainaut"},{"abv":1.2125260916222391,"address":"1110 Westloop Center","category":"North American Lager","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":5,"name":"Wildcat Wheat","state":"Kansas"},{"abv":14.435541677240977,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":106,"name":"XX Black Angus Stout","state":"Kansas"},{"abv":1.790153267406912,"address":"551 Clair Road West","category":"North American Lager","city":"Guelph","coordinates":[43.487,-80.2068],"country":"Canada","ibu":80,"name":"Original Dark","state":"Ontario"},{"abv":5.5,"address":"Westgate Street","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":98,"name":"St. Edmund English Ale","state":"Suffolk"},{"abv":13.838138554375355,"address":"Hofbräuallee 1","category":"German Ale","city":"München","country":"Germany","ibu":90,"name":"Münchner Kindl Weissbier / Münchner Weisse","state":"Bayern"},{"abv":5.167234908854176,"address":"Holstenstrae 224","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":60,"name":"Edel","state":"Hamburg"},{"abv":6.948039333701816,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":10,"name":"Weissbier Dunkel","state":"Hessen"},{"abv":0.4885354429786348,"category":"British Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":80,"name":"Madelia Mild","state":"Minnesota"},{"abv":14.49959771787026,"address":"2804 13th Street","category":"Belgian and French Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":29,"name":"Double Gueuze (discontinued)","state":"Nebraska"},{"abv":8.303641694210857,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":56,"name":"Cream Ale","state":"Nebraska"},{"abv":0.9584800088477607,"address":"170 Orange Avenue","category":"German Lager","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"This golden colored ale is smooth, light in flavor, crisp and very similar to a European-style pilsner. Our Golden ale is delicately hopped with traditional pilsner style Czech Saaz hops. It is one of our most popular beers and considered our gateway beer.","ibu":111,"name":"Coronado Golden Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.5,"category":"German Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":47,"name":"Hazy Daze Hefeweizen","state":"California"},{"abv":6.6999998093,"address":"Trappistenweg 23","category":"North American Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The latest acquisition “Grottenbier” was created by Master Brewer Pierre Celis. It is an aromatic dark beer with 6.5% alcohol content.\n\n\nIn the marl pits in Kanne ( Belgium) and Valkenburg (the Netherlands), deep under the ground, you can taste the Grottenbier in a constant temperature of 11° Celsius.\n\n\nAs it is the case with Champagne, the bottles are placed in a “pupitre” with results in an additional fermentation. \n\n\nThis beer with a high fermentation with a second fermentation in the bottle has been pointed out as one of the best 10 present-day beers by beer guru Michael Jackson.","ibu":52,"name":"Grotten Brown","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":6.3000001907,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":14,"name":"Farmhouse Reserve","state":"Minnesota"},{"abv":13.094438546933528,"category":"North American Ale","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":5,"name":"Pale Ale","state":"Delaware"},{"abv":7.6999998093,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","ibu":109,"name":"Batch 666","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":8.6000003815,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Black as night, this coffee stout is thick, rich and full of real coffee flavor. Brewed with the Terrapin Wake-n-Bake coffee blend created by Terrapin & Jittery Joe’s Coffee.","ibu":43,"name":"Terrapin Coffee Oatmeal Imperial Stout","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":6.5999999046,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"A Belgian Flanders Style Red Ale refermented with a sweet blend of fresh whole Northwest cherries. This beer spent more than six months of lactic fermentation and aging in small French oak wine barrels before being hand-bottled.","ibu":16,"name":"Cascade Kreik Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":7,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"OK, what do you get when we toss pale malted barley, pumpkin and spices into a stainless steel cauldron then stir in some magic? Uh, Trickster! The “magic” is actually mischievous Belgian yeast at play with cardamom, nutmeg and coriander. This spooky cool brew will make your glass glow bright despite the gloominess of the season. \n\n\nDesigned to conjure up a little fun during the darkening days of autumn, Trickster is a frivolous concoction of earthy pumpkin, comforting malt, and lively spices. This makes Trickster the brew to accompany your post-winterizing duties, family fall dinners, ghost stories, U-boast-iT stories, and “supposedly haunted” garage parties. \n\n\nBut the flavor range of Trickster also pairs well with citrusy and spicy cuisine. Try a glowing glass with your favorite dishes that incorporate nutmeg, cardamom or coriander—like Thai curries, Swedish meatballs, gingerbread, roasted pumpkin soup. Add Trickster to soups and sauces, batters and doughs, glasses and mugs.","ibu":14,"name":"Trickster Belgian-style Pumpkin Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.8000001907000005,"address":"45980 Waterview Plaza","category":"British Ale","city":"Sterling","coordinates":[39.0324,-77.4097],"country":"United States","description":"A rich, smooth...long dry-roast finish...ebony","ibu":54,"name":"Black Stallion Oatmeal Stout","state":"Virginia","website":"http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"},{"abv":7.474423812664376,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A double IPA that is sure to make you as all-knowing as Pythia. It’s just a matter of interpretation.","ibu":94,"name":"The Oracle DIPA","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":8,"address":"2516 Market Avenue","category":"German Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":43,"name":"Glockenspiel","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5.5999999046,"address":"8 Fourth Street","category":"German Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"This special German-style ale is still made faithfully in Dusseldorf, just down the road from Cologne. Our interpretation is light brown in color and cleanly malty, with a crisp hoppy bitterness in the finish. \n\nBrewed with organic Pilsner and Munich malt; Chocolate and wheat malt, and imported Spalt hops.","ibu":96,"name":"Double Mountain Altbier","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Launched in the year 1983, Haywards 5000 is synonymous with strong beer in India. Haywards 5000 is brewed with the choicest of malts and hops lending itself to a unique flavour profile to suit the Indian taste and preference. Haywards 5000 is the hallmark of original and authentic strong beer which other beer brands aspire for. With such credentials, it is not surprising to see men get together over Haywards 5000. It is the language of friendship amongst men who are proud of their masculinity and look forward to a great time with their friends and peers .\n\n\nhttp://www.sabmiller.in/brands_haywards_5000.html","ibu":111,"name":"Haywords 5000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"This American-style, hop-driven beer starts with a citrus flavor, followed by two layers of caramel, and finishes on a hoppy note.","ibu":60,"name":"Climax IPA","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":0.7929795572869602,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Proof that all dark beers, like trout, are not created equal. Chocolate and caramel malt flavors are at the heart of this very accessible and drinkable brown ale.","ibu":90,"name":"Brookie Brown Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":0.05504678261729401,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"Brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium.\n\n\nA Belgian inspired amber. This beer gets it’s color from the candi sugar, as it is made without dark or crystal malts.","ibu":49,"name":"Lectio Divina","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":11.638776829505103,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","description":"Kosmos Spoetzl knew how to brew great beer. Born in Bavaria, Kosmos’ mastery of German brewing carried him as far as Egypt before he found his way to the small Texas town of Shiner. Our proud brewery still carries his name and commitment to excellence in brewing. This full-flavored, hop-jacked lager is every bit as unique as the man himself and our way of saluting the brewmaster who started it all.","ibu":2,"name":"Shiner Kosmos Reserve","state":"Texas","website":"http://www.shiner.com"},{"abv":5.5999999046,"address":"1208 14th Avenue","category":"North American Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":40,"name":"Berghoff Original Lager Beer","state":"Wisconsin"},{"abv":1.494022746062439,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":44,"name":"Red Eye Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.5999999046,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"At Weyerbacher we've created a Winter Ale that is a must for any malty beer lover. Winner of a Silver Medal in the 1998 World Beer Championships, Weyerbacher Winter Ale is brewed with deep-roasted chocolate malt. The taste predominates with a warm, roasty flavor, balanced out with a slightly dry finish. It's smooth but not cloying, with a warming belt of alcohol (5.6% ABV).\n\n\nAlthough winter ales predate history, they are believed to have their origin in the pagan celebrations of winter solstice. Later, when monasteries produced the local brew, winter ales were made each year to commemorate the birth of Christ. Back then, winter ales were brewed full-bodied as a source of nutrition for the upcoming winter months. Today, winter ales are typified by their seasonality, their rich, malty flavors and by their deep, dark coloration.\n\n\nGenerally available November-March, Weyerbacher Winter Ale is the perfect libation for a winter meal, with good friends, or beside a warm fire fending off a cold winter night.","ibu":21,"name":"Winter Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.4000000954,"address":"50 N. Cameron St.","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This full-bodied dry cousin of the stout has a slight roast flavor and is dark brown in color with a red hue. This is London’s classic beer style named for the baggage carriers that appreciated it so much.\n\nGovernor Pennypacker was one of Pennsylvania’s more notable politicians. He oversaw the construction and held the lavish ceremonies designating the opening of the Commonwealth’s beautiful Capitol Building","ibu":15,"name":"Pennypacker Porter","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":10.57797608618719,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":49,"name":"ESB","state":"California"},{"abv":2.874973316867646,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":12,"name":"Stout","state":"North Carolina"},{"abv":2.187537437397001,"address":"9832 14th Avenue SW","category":"Irish Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":66,"name":"Puget Porter","state":"Washington"},{"abv":6.239948027221182,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":69,"name":"Pale Ale","state":"British Columbia"},{"abv":9,"address":"Roeselarestraat 12b","category":"Belgian and French Ale","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","description":"An arabier is a pure malt beer 8°vol/alc brewed with flower Nugget-hops from Poperinge. It has the special dry-hopping taste and aroma, so appreciated by beer lovers all over the world. It is one of the two main beers from De Dolle Brouwers throughout the year. Aging time is limited due to the fact that hop bitterness is declining with the time. Store arabier cool and dark and serve cool at 10°C. Cheers!","ibu":22,"name":"Arabier","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":5.5,"address":"2880 Wilderness Place","category":"Irish Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":57,"name":"Planet Porter / Boulder Porter","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.595453358906605,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":23,"name":"Classic Gueuze","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":5.5999999046,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Hoppy’s gift to those who like their beers Malty. Dark Caramel and Chocolate Malts lend their deep crimson silkiness, and judicious additions of Nugget and Cascade hops give just enough bitterness for balance. Ask your server’s favorite beer and it’s probably this one.","ibu":48,"name":"Stony Face Red Ale","state":"California","website":"http://www.hoppy.com"},{"abv":5,"address":"1106 N. Charles St.","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"Black, smooth and easy to drink, this is a beer for the people!","ibu":57,"name":"Proletary","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":1.2910325295916913,"address":"68 route d'Oberhausbergen","city":"Strasbourg","coordinates":[48.593,7.7149],"country":"France","ibu":100,"name":"1664"},{"abv":13.952772090318062,"address":"1100 New York Ave, NW","category":"German Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","ibu":35,"name":"St. Adrian's Alt","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":6.945315903706055,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":83,"name":"Big Horn Fort Collins Stout","state":"Wyoming"},{"abv":10.531622293690873,"address":"624 Ludington Street","category":"North American Lager","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":99,"name":"Lichthaus Lager","state":"Michigan"},{"abv":5.604474439788505,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":79,"name":"Golden Eagle Helles","state":"Ohio"},{"abv":12.371391814447799,"address":"99 Pyrmont Bridge Road","category":"Irish Ale","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":36,"name":"James Squire Porter","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":2.113098222502975,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":102,"name":"Schlafly Altbier","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":10.096967340047868,"city":"Fort Mitchell","coordinates":[39.0472,-84.5599],"country":"United States","ibu":111,"name":"Premium Verum","state":"Kentucky"},{"abv":2.6147180034233486,"address":"1028 Johnny Dodds Boulevard","category":"North American Lager","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":94,"name":"Low Country Light Lager","state":"South Carolina"},{"abv":12.987599597033286,"address":"114 North Main Street","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":98,"name":"Kölsch","state":"Michigan"},{"abv":3.3569745537559847,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":101,"name":"Double Ale","state":"Maine","website":"http://www.allagash.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"True Hefeweizen yeast and malted wheat give this ale its authentic German flavor and aroma. Hints of banana flavor and aroma are present in this medium to full bodied, pale colored cloudy, unfiltered ale.","ibu":82,"name":"Wheatland Wheat","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"As promised Founders Brewing Company has created something unlike the rest. Amongst this summers over croweded race to cloudy wheat beers, we have decided to embark down a path all our own. Using only fresh rasberries, rubaeus translates into intese flavors combined with a no hesitation malt bill. In fermentation we add fresh rasberries at five separate stages to achieve the ulttimate balance between tartness and sweetness.","ibu":25,"name":"Rubaeus","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":1.6674539516669895,"address":"Chicago IL 60612","category":"North American Lager","city":"Chicago","coordinates":[41.8817,-87.6926],"country":"United States","ibu":118,"name":"Dark Ale","state":"Illinois"},{"abv":6,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","description":"Geuze, a mixture of old and young Lambic. The young Lambic is added to cause a refermentation in the bottle making for a delightfully sparkling and dry beer that has been likened, in all seriousness, to Champagne.","ibu":57,"name":"Geuze Boon","state":"Vlaams Brabant"},{"abv":8.490666082601393,"address":"10450-L Friars Road","category":"Irish Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":35,"name":"Mission Gorge Porter","state":"California"},{"abv":7.0999999046,"address":"Naamsesteenweg 469","city":"Kerkom","coordinates":[50.7763,5.166],"country":"Belgium","ibu":106,"name":"Bloesem Bink","state":"Limburg"},{"abv":13.165834147732365,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":14,"name":"Irish Red Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":8.947707728324929,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":82,"name":"ESB","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.363858586170522,"address":"249 North Redwood Highway","category":"Irish Ale","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":100,"name":"Dark","state":"Oregon"},{"abv":10.196318421299658,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":44,"name":"Sweeney Stout","state":"Illinois"},{"abv":5,"city":"Brugge","coordinates":[51.2094,3.2252],"country":"Belgium","ibu":101,"name":"Blanche de Bruges","state":"West-Vlaanderen"},{"abv":6.1999998093,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Muse, a Farmhouse Ale, is brewed \"somewhat\" in the tradition of the style, but it has Weyerbacher fingerprints all over it! Made with Pale malt, a little carapils, raw wheat and raw oats, this warm weather seasonal is dry and ever so slightly tart on the pallet from the wheat and oats. At 6.2% abv, its a bit higher than your strictly traditional farmhouse, but not out of the realm, really. The wheat and oats makes the mouthfeel silky and light at the same time. They also bring some cloudiness to the brew, but don't be afraid! Hopped with Styrian Goldings and finished with Saaz, this beer has a noticable hoppy dryness which makes it a fine thirst quencher, something the original Farmhouse Ales were intended to be, served to workers out in the fields on hot summer days as a restorative.\n\nFermented with Forbidden Fruit yeast, at a very high temperature (78F), the spiciness developed is entirely from this traditional yeast strain, not from any kettle additions. Unfiltered, to enjoy this natural beauty, and imagine yourself out in the flat fields of Belgium! Cheers!","ibu":52,"name":"Muse Farmhouse Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.3000001907,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Bud Select is a new beer offering a bold taste with a full and distinct flavor that finishes clean. Budweiser Select was developed using two-row and roasted specialty malts for a rich color. It offers excellent drinkability and a taste that does not linger.","ibu":76,"name":"Budweiser Select","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.424745035409642,"category":"German Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":22,"name":"Oktoberfest","state":"Texas"},{"abv":4.994225676937644,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":52,"name":"Red Roost Ale","state":"California"},{"abv":3.8762025641813347,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":60,"name":"Thomas Kemper Belgian White","state":"California"},{"abv":5.0999999046,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":32,"name":"Apricot Wheat","state":"California"},{"abv":4.53714649365033,"address":"674 South Whitney Way","category":"German Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":23,"name":"Heartland Weiss","state":"Wisconsin"},{"abv":9.71088260020999,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":91,"name":"Samuel Adams Spring Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":2.7404646632236,"category":"North American Lager","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":45,"name":"El Rey Cerveza","state":"Colorado"},{"abv":10.199216667325894,"address":"540 Main Street","category":"North American Ale","city":"Longmont","coordinates":[40.1688,-105.102],"country":"United States","ibu":104,"name":"Red Alert Ale","state":"Colorado"},{"abv":9.859870039042395,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":118,"name":"Guinea Pig Amber Ale","state":"Nebraska"},{"abv":7.1999998093,"address":"Innerleithen EH44 6PW","category":"British Ale","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":24,"name":"House Ale","state":"Scotland"},{"abv":7.740943968980027,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":8,"name":"Midnight Stout","state":"Michigan"},{"abv":0.11093034064812435,"address":"8308 Main Street","category":"Irish Ale","city":"Ellicott City","coordinates":[39.2684,-76.7994],"country":"United States","ibu":28,"name":"Alpenhof Baltic Porter","state":"Maryland","website":"http://www.ellicottmillsbrewing.com"},{"abv":4.1999998093,"address":"1 Jefferson Avenue","category":"Other Style","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"Get a taste of the freshest flavor under the sun - Leinenkugel’s Summer Shandy. A shandy is a lemonade flavored beer, a European favorite during the warmer months. And the light, crisp flavor makes it a great summer refresher. Each batch is carefully brewed using the finest wheat, malted barley and just a hint of real Wisconsin honey. Then, our brewmasters mix in fresh lemonade and citrus flavors to create an adventurous taste that’s perfect for those lazy days of summer.","ibu":67,"name":"Leinenkugel's Summer Shandy","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":4.9000000954,"address":"544B W. Liberty St.","category":"North American Ale","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"In the old days, runners who made it to third base were rewarded with a mug of beer! This is the way the game was meant to be played; pitchers throwing side- armed and a half barrel on the field. Our Red Legg Ale is an American Amber Ale with a rich, malty flavor, slightly sweet on the finish. An All-Star in any line- up!","ibu":58,"name":"RedLegg Ale","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A wintry amber ode to the open road. Our wintry amber ramble of sweet carmelized malt and spicy hops is for those who make their own roads. Dry hopped with simcoe hops.","ibu":99,"name":"Roxy Rolles","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Truly a worldly beer. Baltic Thunder represents the Baltic Porter style admirably. Exhibiting the enticing, toffee roast of the British porter that originated the style in the 18th century, and the soothing, subtle fruit nuance of contemporary brews that flourish from Helsinki to Vilnius today, this dark lager honors the Baltic god of thunder. Created by an inspired collaboration of brewers and tempered with a touch of turmoil, Baltic Thunder rolls on to bring you enchanting light as the darkness fades.","ibu":67,"name":"Baltic Thunder","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":3.599999904599999,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Our take on the classic light golden ale, with crisp refreshing flavors.","ibu":23,"name":"Woody's Light","state":"Michigan"},{"abv":8.3000001907,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"You've got to love coffee to truly appreciate this phenomenal brew. Brewed with an abundance of flaked oats, bitter and sweetened imported chocolates, Sumatra and Kona coffee. Breakfast Stout has an intense fresh roasted coffee nose toped with a cinnamon colored frothy head that seems to never fade and makes you wish breakfast could last forever.","ibu":73,"name":"Founders Breakfast Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.193901202519564,"ibu":97,"name":"07/22/10 08:00 PM"},{"abv":5.5999999046,"address":"1284 McD Drive","category":"North American Ale","city":"Dover","coordinates":[39.154,-75.4884],"country":"United States","ibu":76,"name":"Hop Mountain","state":"Delaware","website":"http://www.olddominion.com/"},{"abv":5,"address":"675 Merrimon Avenue","category":"British Ale","city":"Asheville","coordinates":[35.6221,-82.5536],"country":"United States","description":"Cascade hops lend this ale a lively and spirited edge that perfectly complements its effervescent amber maltiness.","ibu":55,"name":"Roland's ESB","state":"North Carolina","website":"http://www.ashevillepizza.com/"},{"abv":9,"address":"4615-B Hollins Ferry Road","category":"German Lager","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Malt focused, made with five types of grain including Vienna and Munich malts – plus a secret extra malt that we use only in our Prosit! Consider this bomber to be the burly big brother to our Clipper City MarzHon, a three year in a row winner at the Great American Beer Festival. We’ve balanced the sweetness of the malt with three kinds of hops making this one of the boldest marzen style lagers you’ll ever try.\n\n\n5 Kinds of Malt, 3 Kinds of Hops\n\nestimated ABV 9% estimated IBU 25","ibu":79,"name":"Heavy Seas Prosit! Imperial Oktoberfest Lager","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.867524216060883,"address":"1446 Garden of the Gods","category":"Belgian and French Ale","city":"Colorado Springs","coordinates":[38.8967,-104.855],"country":"United States","ibu":20,"name":"Sunna Wit","state":"Colorado","website":"http://trinitybrew.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Haywards 2000 H2K is India's only beer with an ABV of 5.5%, whilst the rest of the beers are either less than 5% or greater than 7.5% - 8%\n\n\nTaste: Rich, smooth and crisp taste \n\nMalts: Indian malts, 6 row barley \n\nHops: Hop extract from Germany and Indian hops palate \n\nColour: Gold \n\nAvailability: Parts of India \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml and 330 ml glass bottle and 330 ml cans \n\n\nhttp://www.sabmiller.in/brands_haywards_2000.html","ibu":63,"name":"Haywards 2000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A true North American IPA! All North American malts, Northwest Mt. Hood hops, and American Ale yeast all blend for a perfectly balanced bitter ale.","ibu":110,"name":"555 IPA","state":"Michigan","website":"http://liverybrew.com/"},{"abv":9.1999998093,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Imperial Stout is our take on the stouts brewed by 18th century English brewers for the Russian Imperial Court of Catherine II. The special malted barley in this intense and massive brew delivers rich flavours like dark chocolate, coffee and anise.","ibu":116,"name":"Samuel Adams Imperial Stout","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"The Calico Amber Ale was inspired by the beers of England. In England most of the beer is some kind of \"bitter\". Bitter is a style that became popular in the late 1800's. The most famous examples are brewed in Burton on Trent. This hard water gives these beer a pleasantly dry bitter finish, hence the name \"bitter.\" A brewery usually brews several bitters of various alcohol strengths. The lowest in alcohol (and usually flavor) is called \"bitter\" or \"ordinary bitter.\" A step up in alcohol and hop character gives us \"best bitter\" or \"special bitter.\" Finally a beer is made that is full of hop aroma and flavor, has a maltiness to match, and a generous amount of alcohol is called an \"extra special bitter\" or E.S.B.\n\n\nAlthough inspired by the British Ales Ballast Point Calico Amber Ale uses distinctive American hops, which give not only the crisp bitterness to balance the malt, but also a hint of floral aroma. We brew Calico Amber Ale with 100% malt and use 4 different malts to give it a rich complexity. The blend of crystal malts give it flavors including toffee and caramel. A blend of American Cascade and Centennial hops provide a counterpoint to the malt. Finally our proprietary yeast provides a fruity background and a Madeira like richness that rounds out this gold medal winning ale.","ibu":67,"name":"Calico Amber Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Dark and full-bodied, Mammoth Extra Stout boasts a well-rounded melange of rich flavors, including chocolate, caramel, coffee, nut and date. Huge portions of pale and specialty malts give this mammoth brew a complex yet exceptionally smooth palate. Hops provide balance without overpowering the chewy malt profile.","ibu":119,"name":"Mammoth Extra Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5,"address":"14600 East Eleven Mile Road","category":"British Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This fine English style Best Bitter is made with Imported English Pale Ale, Aromatic and Caramel malts. Galena and Willamette Hops add a moderate bittering level to make this a refreshing example of an English Bitter.","ibu":74,"name":"Breath of the Dragon English Bitter","state":"Michigan"},{"abv":5.3000001907,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":13,"name":"Burns Scottish Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Ale","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":63,"name":"English Bay Pale Ale","state":"British Columbia"},{"abv":4.6999998093,"address":"Inveralmond Way","city":"Perth","coordinates":[56.4174,-3.4779],"country":"United Kingdom","ibu":31,"name":"Lia Fail Stone of Destiny Ale","state":"Scotland"},{"abv":5.0999999046,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Our first new year-round brand launch since 1996, Lunar Ale is in a category all its own. Brewed using a unique aromatic yeast, this refreshing variety is best described as a cloudy brown ale with a complex, malty aroma and flavor, and a crisp, dry finish.","ibu":65,"name":"Lunar Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"A dark brew full of promise. Coopers Dark Ale is a journey in taste, starting fresh and creamy, and finishing with a lingering coffee flavour. \n\n\nConditioned and naturally brewed using the top fermentation method, Coopers 'Dark' is made using roasted and chocolate malts, giving it a rich dark colour and unique flavour. \n\n\nCoopers Dark Ale has no additives and no preservatives.","ibu":92,"name":"Dark Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.384109878610653,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":116,"name":"Irish Red","state":"Nebraska"},{"abv":13.117443515986688,"address":"7474 Towne Center Parkway #101","category":"Irish Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":47,"name":"Porter","state":"Nebraska"},{"abv":5.873706612442817,"address":"3945 Second Street South","category":"German Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":49,"name":"Oktoberfest","state":"Minnesota"},{"abv":1.159689640116559,"category":"North American Ale","city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":1,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":4.836924161114492,"category":"North American Lager","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":36,"name":"Adler Bräu Eagle Lager","state":"Wisconsin"},{"abv":8.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":28,"name":"Vertical Epic 04.04.04","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.338365016111657,"address":"111 Main Street","category":"North American Lager","city":"Lucan","coordinates":[44.4105,-95.4107],"country":"United States","ibu":36,"name":"Brau Light","state":"Minnesota","website":"http://www.braubrothersbrewing.com/"},{"abv":3.2999999523,"address":"23 South Main Street","category":"British Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An American mild ale brewed with Horizon hops. The crisp, bitter finish is helpd up by a balanced malt body.","ibu":24,"name":"Shut The Hell Up","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":0.4661656683622939,"address":"618 S. Wheeling Ave","category":"British Ale","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":64,"name":"McNellie's Pub Ale","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":5.6999998093,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":48,"name":"Gordon Biersch Marzen","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":7,"address":"529 Grant St. Suite B","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Orthus was the two-headed hell hound brother of Cerberus, the three-headed dog that guarded the gates of hell. Orthus is a Belgian Dubbel brown in color, 7 grains, 3 hops, Trappist high gravity yeast. Very Drinkable.","ibu":108,"name":"Orthus Belgian Dubbel","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.5999999046,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Tawny amber in color with a coffee aroma and tight head. A delicate roasted malt accent, generous use of hops and a smooth finish. American Amber, originally known as Ashland Amber (created at Rogues original brewpub in Ashland, Oregon which was destroyed by flooding several years ago), is created from Northwest Harrington and Klages, 95-115 and 135-165 Crystal Malts. Kent Golding and Cascade Hops. American Amber is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft.","ibu":106,"name":"American Amber Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.5,"address":"569 Main St","category":"Belgian and French Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"Aged for over a year! This traditional classic Belgisn style lambic is brewed using several varieties of Belgian lambic yeast and a generous amount of black currant concentrate to create a complex tart flavor. This brew is sure to become a Brew Works favorite!","ibu":61,"name":"Cassis Reserve Lambic ‘06","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":8,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Named Cinq Cents in 75 cl (25.4 fl.oz.) bottles, this beer with its typical golden colour, its slightly hazy appearance and its fine head is especially characterised by its aroma which results from an agreeable combination of fresh hops and yeast. \n\n\nThe beer's flavour, as sensed in the mouth, comes from the smell of hops: above all it is the fruity notes of muscat and raisins that give this beer a particularly attractive aroma. \n\n\nThe aroma complements the touch of bitterness. There is no acidity, but an after-bitterness which melts in the mouth.\n\n\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised.","ibu":4,"name":"Chimay Triple (Chimay White)","website":"http://www.chimay.com"},{"abv":1.8498540218504478,"category":"North American Lager","city":"LaSalle","coordinates":[45.4289,-73.6313],"country":"Canada","ibu":37,"name":"Special Amber Lager","state":"Quebec"},{"abv":1.3914545531514388,"address":"149 Steele Street","category":"North American Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":90,"name":"Clearwater Light","state":"Colorado"},{"abv":7.17517012571265,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":72,"name":"Our Special Ale 1994","state":"California"},{"abv":3.4077870264469814,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":105,"name":"Art Schmidt Pilsner","state":"Wisconsin"},{"abv":0.5258153013804401,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":3,"name":"Trolleycar Stout","state":"Wisconsin"},{"abv":11.278972629710006,"address":"345 Healdsburg Avenue","category":"British Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","ibu":46,"name":"Heritage Scottish Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":6,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Pale malt flavors are balanced with a rich hop character and a light fruit bouquet in this seasonal spring lager. Traditional dry-hopping and extended aging give this blonde bock a distinctive flowery aroma and a potent kick.","ibu":3,"name":"Sprecher Maibock","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":6,"address":"pastoor de katerstraat 24","category":"North American Ale","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"pure malt blond ale with a touch of wheat malt.\n\ngreat hop-aroma due to hop-filtering the hot wort.\n\nbottle-conditioned.","ibu":116,"name":"Noblesse","website":"http://www.dedochtervandekorenaar.be"},{"abv":2.9483842964086735,"address":"375 Water Street","category":"German Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our Pilsner is a true beer drinker's beer inspired by the first golden lagers brewed in the Czech town of Pilsn. This full-bodied lager is hopped with copious amounts of Sterling hops, lending it a refreshing, citrusy finish.","ibu":95,"name":"Pilsner","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.1999998093,"address":"30 Germania Street","category":"Other Style","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"right and citrusy, brewed with mysterious grains of paradise.\n\nSamuel Adams® Summer Ale is an American wheat ale. This summer seasonal uses malted wheat as well as lemon zest and grains of paradise, a rare pepper from Africa first used as a brewing spice in the 13th Century to create a crisp and spicy flavor and body. The ale fermentation imparts a background tropical fruit note reminiscent of mangos and peaches. All of these come together to create a quenching, clean finishing beer perfect for those warm Summer days","ibu":75,"name":"Samuel Adams Summer Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":4.5999999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"It took “The Beer Drinker’s Beer” to introduce a real draft in a can—and you can still taste that milestone in brewing history today with every can of Piels. Our Draft Style delivers unsurpassed flavor and character like it was drawn straight from the tap!","ibu":35,"name":"Piels Draft","state":"Texas","website":"http://www.pabst.com/"},{"abv":6.8000001907000005,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Oatmeal Stout is our interpretation of the classic dry stout style. Dark and creamy with hints of chocolate and black currants, our Oatmeal Stout includes a healthy dose of Centennial and Chinook hops creating a unique stout perfect for the late Fall and Winter.","ibu":17,"name":"Oatmeal Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.1999998093,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The Troegenator Double Bock, is a dark, strong lager (8.2% abv). It pours into a glass with a bronze to brown color, fluffy white head and bready malt aroma. The Troegenator leaves a rich, warming feeling and subtle spicy flavors. The style, Double Bock, dates back a century or so ago. During periods of fasting without solid foods, the Monastic brewers relied on the double bock; a stronger, richer beer to fulfill their basic nutritional needs. Known to them as \"liquid bread,\" a double bock has a strong malt aroma and chewy rich body. Traditionally these brewers ended the name of their double bock with the suffix \"ator\", ex. Celabrator, Illuminator, Subliminator... In the spirit of the tradition we give you the Troegenator to provide warmth and richness through the early spring months. A double bock of epic proportions, beware,\n\nthe Troegenator is deceiving smooth and delicious.","ibu":29,"name":"Troegenator Double Bock","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":13.483845966385827,"address":"High Street","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":110,"name":"Winter Welcome 1996-1997","state":"North Yorkshire"},{"abv":14.858997228550892,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":69,"name":"Amber Ale","state":"Massachusetts"},{"abv":0.09224856672815696,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":104,"name":"DPA","state":"California"},{"abv":5.5999999046,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Total Eclipse Black Ale has been described as similar to a light, dry stout. Characterized by its distinctive hop aroma and rich, black color, Total Eclipse redefines the way you think about a dark ale. Brewed at a low temperature to create a refreshingly dry finish, Total Eclipse uses only the finest two row malted barley and hops grown in the great Pacific Northwest. This combination results in a clean, crisp, hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity. \n\nIt’s “totally” out of this world delicious!!!","ibu":114,"name":"Total Eclipse Black Ale","state":"California","website":"http://www.hoppy.com"},{"abv":1.6177327492275895,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":40,"name":"Downtown Brown","state":"Texas"},{"abv":14.864515166131905,"category":"North American Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":62,"name":"Yellow Rose Cream Ale","state":"Texas"},{"abv":1.3549519712621372,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":117,"name":"Buffalo Ale","state":"Texas"},{"abv":11.489286195714994,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":41,"name":"Eccentric Ale","state":"Nebraska"},{"abv":8,"address":"1257, Kounsosu","category":"North American Ale","city":"Ibaraki","country":"Japan","description":"Dark ale with a tan head. Subtle sake flavor from cask aging.","ibu":69,"name":"Hitachino Nest XH","state":"Kanto"},{"abv":15,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"A barley wine style ale brewed to 15% alc with hints of raisin, chocolate, carmel, sherry, cherry, and alcohol, just to name a few and this beer will only get better with age.","ibu":0,"name":"Three Guy Off The Scale Barley Wine","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":4.5999999046,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Strike Out\" is brewed with 6 malts including a balanced portion of chocolate and crystal malts. It is also brewed with 5% flaked oats for a velvet-like mouth feel. English pale, Munich and black malt, plus roasted barley round out the malt bill. Considerably lower in alcohol than both Benchwarmer Porter and Old Slugger Pale Ale, \"Strike Out\" is a well-rounded stout, opaque black in color with a roasted palate.","ibu":92,"name":"Strike Out Stout","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":4.5999999046,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"One of the most award-winning American style pale ales in the country. This is the American beer style that started a revolution in taste. We’ve taken the classic British pale ale and elevated it with a wonderful dose of northwest American hops. A crisp floral hop aroma precedes a medium-bodied clean finishing ale.","ibu":67,"name":"Firestole Pale 31","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.7199197211883153,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":38,"name":"Timmermans Framboise","website":"http://www.anthonymartin.be/"},{"abv":4.9000000954,"category":"German Lager","city":"Steinberg-Wernesgrün, Germany","country":"Germany","description":"A classic German-style Pils","ibu":35,"name":"Wernesgrüner Pils Legende","website":"http://www.wernesgruener.de/"},{"abv":4.5,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Straight from the heart of the City of Brotherly Love comes a dark and chocolatey seductive little stout dominated by roasted malt flavor. This is one Philly favorite that won't break your heart and will always love you back.","ibu":55,"name":"Yards Love Stout","state":"Pennsylvania"},{"abv":6,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Our version of India Pale Ale. Brewed with European malts and Northwest hops and then generously Dry Hopped with Cascade Hops for a nice citrus finish. Truly a Salvation for all Hop Heads.","ibu":36,"name":"Salvation","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.5999999046,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":82,"name":"Wilsteraner Altbier","state":"Nebraska"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":57,"name":"Kitsilano Maple Cream Ale","state":"British Columbia"},{"abv":0.7942660634348797,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":83,"name":"Dunkles Weissbier","state":"Bayern"},{"abv":6.5999999046,"address":"500 Linden Street","category":"British Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Pull on your wool socks and crack open a 2° Below Ale. This tasty winter warmer started life as a small batch beer brewed for the Al Johnson Uphill Downhill – a telemark ski race in Crested Butte, Colorado. The Uphill Downhill celebrates the exploits of Al Johnson, letter carrier extraordinaire, who delivered mail by ski in the late 1800’s. Dry hopping during fermentation creates a floral nose with a hint of pepper and spicy, subtle undertones. 2° Below provides a bright, hoppy palate and a cheery warm afterglow.","ibu":68,"name":"2° Below","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.362094291491667,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":83,"name":"Stout","state":"California"},{"abv":1.1770411505657719,"address":"519 Seabright Avenue #107","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":38,"name":"Leroy Barleywine","state":"California"},{"abv":6.4000000954,"address":"506 Columbia Street","category":"German Lager","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":81,"name":"LTD 02 Lager","state":"Oregon"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":32,"name":"Mullin Brown","state":"Iowa"},{"abv":12.316871492559628,"category":"North American Lager","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":43,"name":"Wheat","state":"Wisconsin"},{"abv":9.5,"address":"ul. Browarna 88","category":"North American Ale","city":"Zywiec","coordinates":[49.6622,19.1742],"country":"Poland","ibu":21,"name":"Porter","website":"http://www.zywiec.com.pl/"},{"abv":3.713151065261424,"address":"4250 Lone Tree Way","category":"North American Ale","city":"Antioch","coordinates":[37.9669,-121.783],"country":"United States","ibu":62,"name":"IPA","state":"California"},{"abv":14.770950146574704,"address":"104 Village Place","city":"Dillon","coordinates":[39.6282,-106.047],"country":"United States","ibu":95,"name":"Pallavicini Pilsner","state":"Colorado"},{"abv":8.593600714869646,"address":"5049 Sixth Street","category":"British Ale","city":"Carpinteria","country":"United States","ibu":85,"name":"Jubilee Ale","state":"California"},{"abv":7.25,"address":"1106 N. Charles St.","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"Brewer's Art's answer to the Belgian \"devil\" beers (i.e. Lucifer, Duvel, etc.). Both rich and dry, this beer is all too easy to consume in large quantities. Hopped with Styrian Goldings.","ibu":45,"name":"Ozzy","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":14.074485270010298,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A ruby-red raspberry beer with a luscious, pink head\n\n\nOur Frambozen is inspired by the centuries old Belgian tradition of brewing beer with raspberries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Fraser Valley raspberries. The result is a ruby-red fruit beer with a intense raspberry flavour, a nice tart finish and a luscious pink head.","ibu":25,"name":"Frambozen","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":7.989949759740097,"category":"German Lager","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":87,"name":"Oktoberfest","state":"Texas"},{"abv":12.864612998446844,"address":"2004 Capitol Avenue","city":"Sacramento","coordinates":[38.5731,-121.481],"country":"United States","ibu":42,"name":"Blond Barleywine","state":"California"},{"abv":11.756931929441908,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":113,"name":"Avalanche Amber","state":"Nebraska"},{"abv":5.363500734035621,"address":"610 Main Street","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":68,"name":"Barely Blond","state":"South Dakota"},{"abv":0.39442984892625654,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":55,"name":"Belgian Ale (discontinued)","state":"Nebraska"},{"abv":8.139609345030296,"address":"128 West Main Street","city":"West Dundee","coordinates":[42.0981,-88.2783],"country":"United States","ibu":114,"name":"German Pilsner","state":"Illinois"},{"abv":9.966368665265433,"address":"61 Brookline Avenue","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":53,"name":"Kenmore Kölsch","state":"Massachusetts"},{"abv":2.8988834332052402,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":62,"name":"Classic Stout","state":"Massachusetts"},{"abv":4.9000000954,"address":"AB43 8UE","category":"German Lager","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A Lager that actually tastes of something?\n\n\nYou have to be kidding, right?\n\n\n77 lager is made with 100% malt and whole leaf hops.\n\n\nIt contains no preservatives, additives, cheap substitutes or any other junk.\n\n\nMaybe we are crazy. So what?\n\n\nTaste 77 Lager and we are pretty sure you will agree that the fine line between genius and insanity has just become a little more blurred.","ibu":116,"name":"77 Lager","website":"http://brewdog.com/"},{"abv":2.448948695131623,"address":"130 W Gurley St","category":"Other Style","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":67,"name":"Willow Wheat","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","category":"German Lager","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":5,"name":"Hansa Pils","state":"Nordrhein-Westfalen"},{"abv":7.5,"address":"420 Harrison Drive","category":"German Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Malty and yeasty, with some sweetness along with hints of cloves and banana. (thanks to the yeast!) \n\n\nLow hop bitterness, highly carbonated. Unfiltered, and so a bit cloudy with that magical yeast. \n\n\nPairs well with Thai, Szechuan, Mexican, and Caribbean -- und Deutsche Nahrung! (German Food!)","ibu":35,"name":"Wheatley Hills Weizenbock","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":7,"address":"2713 El Paseo Lane","category":"Belgian and French Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"Belgian IPA, West Coast hops meet belgian yeast. Spicy, fruity and citrusy notes combine for an interesting fusion brew.","ibu":19,"name":"Abbey IPA","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"This is our flagship ale. The label for this beer is adorned with the majestic Wapiti (aka elk). Wapiti are abundant in northern Arizona. They are large and beautiful creatures, which is why we chose this animal to represent this beer. Wapiti Amber Ale is hand crafted with mountain pure water, two row malted barley, yeast and Yakima Valley hops. Our brewers use traditional methods to create this full-bodied amber ale with a distinct hoppy aroma. Wapiti Amber Ale should be enjoyed cool, not cold, to best experience the complex character and flowery aroma. Serve at 43-47 deg F.","ibu":46,"name":"Wapiti Amber Ale","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5.0999999046,"address":"225 Heritage Ave","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Named in honor of our hometown’s 375th anniversary, Smuttynose Portsmouth Lager is a full-flavored, medium bodied continental-style beer - deep golden in color, featuring a mouth-pleasing maltiness subtly balanced with spicy imported Saaz hops. One taste of this fine lager tells you this is no ordinary beer: From its mellow, velvety body to its lingering, fresh hop finish, Portsmouth Lager is smooth, complex and satisfying.","ibu":28,"name":"Portsmouth Lager","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.0999999046,"address":"40 Bowden Square","category":"German Ale","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","description":"Reddish brown coloring. Aroma is slightly sweet, much like flavoring. Very drinkable. Recommended.","ibu":62,"name":"Altbier","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5.5,"address":"Brouwerslaan 1","category":"German Lager","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Speciale Pilsner is a special version of the Grolsch Premium Pilsner. It has a fruitier taste than the Premium Pilsner.","ibu":47,"name":"Grolsch Pilsner Speciale","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":11.89455695428109,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"\"This aint your Dads malt liquor\" - Brewmaster John Maier \n\nAfter the death of his wife, Henry Jackson Smart was left to raise 6 young children alone. His courage, love, selflessness and dedication inspired his daughter, Sonora Smart Dodd, to organize the First Fathers Day on June 19th, 1910. In 1924 President Calvin Coolidge proclaimed the third Sunday in June as Fathers Day. President Nixon, in 1972, established it as a permanent day of national observance. \n\nDads is brewed with Harrington and Klages malts, Flaked Corn, Crystal Hops, Free Range Coastal Water, and Czech Pils Yeast. Available in the spring of 2005 in the classic 22-ounce Rogue micropiece.","ibu":113,"name":"Dad's Little Helper","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Extra Special Bitter Ale. Alaskan ESB is darker and hoppier and is brewed and fermented at different temperatures than our popular Alt-style Amber. It has an exquisite copper color derived from Crystal malt and an aggressive, yet pleasant hop character.\n\n\nMalty with roasted overtones, Alaskan ESB has a crisp finish resulting from the use of premium Northwest hops.\n\n\nAlaskan ESB is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year.","ibu":41,"name":"Alaskan ESB","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.1999998093,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Golden Ale. A blonde, lighter bodied beer with a floral aroma and a crisp, hoppy finish that's not bitter. The hop character of Alaskan Pale is due to dry hopping by hand during the fermentation process.\n\n\nA clean, softly malted body with a hint of citrus overtones, followed by a hop-accented dry, crisp finish.\n\n\nAlaskan Pale is made from glacier-fed water and a generous blend or European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches or rainfall we receive each year.","ibu":2,"name":"Alaskan Pale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.0999999046,"address":"312 North Lewis Road","category":"North American Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":13,"name":"Featherweight Lager","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5.9000000954,"address":"17070 Wright Plaza","category":"North American Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":99,"name":"Blackstone Stout","state":"Nebraska"},{"abv":5.5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"This Fresh Hop Pale Ale is all about celebrating the hop harvest in the fall. Fresh picked hops have to be added to the brew immediately and in abundance. Roughly 270 pounds of Crystal hops from Doug Weathers' farm outside Salem, Oregon will be added to the 50 barrel batch in addition to some dry kilned whole flower hops. That adds up to approximately 5.5 pounds of hops per barrel brewed. Another deliciously interesting beer in our Bond Street Series.","ibu":17,"name":"Hop Trip Fresh Hop Pale Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":0.3986414294130469,"address":"65 North San Pedro","category":"North American Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":37,"name":"New World Wheat","state":"California"},{"abv":2.6764934418632844,"address":"120 East Third Street","category":"Irish Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":85,"name":"Nitro Porter","state":"Nebraska"},{"abv":4.794617385813554,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":14,"name":"Cherry Rail","state":"Wisconsin"},{"abv":9.455927692500007,"category":"North American Ale","city":"Uji","country":"Japan","ibu":49,"name":"Busby Stout","state":"Kinki"},{"abv":3.8296062374791218,"city":"Germantown","coordinates":[35.0868,-89.8101],"country":"United States","ibu":109,"name":"Dunkel","state":"Tennessee"},{"abv":9.140886597913804,"address":"14800 San Pedro Avenue","category":"North American Ale","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete's Wicked Ale is an experience out of the ordinary. Our tantalizing ruby-brown ale with distinctive malts and aromatic Brewers Gold hops is sure to stir up an urge to get loose.","ibu":70,"name":"Wicked Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":4.8218854822495825,"address":"Utica NY 13502","category":"North American Lager","city":"Utica","coordinates":[43.1467,-75.1779],"country":"United States","ibu":0,"name":"Ziggy Socky Premium Lager Beer","state":"New York"},{"abv":6.304166254604339,"address":"220 North Randall Road","category":"German Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":55,"name":"Dublin Dunkelweizenbock","state":"Illinois"},{"abv":2.3615398598133064,"category":"North American Lager","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":65,"name":"Hawk Rye","state":"Iowa"},{"abv":5,"address":"110 Wisconsin Dells Parkway South","category":"German Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":22,"name":"Weissbier","state":"Wisconsin"},{"abv":13.908032251856616,"address":"Moosstrae 46","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":61,"name":"Benediktiner Dunkel","state":"Bayern"},{"abv":4.8000001907000005,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":108,"name":"Edel-Pils","state":"Bayern"},{"abv":14.757684123230966,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":22,"name":"India Pale Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":12.022930245650056,"address":"1327 North 14th Street","category":"North American Ale","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":102,"name":"Port Washington Amber Ale","state":"Wisconsin"},{"abv":13.624428853298635,"address":"PO Box 1510","category":"British Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abbey Ale is a strong malty ale brewed in the style of the Trappist Monks. 22oz bottles only","ibu":119,"name":"Abbey Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9.69282554871591,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":75,"name":"Blanche de Bruxelles Mannekin Pis","state":"Brabant Wallon"},{"abv":5.4168191839573145,"category":"German Lager","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":15,"name":"Fest","state":"Ohio"},{"abv":6.455041509824713,"address":"1130 Dublin Road","city":"Columbus","coordinates":[39.9745,-83.049],"country":"United States","ibu":109,"name":"Robert Burns Scottish Ale","state":"Ohio"},{"abv":3.6754578286562145,"category":"North American Ale","city":"Lake Barrington","coordinates":[42.2108,-88.1652],"country":"United States","ibu":82,"name":"Jack Stout","state":"Illinois"},{"abv":9.943721077528162,"address":"740 North Plankinton Avenue","category":"North American Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":56,"name":"Stillwater Stout","state":"Wisconsin"},{"abv":5.112408999667114,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The Finches will get you if you don’t watch out!\" In the early days of southern Wisconsin, falling into the clutches of the \"Fighting Finches\" was the ultimate threat. Moses Finch fathered 21 offspring whose most notable talents were stealing horses and robbing stagecoaches. From their stronghold in the impenetrable marshes west of Lake Mills, the Finches raided the farms of local settlers and held up the early travelers between Madison and Milwaukee.\n\n\nThe Finches are long gone, but their legend lives on. So enjoy a pint of our Fighting Finches Bock… or you better watch out, ‘cause the Finches are gonna get you!","ibu":80,"name":"Fighting Finches Bock","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":2.7675501132961147,"address":"3191 Golf Road","category":"German Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":35,"name":"Bavarian Weiss Beer","state":"Wisconsin"},{"abv":1.847233403214612,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":117,"name":"Pale Ale","state":"Wisconsin"},{"abv":10.568646213655041,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":114,"name":"Spéciale Noël","state":"Hainaut"},{"abv":0.11743957908280755,"address":"4700 Cherry Creek Drive South","category":"German Lager","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":37,"name":"Fall Fest","state":"Colorado"},{"abv":10.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A luxurious, warming barleywine rich with aromatic hops and dark, candied fruit character that hides its epic strength masterfully.","ibu":116,"name":"Old Horizontal","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":13.117798145855712,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":33,"name":"Rainbow Trout Stout","state":"Colorado"},{"abv":0.9062138323337265,"city":"Dorchester","country":"United Kingdom","ibu":38,"name":"Royal Oak Pale Ale","state":"Dorset"},{"abv":7.366335755770844,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":117,"name":"Christmas Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":2.1426693975160047,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","ibu":95,"name":"Doggie Style Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":11.592314200313739,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":11,"name":"India Pale Ale","state":"California"},{"abv":6.5,"address":"512 Latimer Street","category":"North American Ale","city":"Nelson","coordinates":[49.4884,-117.29],"country":"Canada","ibu":33,"name":"Paddywhack IPA","state":"British Columbia"},{"abv":2.583925689596418,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":67,"name":"Classic American Pale Ale","state":"Wisconsin"},{"abv":5.3000001907,"address":"2123 1st Avenue North","city":"Billings","coordinates":[45.7861,-108.498],"country":"United States","ibu":5,"name":"Grizzly Wulff Wheat","state":"Montana","website":"http://www.yellowstonevalleybrew.com"},{"abv":4.8000001907000005,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Our Fall release is a harvest Ale with a lighter amber color and a beige head with good retention. There is a good balance of earthy malt and a blend of floral and pine hops in the nose. Biscuit notes mixing with caramel sweetness.do their job to complement the rest of the flavors.This is an enjoyable seasonal for sure!","ibu":63,"name":"Fall Festivus Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":6.4000000954,"address":"99 Castleton Street","category":"Irish Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"A complex beer, with layers of flavors unfolding as this beer slides down your throat. Before the introduction of indirect-fired malt kilns, all beers had a smoky flavor. Today only a handful of brewers produce beer reminiscent of those of the past. We use imported German smoked malt to add depth and complexity to our Smoked Porter.","ibu":40,"name":"Captin Lawrence Smoked Porter","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":8.5,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"Lupulin Rapture Incarnate! As fervent  devotees of hops, we found ourselves on a quest to create a transcendental IPA capable of quenching our voracious lupulin desires. Our mantra became \"unity of bitterness, hop flavor and aroma.\" Enlightened, duganA IPA was born: A brutally bitter, dank, piney and resinous ale designed for those seeking a divine hop experience.","ibu":91,"name":"DuganA IPA","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":7,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"The name CascaZilla is a play on both the name of our local Cascadilla Gorge and the monster amounts of Cascade hops in this beer. This red ale gets its distinctive color from a healthy portion of caramel malt, which also lends some body and sweetness to the beer. The predominant flavor and aroma of this beer, however, is brought to you by the fresh American hops. If you haven't done so yet, treat yourself to Ithaca Beer's new monstrously hoppy Red Ale.","ibu":71,"name":"Cascazilla","state":"New York"},{"abv":2.0000795436390515,"address":"6 N. Reamstown Road","category":"German Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"Dark Dunkle style lager with an original gravity above 19 degrees Plato. Rich and malty, this is a strong bock with a mellow finish.","ibu":25,"name":"Wobbly Bob Dopplebock","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":5.8000001907000005,"address":"2516 Market Avenue","category":"Irish Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":24,"name":"Edmund Fitzgerald Porter","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Fallen Angel Golden Strong Ale, brewed on 6-6-6, is named in the tradition of Belgian golden strong ales--after the devil himself. \n\n\nMidnight Sun's Fallen Angel Golden Strong Ale is a traditional Belgian-style golden ale--beautiful gold in color with tiny, conniving bubbles forming a very thick, meticulous head. Effervescent and crisp, this seriously delicious elixir tempts the palate with apple (oh so Garden of Eden), pear and a little earthy mustiness. Fallen Angel captivates your senses with its lightness and brightness while its 8% ABV strength breathes fire into your soul, warming you from the inside out. \n\n\nAngel-like in appearance, the devil is in its strength. \n\n\nWith its introduction in 2006 and its immediate cult following, Fallen Angel is now brewed and released about once a year.","ibu":68,"name":"Fallen Angel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":18,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Too extreme to be called beer? Brewed to a colossal 45-degree plato, boiled for a full 2 hours while being continuously hopped with high-alpha American hops, then dry-hopped daily in the fermenter for a month & aged for nother month on whole-leaf hops!!! Our 120 Minute I.P.A. is by far the biggest I.P.A. ever brewed! At 20% abv and 120 ibus you can see why we call this beer THE HOLY GRAIL for hopheads!\n\n\n-changed to be 18% for aging purposes according to Dogfish Head brewery.","ibu":16,"name":"120 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10.939794550603196,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":7,"name":"Verrückte Stadt Pilsner","state":"Wisconsin"},{"abv":2.1803217833155397,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":96,"name":"Alpine Glow Red Ale","state":"New Jersey"},{"abv":4.5999999046,"address":"Wunderburg 5","city":"Bamberg","coordinates":[49.8904,10.9056],"country":"Germany","ibu":108,"name":"Bamberger Herren Pils","state":"Bayern"},{"abv":14.32507557406069,"address":"1927 West North Avenue","category":"German Ale","city":"Chicago","coordinates":[41.9104,-87.6761],"country":"United States","ibu":114,"name":"Top Heavy Hefeweizen","state":"Illinois"},{"abv":13.097289178411303,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":101,"name":"Imperial Stout","state":"Wisconsin"},{"abv":2.0331942174593607,"address":"1080 West San Marcos Boulevard","category":"North American Lager","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":46,"name":"Honey Ale","state":"California"},{"abv":9.570239868532273,"address":"7536 Fay Avenue","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":66,"name":"Pilsner","state":"California"},{"abv":14.492316412448256,"address":"4765 NE Fremont","category":"Irish Ale","city":"Portland","coordinates":[45.5484,-122.619],"country":"United States","ibu":70,"name":"Irvington Porter","state":"Oregon"},{"abv":8.1999998093,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":45,"name":"Imperial Stout","state":"California","website":"http://www.lagunitas.com/"},{"abv":3.0302631145795433,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":77,"name":"Old Guardian Barley Wine 2005","state":"California","website":"http://www.stonebrew.com/"},{"abv":10,"address":"4509 SE 23rd Avenue","category":"British Ale","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":40,"name":"Adam","state":"Oregon"},{"abv":5.908207204082827,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":91,"name":"Irish Stout","state":"Washington"},{"abv":5.3000001907,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":68,"name":"Eighty-Shilling Scottish Ale (80/-)","state":"Nebraska"},{"abv":6.5717766545217335,"address":"Weinbichl 6","category":"German Ale","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":0,"name":"Hefeweizen","state":"Baden-Wrttemberg"},{"abv":8.1000003815,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":8,"name":"Toil & Trubbel Dubbel","state":"Nebraska"},{"abv":8,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":60,"name":"Tripel","website":"http://www.latrappe.nl/"},{"abv":10.240876981807572,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":82,"name":"Cuvée des Champions 2003-2004","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":6,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"Like Hops? You'll like this fire-hued beer. This is the beer I have always dreamed of making. This is the beer that would come to mind while spending the last two years tearing down walls, hanging sheetrock, moving kegs, power washing the ceilings, arguing with various agencies, and cutting the water main. \n\n\nWithout Golden Promise malt, made by family-owned Simpsons Malt, Furious would just be pissed off-ed. From Scotland, this malt is still produced in the tradition of turning over the barley by hand, resulting in a malt that is unsurpassed in its quality. Golden Promise is also used extensively by premium whisky distilleries such as The Macallan. This malt provides the backbone for the intense hop character. Four American hop varieties are used at a rate of over three pounds per barrel. The result is a rich malt sweetness infused with bright hop flavor and aroma from beginning to end. Oh yeah, it's about 6% alcohol and around 100 IBUs.","ibu":112,"name":"Furious Beer","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":4.0999999046,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"This beer is golden in color with a light bubbly effervescence. The light body makes this lager beer appropriate for a business lunch or your evening sipping beer. The light malt flavor also accentuates the hop flavor. From the start, you will notice a fine hop aroma. As you sip the Celestial Gold, the subdued maltiness blends with a slight hop flavor. When this beer finishes, you will notice a pleasant hop bitterness. The bitterness will be mild and quite appropriate. Celestial Gold has been known to induce Celestial bliss.","ibu":41,"name":"Celestial Gold","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":4.1999998093,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Light and refreshing on the palate, our session best bitter has a classic Irish malt & traditional hop aroma. Light amber in colour, this smooth beer has hints of caramel with a woody bitterness.","ibu":13,"name":"St. Patrick's Best","state":"County Down","website":"http://slbc.ie/"},{"abv":6.5,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"This mahogany ale packs a lingering, earthy hoppiness. The addition of more than 20% rye to the grain bill gives a creamy mouthfeel and hints of spice that compliment the bitterness of hops. Subtle fruitiness come through from the Bravo hops added during the boil, but the Cluster and Liberty varieties used in dry-hopping this beer are the true flavor drivers in this spicy ale. Dark in color and intense is flavor, Scratch 25-2009 finds true balance in a beer that could have easily gone way over the top. Enjoy.","ibu":88,"name":"Scratch #25 2009 Magical Moustache Rye","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Ring Tail Pale is light in body and straw-gold in color, with a crisp hop finish. This beer is a great choice for domestic lager drinkers.","ibu":60,"name":"Ring Tail Pale Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":6,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"During even the coldest of weather, warm up to the smooth, robust taste of our Winter's Bourbon Cask Ale. Full of rich aromas that you find in the winter months, hints of vanilla and flavorful hops, this is a beer that is great for pouring into a large tulip glass and enjoying with friends around a fireplace.","ibu":88,"name":"Michelob Winter's Bourbon Cask Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.3000001907,"address":"222 West St # 46","category":"German Lager","city":"Keene","coordinates":[42.9324,-72.2867],"country":"United States","ibu":7,"name":"Elm City Schwarzbier","state":"New Hampshire","website":"http://www.elmcitybrewing.com/"},{"abv":2.7999999523,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":11,"name":"Miller Genuine Draft 64","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":3.2999999523,"address":"Kendlerstraße 1","category":"North American Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"This is a light beer with a full taste and a third less alcohol so therefore 30% less calories. It is ideal for beer lovers who prefer light beers but do not want to renounce the taste.","ibu":76,"name":"Stiegl Leicht","website":"http://www.stieglbrauerei.at/"},{"abv":3.7532334279633517,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":75,"name":"Timmermans Forest Fruit","website":"http://www.anthonymartin.be/"},{"abv":5.0999999046,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"It’s easy to forget just how dynamite a well-made pale ale can treat you. Our Pale combines softness from our Pilsner malt, a touch of sweetness from English crystal malt, and plenty of fruity, resinous Northwest hop flavor. The finish is dry, clean and refreshing.","ibu":47,"name":"Double Mountain Pale Ale","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":5.5,"address":"Domring 4-10","category":"German Ale","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":72,"name":"Konig Ludwig Weissbier","state":"Nordrhein-Westfalen"},{"abv":5.6999998093,"address":"2051A Stoneman Circle","category":"British Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":4,"name":"Southern Tier Harvest Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":3.036297978407151,"address":"12 Old Charlotte Highway","category":"Other Style","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"Our ever-changing spiced winter seasonal. A tasty brew that complements all your holiday festivities. It is typically malty in body, lightly hopped, and rounded out with spices that we vary from year to year.","ibu":104,"name":"Cold Mountain Winter Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":4.079506341925082,"address":"910 Division St","category":"British Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","ibu":27,"name":"ESB","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":0.6889775089860128,"address":"310 Commercial Drive","category":"German Lager","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"A true North German Style Pilsner. Light in body and packed full of Czech Saaz hops. The distinctive Pilsner aroma and dry, refreshing taste make a great accompaniment to a hot Vanouver day.","ibu":48,"name":"Precipitation Pilsner","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":5.3000001907,"address":"161 River Avenue","category":"North American Lager","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"TOASTED LAGER\n\n\nBlue Point Brewing's award-winning Toasted Lager is our flagship product. Copper in color this brew is made from six different malts including: English Pale, Crystal, Munich, Carapils, Wheat and Belgian Caravienna. Toasted Lager displays a balanced flavor of malt and hop which makes for easy drinking. Special lager yeast is used to produce that long lasting, smooth finish. The \"toasted\" part of the name refers to our direct-fire brew kettle’s hot flames that impart a toasted flavor to our most popular microbrew.","ibu":80,"name":"Toasted Lager","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":5,"address":"255 Bremner Road","category":"North American Lager","city":"Toronto","coordinates":[43.6414,-79.3869],"country":"Canada","description":"Good clean lager.","ibu":51,"name":"Steamwhistle Lager","state":"ON","website":"http://www.steamwhistle.ca"},{"abv":5.5,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A crisp, well-balanced, refreshing amber. Simplicity is the key to this recipe.","ibu":35,"name":"Ashland Amber","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":4.5,"address":"350 West Eleventh Street","category":"Other Style","city":"Bloomington","coordinates":[39.1733,-86.5369],"country":"United States","ibu":113,"name":"Upland Wheat Ale","state":"Indiana","website":"http://www.uplandbeer.com"},{"abv":4,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"The dominating character of this beer is of course peach flavor and aroma. It is a little more subtle than most fruit beers which makes it more approachable. Light in body and color. \n\n\nAlcohol content of approximately 4.0% by volume (ALWAYS ON TAP!!)","ibu":47,"name":"Arizona Peach","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.850334119185424,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":119,"name":"Full Tilt IPA","state":"Wisconsin"},{"abv":5.8000001907000005,"address":"75-5629 Kuakini Highway","category":"North American Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":54,"name":"Fire Rock Pale Ale","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":3.2999999523,"address":"1705 Mariposa Street","category":"British Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":72,"name":"Small Beer","state":"California"},{"abv":10.204855699742053,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":92,"name":"Eganator Doppelbock","state":"Wisconsin"},{"abv":6.055589445811203,"address":"3703 North Main Street","category":"Other Style","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":102,"name":"Raspberry Wheat Ale","state":"Indiana"},{"abv":10,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":91,"name":"Dulle Teve / Mad Bitch","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":6,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":84,"name":"Blanche Double","state":"Hainaut"},{"abv":4.8000001907000005,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"By 1915, Bend, Oregon, was alive with the sound of the buzz saw, as two of the country's largest pine sawmills set up shop on the banks of the Deschutes River. The mills are gone now, but the smokestacks still stand testament to Bend's humble beginnings. \n\n\nBuzzsaw Brown is an easy-drinking beer that is refreshing after a hard day’s work. The timber mills in Bend may be closed, but whether your adventure includes a day of scaling rock faces, hitting 18 holes or skiing the slopes in spring, Buzzsaw Brown is the perfect end to a fun-filled day.\n\n\n“Buzzsaw Brown is one of my favorite beers,” says Deschutes Brewery Brewmaster Larry Sidor. “The unique combination of European and American malts makes it a very food friendly beer that pairs well with a wide variety of flavors.”","ibu":93,"name":"Buzzsaw Brown","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.5999999046,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Seductively smooth, this medium-bodied amber beauty is akin to the great Oktoberfest beers of Munich. All German malts and whole flower European hops make this lager true to style.","ibu":109,"name":"Festbier","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A swirling dynamo of flavor, with a steady calm of satisfaction at its heart, that's Whirlwind Witbier. Offering a tamed tempest of flavors both spicy and sublime, this softly fermented ale greets the nose and tingles the tongue. Imported Belgian yeast charges Whirlwind with an energy all its own. It is a refreshing interpretation of the classic, Belgian 'white beer' style.","ibu":44,"name":"Whirlwind Wit","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":11.523200155823545,"address":"1075 East 20th Street","category":"North American Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":1,"name":"Dark Wheat","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.125812152731516,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":119,"name":"Cabro Extra"},{"abv":0.563173428547874,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":96,"name":"Black Dog Yellowstone Ale","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":8.925616440310367,"address":"717 East Butterfield Road","category":"German Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":111,"name":"Weisen","state":"Illinois"},{"abv":8.602944891415143,"category":"North American Lager","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":56,"name":"G.E. Lite","state":"Illinois"},{"abv":3.750893358029849,"category":"North American Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":34,"name":"Pale Ale","state":"New Jersey"},{"abv":6.698568894320546,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":7,"name":"Black Wolf Ale","state":"Wisconsin"},{"abv":12.242748998325526,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":101,"name":"Maple Wheat","state":"Ontario"},{"abv":2.295019538434228,"address":"211 West 13th Avenue","city":"Denver","coordinates":[39.7369,-104.991],"country":"United States","ibu":2,"name":"Dark Star ESB","state":"Colorado"},{"abv":11.39139560415262,"category":"German Lager","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":91,"name":"Brandenburg Gate Märzen","state":"California"},{"abv":12.917867467311503,"address":"33180 Cape Kiwanda Drive","category":"North American Ale","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","ibu":4,"name":"India Pelican Ale","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":9.695292891780515,"category":"North American Lager","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":88,"name":"Wheat","state":"Ohio"},{"abv":13.955401660013468,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":7,"name":"Ich Bin Ein Berliner Weisse","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":3.2401953074735603,"address":"243 North Gaither Street","category":"German Lager","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":39,"name":"Wooly Bully","state":"Oregon"},{"abv":8.5,"address":"Bergerstrae 1","category":"German Lager","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":102,"name":"DoppelSticke","state":"Nordrhein-Westfalen"},{"abv":5.707157036275864,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":22,"name":"Firkin IPA","state":"Washington"},{"abv":6.5,"address":"Konradigasse 2","category":"German Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":36,"name":"Nickelbier","state":"Baden-Wrttemberg"},{"abv":0.8895448963383523,"address":"1265 Boston Avenue","category":"North American Lager","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":96,"name":"Goosinator Smoked Doppelbock 2007","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7.636777325971606,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":105,"name":"Festive Ale 2007","state":"Nebraska"},{"abv":8.8999996185,"address":"302 N. Plum St.","category":"British Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our classic Olde Ale redefines the term \"full-bodied\" with its deliverance of complex and firm malt flavor. A fine blend of British and American hops provides an even bitterness as this beer finishes with a warming alcohol flavor.","ibu":71,"name":"Lancaster Winter Warmer","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":5.5999999046,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our multi-grain pale ale summons the sweetness of oats, the complexity of rye and the smoothness of malted wheat, balanced by a generous dry-hopping of imported, noble Saaz hops.","ibu":1,"name":"Amish Four Grain","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.5999999046,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This representation of the classic Irish Dry Stout has a smooth roast flavor due to the use of specially roasted barley. The barley kernels are kilned at very high temperatures until they are dark brown to black in color. \n\nThe Susquehanna River is named after the Susquehannock Indians who settled in our area. This shallow river is over one mile wide in the Harrisburg area and flows from southern New York through Pennsylvania to the Chesapeake Bay.","ibu":93,"name":"Susquehanna Stout","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":13.99812130912315,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":117,"name":"Playland Pale Ale","state":"California"},{"abv":10.24803988790364,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":5,"name":"Frambozen","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":12.052620975151225,"address":"Bridge Street","category":"Irish Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":36,"name":"Burton Porter","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":6.5,"address":"1125 Richter Street","category":"German Lager","city":"Kelowna","coordinates":[49.8945,-119.488],"country":"Canada","ibu":52,"name":"Brockton Black Lager","state":"British Columbia"},{"abv":0.9015172034228602,"address":"800 LaSalle Plaza","category":"British Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":70,"name":"Itasca Extra Pale Ale","state":"Minnesota"},{"abv":10.303499311938452,"address":"1001 South Eighth Street","category":"North American Lager","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":99,"name":"Canadian Light","state":"Wisconsin"},{"abv":1.188079017789817,"address":"100 Main Street","category":"Irish Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":34,"name":"Porter","state":"Wisconsin"},{"abv":8.504138382595258,"city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":48,"name":"Horndean Special Bitter / HSB","state":"Hampshire"},{"abv":6.224825599193132,"address":"2700 South Quincy Street","category":"Irish Ale","city":"Arlington","coordinates":[38.8411,-77.0869],"country":"United States","ibu":23,"name":"Prohibition Porter","state":"Virginia"},{"abv":3.6879049635161074,"address":"114 North Main Street","category":"German Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":77,"name":"Schwarzbier","state":"Michigan"},{"abv":0.7209748426901219,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":49,"name":"Big Daddy Brown","state":"Indiana"},{"abv":10.665052634390767,"address":"1501 Arboretum Drive","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":5,"name":"Caber Tossing Scottish Ale","state":"Wisconsin"},{"abv":8.1999998093,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"Hopheads rejoice! This strong IPA takes the style to a new level. It's a big Imperial IPA packed with Nugget, Palisade, and Amarillo hops. ABV 8.2%","ibu":24,"name":"Double D IPA","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.4000000954,"address":"50 N. Cameron St.","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Abbey Roade is brewed in the tradition of the famous Belgian Abbey-style ales. This wonderful brew is soft and sweet up front. The complex and spicy middle palate is in most part due to the generous addition of dark Belgian candy sugar. This semi-dry ale has notes of ripe plum and pear with a peppery finish. \n\nThe origins of the Abbey-style ale date back to the Middle Ages. Monks residing in monasteries, called Abbeys, brewed beer as a source of nutrition during their frequent and often lengthy fasting periods.","ibu":1,"name":"Abbey Roade Belgian Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5,"address":"800 Paxton Street","category":"North American Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Bavarian Lager is an authentic German style lager, brewed with Munich malts, Hallertau Hops and fermented at cool temperatures followed by a full month of aging, or \"lagering\", to impart a range of complex maltiness and subtle aromas only found in traditional German lagers.","ibu":57,"name":"Bavarian Lager","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.705945250683137,"address":"1920 Shattuck Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":51,"name":"Amber","state":"California"},{"abv":14.079231375174258,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":44,"name":"Big Bertha Brown","state":"North Carolina"},{"abv":1.6663753940493886,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":32,"name":"Saaz Pilsner","state":"Ontario"},{"abv":2.065546945985761,"category":"North American Lager","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":80,"name":"Old Style","state":"Wisconsin"},{"abv":9,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Three varieties of malt and three of hops create the robust character of this St. Martin triple abbey ale.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":81,"name":"Abbaye de Saint-Martin Triple","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":0.05489644928317605,"address":"50 Catoctin Ct. NE #100","category":"North American Ale","city":"Leesburg","coordinates":[39.1126,-77.5537],"country":"United States","description":"An American style India Pale Ale. This medium bodied, light bronze hued brew has an aggressive hop character and flavor from the use of American hops in dry hopping. Our interpretation comes in at 13.0 degrees plato with IBU’s in the mid 40’s. The American hop varietals used as Kettle additions were Amarillo and Chinook and this was dry hopped with Chinook as well.","ibu":118,"name":"50 CAT IPA","state":"Virginia","website":"http://www.vintage50.com/"},{"abv":8,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Traditionally brewed by Monks to sustain them while they fasted during lent; the Doppel Bock is a big-bodied and flavorful beer.","ibu":94,"name":"Climax Doppel Bock","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":5.5,"address":"112 Valley Road","category":"British Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Our E.S.B. is a balanced beer with notes of honey, toffee and caramel, backed by a warm spicy hop bitterness.","ibu":97,"name":"Climax Extra Special Bitter Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":10.178209415787936,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Redbridge beer doesn’t need to make promises to stand out from the crowd; its very essence sets it apart. Redbridge is made without wheat or barley, so the approximately 3.2 million consumers who are unable to drink beer made with barley due to Celiac Disease or because they follow a wheat-free or gluten-free diet can once again enjoy a great tasting beer. Redbridge is a rich, full-bodied lager brewed from sorghum for a well-balanced, moderately hopped taste.","ibu":29,"name":"Redbridge","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":12.089512597430753,"address":"102 North Market Street","category":"Other Style","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"The perfect thirst quenching summertime ale. The subtle flavor of kiwi and strawberry blend with traditional German wheat and hops. Great for a hot summer day.","ibu":12,"name":"Bube's Kiwi-Strawberry Wheat","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":6.525112833878791,"address":"529 Grant St. Suite B","category":"Irish Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A robust porter, dark brown in color and full bodied with a malty sweet taste.","ibu":25,"name":"Old Leghumper Porter","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9,"address":"8938 Krum Ave.","category":"Belgian and French Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Batch 8,000 is part of our commemorative series celebrating our progress with special brews. Our 8,000th batch is a special recipe to be brewed only once. It is wheat ale spiced with Coriander, Orange Peel, and Paradise Seed. Best consumed fresh.","ibu":116,"name":"Batch 8000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our Oatmeal Stout is definitely a local favorite but it gets its origins from one of London's oldest breweries. The Oatmeal Stout differs from the popular Irish stout in its more subtle roastiness and subdued dryness. The addition of flaked oats rounds out these sometimes harsh characteristics producing a velvet smooth ale. This black stout has a flavor profile unique to all of North America. Subtlety is not a strong point as it is a stout after all, rich and eminently drinkable. \n\n\nAlcohol content of approximately 5.0% by volume (ALWAYS ON TAP!!)","ibu":105,"name":"Oatmeal Stout","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":4.5,"address":"515 Jefferson Street SE","category":"North American Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":6,"name":"Whistling Pig Hefeweizen","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.3000001907,"address":"1514 NW Leary Way","category":"North American Lager","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":0,"name":"Old Seattle Lager","state":"Washington"},{"abv":13.607813754954098,"address":"200 East Campbell Avenue","category":"North American Ale","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":111,"name":"Pale Ale","state":"California"},{"abv":10.723698739111505,"category":"Irish Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":44,"name":"Porter","state":"New Jersey"},{"abv":5.387602929637103,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":1,"name":"Oatmeal Stout","state":"Illinois"},{"abv":12.985940888043116,"address":"2980 Cahill Main","category":"North American Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":1,"name":"Foxy Brown","state":"Wisconsin"},{"abv":7.177509102242611,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":76,"name":"Padre Porter","state":"California"},{"abv":10.932100204517143,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":35,"name":"Skye Strong Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":7,"address":"The Pier","category":"British Ale","city":"Isle of Skye","coordinates":[56.4907,-4.2026],"country":"United Kingdom","ibu":107,"name":"Wee Beast","state":"Scotland"},{"abv":5.5,"address":"1249-A Wicker Drive","category":"North American Ale","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"This dark brown ale is slightly sweet with a caramel and dark fruit finish. A show case of fine English malts, floor malted the old way. We use pale, chocolate, and crystal malts to produce a complex, but easy drinking dark ale. Very reminescent of northern English ales.","ibu":102,"name":"Bad Penny","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":5.3000001907,"address":"Franz-Brombach-Strae 1-20","category":"Other Style","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","description":"The famous Bavarian specialty\n\n\nErdinger Weissbier 'crystal clear' is particularly welcome as a tasty thirst-quencher for hot summer days.\n\n\nThis specialty wheat beer gets its 'crystal clear' appearance from a particularly long filtration process, known in the industry as \"fine filtration\", whereby the beer becomes completely clear.\n\n\nThis gives Erdinger Weissbier 'crystal clear' its sparkling and refreshing character - which also makes it the ideal wheat beer for warm summer days.\n\n\nBrewed in strict accordance with our own traditional recipe, Erdinger Weissbier 'crystal clear' meets the highest quality standards and satisfies the most sophisticated palate.","ibu":44,"name":"Erdinger Weizen","state":"Bayern"},{"abv":8.5,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","description":"The particular character and the unique taste of \"Delirium Tremens\" result from the use of three different kinds of yeast. Its very original packing, which resembles cologne ceramics, and the colourful label contribute to its success.","ibu":41,"name":"Delirium Tremens","state":"Oost-Vlaanderen"},{"abv":3.4438091022932484,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":90,"name":"Berliner Weisse","state":"Illinois"},{"abv":5.6999998093,"address":"420 Acorn Lane","category":"German Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"As invigorating as the morning rays of the summer sun, Sunrise Weissbier satisfies when the heat is on, too. This unfiltered, Bavarian style ale is true to its origins with all ingredients except for the water having been imported from Germany. It remains unfiltered to feature the tangy, fruity flavors of its unique yeast. The imported German malt contributes greatly to add a crisp, citric snap that makes this beer a superb summertime refresher.","ibu":90,"name":"Sunrise Weissbier","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.4000000954,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"A regional favorite, Yuengling Premium Beer is popular among local beer drinkers for its thirst quenching taste. It is a pilsner-style brew, gold in color with pale malt character that finishes crisp and clean. Premium flawlessly blends both two-row and six-row barley malt for a well balanced flavor that is always refreshing. Traces of the slight hop aroma are evident in every delicious sip of Premium Beer. Discover this well kept secret and enjoy the superior quality and taste you've come to expect from America's Oldest Brewery.","ibu":88,"name":"Yuengling Premium Beer","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":5.9000000954,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Cranberry Lambic is a fruit beer that draws its flavor not just from the cranberries it is brewed with, but also from the unique fermentation character imparted by the rare wild yeast strain. The result is a flavor rich in fruitiness and reminiscent of cranberries and bananas, cloves and nutmeg. The yeast fermentation also will create a slight sourness on the sides of the palate, a signature of the original Lambic style which, with the subtle cereal note from the wheat malt, remind its drinker that, as fruity a beer as this is, it is still a beer.","ibu":73,"name":"Samuel Adams Cranberry Lambic","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":8,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Imperial, or super IPA’s were spawned out of the fascination of hops by the American consumer and are beyond Pale Ales and IPA’S in terms of both hop and alcohol content. Our interpretation is orange-gold in color, lightly bitter but highly hoppy with a firm malt backbone. \n\nWe’ll gladly put this head-to-head with the best that those California Hophead/Brewers have to offer.","ibu":32,"name":"California Dreaming","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":4.8000001907000005,"address":"An der Streue","city":"Meschede","coordinates":[51.3055,8.1259],"country":"Germany","ibu":81,"name":"Pilsner","state":"Nordrhein-Westfalen"},{"abv":13.761509743438825,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":33,"name":"Farm Frog","state":"Washington"},{"abv":5.3000001907,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":64,"name":"Skibbereen Stout","state":"Washington"},{"abv":10.35637608797203,"address":"Konradigasse 2","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":54,"name":"Messing","state":"Baden-Wrttemberg"},{"abv":14.454876871398985,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":35,"name":"Espresso Stout","state":"Nebraska"},{"abv":6.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":57,"name":"India Pale Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":8,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":4,"name":"Lump of Coal Dark Holiday Stout","state":"Oxford"},{"abv":3.546333184905488,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":55,"name":"Czech Out This Pils!","state":"Wisconsin"},{"abv":5.3000001907,"address":"880 West Castleton Road","category":"North American Ale","city":"Castle Rock","coordinates":[39.4091,-104.87],"country":"United States","ibu":18,"name":"Hopyard IPA","state":"Colorado"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":45,"name":"Harvest Ale 1998","state":"Manchester"},{"abv":4.489303705646424,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":38,"name":"XXX Porter","state":"Illinois"},{"abv":7.776105318584826,"address":"220 North Randall Road","category":"German Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":60,"name":"Black Forest","state":"Illinois"},{"abv":6.8327336801482454,"address":"1028 Johnny Dodds Boulevard","category":"Other Style","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":37,"name":"Raspberry Wheat","state":"South Carolina"},{"abv":14.914119000517283,"address":"1763 South 300 West","category":"Irish Ale","city":"Salt Lake City","coordinates":[40.7322,-111.9],"country":"United States","ibu":40,"name":"Wasatch Polygamy Porter","state":"Utah","website":"http://www.utahbeers.com/"},{"abv":7.256502706201033,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":114,"name":"Pilsner"},{"abv":4.407409985500744,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":59,"name":"Old Man Winter Warmer 2002","state":"Minnesota"},{"abv":13.119774912330112,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":59,"name":"Dunkel","state":"Bayern"},{"abv":5.8000001907000005,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Made with generous amounts of west coast hops, our Pale Ale boasts a fragrant aroma and a pleasant hop bite. It has a deep golden color, and nicely balances the bitterness of the hops with the sweetness of the malt. Whether you know hops or not, our Pale Ale will appeal to all those looking for a refreshing, well balanced ale.","ibu":29,"name":"Pale Ale","state":"New York"},{"abv":4.0999999046,"address":"South Main Street","category":"North American Ale","city":"Cork","coordinates":[51.897,-8.4769],"country":"Ireland","ibu":16,"name":"Genuine Irish Stout"},{"abv":12,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":2,"name":"Stille Nacht","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":10,"city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":16,"name":"Millennium Brew","state":"Hampshire"},{"abv":9.8000001907,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":35,"name":"Van den Vern Grand Cru","state":"Oost-Vlaanderen"},{"abv":0.1029441413160237,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":91,"name":"Red Ale","state":"California"},{"abv":0.2908860581740569,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":31,"name":"Pale Ale","state":"California"},{"abv":9.8999996185,"address":"2730 NW 31st Avenue","category":"British Ale","city":"Portland","coordinates":[45.5415,-122.713],"country":"United States","ibu":76,"name":"Benchmark Old Ale","state":"Oregon"},{"abv":6.6999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":58,"name":"Autumn Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":11.947953366630834,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":48,"name":"Rapidan Brown","state":"Minnesota"},{"abv":12,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This is a truly unique brew, combining some unusual elements to create a powerful, yet flavorful brew. I brewed a similar beer to this one back in 1998, while I was home brewing out in California. Only this time around I decided to age it in bourbon barrels to add a new element to the already rich sensory profile. The combination of dark malt, elderberries and bourbon barrels makes for an interesting tasting experience. This is a sippin’ beer, so sit back by the fire and enjoy. 12% alcohol by volume.","ibu":88,"name":"Nor' Easter","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":7.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Jai Alai IPA is a monster interpretation of an American IPA. In fact, it is so big that it equals the alcohol of some double IPAs on the market. Our IPA uses 6 different hop varietals, with Simcoe hops only being used for dry hopping. The rest of the hop additions are blended at different IBU's (International Bittering Units) in groups of three hops per addition in order to create more hop complexity. At CCB, we love hops but also feel that balance is important for IPAs. So Jai Alai features a sturday caramel malt component which helps to create balance, staving off hop astringency. Ultimately, Jai Alai is a very strong interpretation of a single American IPA. We hope that it makes Tampa Bay natives happy because this is head brewer Wayne Wamble's favorite Cigar City beer and he'd love to share one with you!","ibu":75,"name":"Jai Alai IPA","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":9.5,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Every beer tells a story, and some are longer than others.\n\n\nConsider Scratch #19; originally designed as an enhanced take on Scratch #15 with a slightly higher ABV, our brewers went to town to deliver a brew slightly more akin to our fabled Scratch #5, the Imperial Oatmeal Stout brewed for The Flying Mouflan Experience.\n\n\nFor Scratch #19, we teamed up with St. Thomas Roasters of Linglestown to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating en environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Scratch #19 a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus hop finsh coming from the Kenyan beans and hops.\n\n\nSome stories have twists, and unfortunately a faulty valve in the fermentation cellar led to a dramatic beer tragedy one afternoon in the brewery. Risking life and limb (while keeping his mouth open to sample the beer), a heroic brewery team member took the dive reconnecting the valve and saving about half the batch of Scratch #19.\n\n\nSo for your amusement (and our final relief), we give you a draft-only release of a third-take on a style that demands continued research for the Troegs Brewery staff. Enjoy!","ibu":78,"name":"Scratch #19 2009 Imperial Double Expresso Oatmeal Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":10,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Long ago, British farmhouse brewers made special ales using the first runnings of the mash. These beers, now called barley wine, are brewed in the tradition of days past. At Southern Tier this long awaited brew is placed on the back burner until the start of the new year. Back Burner Barley Wine is a celebration of things to come and things remembered. It’s conceived in three small batches, using voluminous amounts of barley and hops. The process starts early in the morning and ends late into the night. We hope this rare brew reignites your spirit for another trip around the sun.","ibu":108,"name":"Back Burner Imperial Barley Wine Style Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8.3000001907,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Beer Description:\n\nThis deep amber Imperial Abbey Ale melds malt and earth, spice and fruit to create a wonderful vehicle to wind down the day. Belgian yeast contributes flavor notes that accent the raisins and grains of paradise used in the brewing process. With strength and stamina, DESCENT is deliberately impetuous in its mission.","ibu":20,"name":"Descent Imperial Abbey Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.7044911114056782,"address":"10983 Hills Road","category":"Other Style","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"An unpretentious American pale wheat beer, our Summer Wheat pours a cloudy golden-orange, just like a sunset over Lake Michigan. Its assertive wheat flavor is complimented with hints of citrus zest. Garnish with a slice of orange or lemon. Round Barn beer is bottle conditioned, decant into a weizen glass before drinking for the best taste experience.","ibu":84,"name":"Round Barn Summer Wheat","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":6.3000001907,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"It takes a bit of seasoning to understand that bitter can be a good thing. \n\n\nWhen you’re a child, you want everything to be sweet. When you’re a teenager, you want everything to be sweeeeet. But when you get a bit wiser and acquire some taste, you realize that bitter is an excellent alternative. It’s a sign of complexity. It’s a sign of maturity. It’s a sign of the times. Face it, modern life demands a little bitterness every once in a while. \n\n\nWhen you are in the mood for something bitter, Dundee IPA is hop bitterness at its finest. As the youngsters would say, that’s sweet.\n\n\nAn aggressively hopped IPA brewed with Amarillo and Simcoe hops. Blended Crystal malts balance the flavors with a distinctive spicy aroma and a long, crisp finish.","ibu":50,"name":"Dundee India Pale Ale","state":"New York"},{"abv":6.1999998093,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"In honor of our friend and mascot, Wylie the fish, we are hooking you up with an aggressively hopped India Pale, the staple for any fishing trip! This beer is a hop lover’s dream!","ibu":59,"name":"Old Wylie's IPA","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":6,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A rather malty brew, which we think goes very well with cheeses - even well matured blue cheeses. You can also try our Amber paired with a grilled dish. Recommended serving temperature 10°C/50°F.","ibu":102,"name":"Nøgne Ø Amber Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7.031257258261209,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This copper-colored ale has an intense bitterness and a floral hop aroma. Hops added during aging contribute to its distinct dryness.","ibu":80,"name":"Liberty Pale Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5.1999998093,"address":"2051A Stoneman Circle","category":"Irish Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Porter is our darkest beer, but not necessarily our strongest. It is widely held that the darker the beer, the stronger the beer, but this is a summarily false. The contribution of color comes directly from the color of malt that we use. Some malt is oasted to achieve dark color and coffee-like flavor which in turn get transferred to the beer.\n\n\nOur Porter is ruchly complex with overtones of chocolate and expresso beans followed by a subtle flavor of hops. It's a nourishing beer without being too sweet or filling.","ibu":30,"name":"Southern Tier Porter","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.1999998093,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Put on your kilt and enjoy this roasted, dark, malty and slightly sweet beer.","ibu":64,"name":"Sully's Irish Stout","state":"Michigan"},{"abv":3.5,"address":"Abbaye de Notre-Dame d'Orval","category":"Belgian and French Ale","city":"Villers-devant-Orval","country":"Belgium","ibu":112,"name":"Petite Orval","state":"Luxembourg"},{"abv":5.5,"address":"1940 Olney Avenue","category":"German Lager","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"First released in 2002, and sold out in two weeks. A tribute to the classic Fest styles of Germany the O'Fish uses European malts hops and yeast. A beautiful reddish color, a savory malt profile and nice hop flavor, make this Fest beer quite drinkable. OktoberFish is great with food and especially great with Lederhosen.","ibu":45,"name":"OktoberFish","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8.545903951440685,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":9,"name":"Chapeau Mirabelle Lambic","state":"Vlaams Brabant"},{"abv":12.78910592756156,"city":"Indianapolis","coordinates":[39.7684,-86.158],"country":"United States","ibu":15,"name":"Bullseye Bitter ESB","state":"Indiana"},{"abv":0.34841803035771113,"address":"Am Deich 18-19","category":"German Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":76,"name":"Oktoberfest","state":"Bremen"},{"abv":12.462962527974668,"address":"Salzachtal Bundesstrae Nord 37","city":"Hallein","coordinates":[47.6942,13.0784],"country":"Austria","ibu":14,"name":"Edelweiss Dunkel Weissbier"},{"abv":14.031972220585821,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":72,"name":"Haacke-Beck","state":"Bremen"},{"abv":0.6748940334824549,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":118,"name":"American Wheat","state":"Nebraska"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":20,"name":"Harvest Ale 1999","state":"Manchester"},{"abv":4.5999999046,"address":"Spott Road","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":68,"name":"St. Andrews Ale","state":"Scotland"},{"abv":8.93896978694512,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":23,"name":"Barley Wine 2001","state":"Wisconsin"},{"abv":4.377824119266963,"address":"841 East Milwaukee Street","category":"North American Ale","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":46,"name":"Pale Ale","state":"Wisconsin"},{"abv":4.4000000954,"address":"U Prazdroje 7","category":"German Lager","city":"Plze","coordinates":[49.7466,13.3861],"country":"Czech Republic","ibu":15,"name":"Pilsner Urquell"},{"abv":0.23043037348207673,"address":"50 N. Cameron St.","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Based on the winning Homebrew Contest entry by John Slotterback and Fred Rogers, this dark, roasty porter is infused with fresh coconut which produces a sweet finish. The coconut balances the chocolaty notes, producing a taste not unlike German chocolate cake in a glass! This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg.","ibu":16,"name":"Coconut Porter","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.870148216334846,"category":"Other Style","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":69,"name":"Hula Berry","state":"Hawaii"},{"abv":5.964369033199884,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":68,"name":"Golden Ale","state":"Hawaii"},{"abv":6.100753896667158,"address":"661 Howard Street","category":"North American Lager","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":98,"name":"Polar Ale","state":"California"},{"abv":9.376747655107721,"address":"45 South Barrington Road","category":"Irish Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":69,"name":"Dark Star","state":"Illinois"},{"abv":10.720029840803393,"address":"127 South Grove Avenue","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":16,"name":"Prairie Light","state":"Illinois"},{"abv":8,"address":"2051A Stoneman Circle","category":"German Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":96,"name":"Old Man Winter Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A refreshing, crisp and clean amber colored lager. Made in a Vienna-style with distinct caramel malt flavor and aroma.","ibu":43,"name":"Sunset Amber Lager","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7.5,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Crafted with a blend of American and English malts and aggressively hopped with Pacific Northwest hops, this beer reflects what our brewers believe to be the Apex of IPA.","ibu":111,"name":"Apex","state":"California","website":"http://www.bearrepublic.com/"},{"abv":4.6999998093,"address":"196 Alps Road","category":"Other Style","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Sunray Wheat is a German-style unfiltered wheat beer brewed with a touch of local Georgia Coast Tupelo honey from the Savannah Bee Company.\n\n\nIts inviting banana and sweet clove like aroma gives way to a pleasant, clean finish with a hint of tartness.\n\n\nThis beer is available in the Terrapin “All The Hits” Variety 12-pack as well as in individual 6-packs.","ibu":14,"name":"SunRay Wheat Beer","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":7.5,"address":"140 North Third Street","category":"North American Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"The one and only IPA that doesn't leave your pallet with a bitter after taste. This beer took years of practice to get down and when we finally got it right, we knew it. The beer is made with three malts in considerable additions that leave it with a more malty and sweet taste. There are five different hop additions that were carefully planed out to impart just enough bitterness to give it the body and depth that it needed without leaving you with the astringent and bitter aftertaste. We then added a plethora of English flavor and aroma hops that round out the floral and citrus esters. With the beer being so well balanced between bitter and sweet, we than added \"big sacks\" of bittering hops to the conditioning vessel to impart all the wonderful citrus and floral notes deep into the beer while leaving the bittering aspects of the hop behind. The result was a beer that makes you want to nose dive right in complimented by the well balanced taste of this wonderful brew.","ibu":6,"name":"Daddy Fat Sacs Imperial IPA","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":6.5,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"As for Bravo, according to Head Brewer, Chris Wilson, the base of the beer comes from pale, wheat, and crystal malts and features some roasted barley while Pilgrim and Hallertauer make up the light hop profile.","ibu":87,"name":"Bravo","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.0999999046,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":12,"name":"Imperial Stout","state":"Colorado"},{"abv":1.6930196163141331,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":25,"name":"Dark German Lager","state":"Nebraska"},{"abv":7.8000001907000005,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":25,"name":"471 Extra ESB","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7,"address":"4509 SE 23rd Avenue","category":"North American Ale","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":70,"name":"Blue Dot Double India Pale Ale","state":"Oregon"},{"abv":12.390205454534643,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":44,"name":"Belgian Wit","state":"Nebraska"},{"abv":8,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":24,"name":"Trappist Blond","state":"Limburg"},{"abv":9.575108872153907,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":49,"name":"Hacker-Pschorr Hubertus Bock","website":"http://www.paulaner.com/"},{"abv":7.3000001907,"address":"402 West Pine Street","category":"North American Ale","city":"Pinedale","coordinates":[42.8666,-109.866],"country":"United States","ibu":46,"name":"Strom Bomb Stout","state":"Wyoming"},{"abv":0.6891351859672246,"address":"50 East Washington Street","category":"North American Ale","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":28,"name":"Bad Bear Brown","state":"California"},{"abv":4.977330426158363,"address":"901 Gilman Street","category":"German Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Thomas Kemper HefeWeizen","state":"California"},{"abv":7.3444699957127195,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":56,"name":"Golden Vanilla Ale","state":"California"},{"abv":13.196871840723334,"address":"1425 McCulloch Boulevard","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":27,"name":"Blonde Ale","state":"Arizona"},{"abv":10.392068112494453,"address":"131 Callahan","city":"Etna","coordinates":[41.4559,-122.846],"country":"United States","ibu":108,"name":"Export","state":"California"},{"abv":3.7509843860130365,"address":"54 Rue des Monceaux","category":"Other Style","city":"Carquefou","country":"France","ibu":54,"name":"Ambr"},{"abv":3.2000000477,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"This is a smooth, full flavoured, truly dark mild with a rich creamy head. It has a full body and distinctive roasted malt taste, balanced by its fresh hop character. Complex flavours and aromas are achieved by blending deeply roasted malt and adding a selected blend of English hops, including dry hops, to the cask conditioned beer.","ibu":42,"name":"Dark Mild","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":5.6999998093,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":30,"name":"Coffee Stout","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.5,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Golden with a hint of red (towards sunset). Barelegs tastes of fresh fruit, especially red current and malt fragrance. Full drinking with a subtle hoppy finish. Refreshing for a beer of this strength.","ibu":119,"name":"Barelegs Brew","state":"County Down","website":"http://slbc.ie/"},{"abv":5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Restoration Pale Ale was created after the back-to-back hurricanes devastated Louisiana. With your help, the abita Brewing Company raised over $500,000 for hurricane relief. This brilliant, golden pale ale has a rich body, mild bitterness and a snappy, fresh citrus hop flavor and aroma. Cold filtered and brewed in small batches using no additives or preservatives, the Abita Company is proud to be Louisiana True.","ibu":23,"name":"Restoration Pale Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":3.7999999523,"address":"4405 Honoapiilani Highway #217","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"Our lightest beer, made from 100% malted barley. This blonde lager is what sailors really swam to shore for; it's light, with very little bitterness and a slight malt finish.","ibu":112,"name":"Bikini Blonde Lager","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":5.5,"category":"North American Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"Well balanced amber pale ale accentuated by multiple additions of floral Cascade hops and our unique introduction of grapefruit zest to compliment the citrus notes of the hops.","ibu":27,"name":"Lift Bridge Pale Ale","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.6999998093,"address":"140 North Third Street","category":"German Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This German inspired wheat ale is packed full of citrus flavor. We use torrified wheat, pale, and carafoam for balance, giving it a nice hazy, straw color and refreshing wheat taste. We ferment the White Horse at higher ale temps with a German style yeast that is known for producing world class wheat beers. We let the yeast take over the majority of the flavoring in our fermenters, providing the beer with banana and clove like esters. We pull some of the yeast with it to give this brew the proper style and to keep its body and character. We than age this brew with zests of citrus and a brewers spice that blends harmoniously with the esters of the yeast and balance out the sweetness of this brew. Truly a favorite in the summer time for breakfast, lunch, or dinner.","ibu":111,"name":"White Horse Hefeweizen","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":8.80458796354707,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"This beautifully colored ale strikes an agreeable balance between malt and hops. Caramel + toffee notes from the use of more highly kilned malts step up to complement this beers assertive hop profile.","ibu":7,"name":"Elk Creek Copper Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":6.8000001907000005,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A hearty british style strong ale with a deep chestnut color. A warming elixir that's magically delicious.","ibu":45,"name":"Wizard's Winter Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":10.399999619,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alaskan Barley Wine is produced in small batches each year. Typically this higher alcohol beverage is brewed in the spring, cellared in the tunnels of the Alaska-Juneau Gold Mine for the summer and retrieved in time for its release at the Great Alaska Beer and Barley Wine Festival in January. The cool tunnels of the mine shaft provide natural refrigeration and a prime environment for the aging process. \n\n\nLike a fine wine, Alaskan Barley Wine can be aged for years. The bottling of the 2007 vintage of Alaskan Barley Wine will allow individuals to age it to their liking. “We figured we’d leave it up to individuals as to how long to age their Alaskan Barley Wine,” said Quality Assurance Analyst Ryan Harvey. “Some people like barley wines fresh, and others store it for years.”","ibu":87,"name":"Alaskan Barley Wine Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.6999998093,"address":"514 South Eleventh Street","category":"Other Style","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"A Silver Medal Winner in the American Hefenweizen category at the 2004 Great American Beer Festival, our American Wheat has a crisp and refreshing flavor.","ibu":113,"name":"American Wheat","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.1999998093,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":13,"name":"Hefeweizen","state":"Washington"},{"abv":4.60582352061465,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":45,"name":"Barleywine","state":"Washington"},{"abv":0.7065238361900605,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":63,"name":"Trumpeter","state":"Washington"},{"abv":6.261369969232416,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":63,"name":"Peninsula Pirate Pilsner","state":"Wisconsin"},{"abv":2.949393248886516,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":11,"name":"Imperial Stout","state":"California","website":"http://www.moylans.com/"},{"abv":7.365419600136944,"category":"North American Ale","city":"Castle Rock","coordinates":[39.3722,-104.856],"country":"United States","ibu":45,"name":"Amber Ale","state":"Colorado"},{"abv":1.5403819179584721,"address":"100 Main Street","category":"German Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":48,"name":"Weizen","state":"Wisconsin"},{"abv":7.749543061630874,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":63,"name":"New Hops Ale","state":"Wisconsin"},{"abv":10.045329184544652,"address":"Hongkong Road, Central","category":"North American Lager","city":"Qingdao","coordinates":[36.0663,120.383],"country":"China","ibu":52,"name":"Green Beer","state":"Shandong"},{"abv":5.5,"address":"Hofgasse 6-11","city":"Traunstein","coordinates":[47.8691,12.650500000000001],"country":"Germany","ibu":52,"name":"Altbairisch Dunkel","state":"Bayern"},{"abv":1.0335637608275539,"address":"7556 Pine Road","category":"North American Ale","city":"Arena","coordinates":[43.1706,-89.9324],"country":"United States","ibu":104,"name":"Premium Ale","state":"Wisconsin"},{"abv":9.100217097434017,"address":"234 Dallas Street West","category":"North American Ale","city":"Dallas","coordinates":[45.2585,-91.8181],"country":"United States","ibu":94,"name":"Big Swede Swedish-Style Imperial Stout","state":"Wisconsin"},{"abv":8.1000003815,"address":"6 Cliffe High Street","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":78,"name":"Christmas Ale","state":"East Sussex"},{"abv":14.395149009774965,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":73,"name":"471 Pilsner","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":6,"address":"1680-F East Waterloo Rd.","category":"German Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Traditional German-style, unfiltered wheat beer, with a lively balanced flavor. Although no fruit or spices were used in the brewing, these flavors are created by fermentation with special yeast from the oldest brewery in the world. Try Wild Frog Wheat with a slice of orange for a crisp, refreshing experience","ibu":7,"name":"Wild Frog Wheat","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.3000001907,"address":"175 State Road East","category":"North American Ale","city":"Westminster","coordinates":[42.5586,-71.8715],"country":"United States","description":"A BIG PALE ALE with an awsome balance of Belgian malts with Fuggles and East Kent Golding hops.","ibu":17,"name":"Green Monsta Ale","state":"Massachusetts","website":"http://www.wachusettbrew.com"},{"abv":8.5,"address":"121, rue de la Chapelle","city":"St-Sylvestre-Cappel","coordinates":[50.7975,2.5412],"country":"France","ibu":41,"name":"3 Monts","website":"http://www.brasserie-st-sylvestre.com/"},{"abv":8.6999998093,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":59,"name":"Local 2","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":10.096846811515123,"address":"339 Fairground Rd","category":"Other Style","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"A nice traditional cloudy wheat beer. It is light in color with a banana and yeasty fragrance. This would go nice on a hot summer day or anytime you want a refreshing drink.","ibu":21,"name":"Celebration Wheat","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":6.1999998093,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","description":"Our IPA has lots of malt and hop character. This style originated during Queen Victoria’s reign as a strong, flavorful ale, which was able to survive the ocean voyage from England to India during the British occupation.","ibu":115,"name":"Victorian IPA","state":"Arizona","website":"http://www.sonoranbrewing.com/"},{"abv":5.5,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"If you liked the Nobleman this one should blow you away! We took malt and hops from around the world to create this International Pale ale! This beer has an incredible amount of hop flavor and the perfect hop bite!","ibu":87,"name":"Melting Pot Pale Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":5.25,"address":"1025 Owen Street","category":"German Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The Fargo brothers arrived in Lake Mills in 1845, armed with a strong collective will and a pioneering spirit. The Fargo family became leaders in commerce, industry, agriculture, civics and religion. Through the years, these hard working men and their families shaped the character and very essence of our beautiful hometown. Their legacy endures in the buildings and businesses they built and the civility they brought to this city. In this same pioneering spirit, we brew our Fargo Brothers Hefeweizen to honor this \"first family\" of Lake Mills.\n\n\nFargo Brothers Hefeweizen is brewed in the tradition of a Bavarian-style weißbier with a clove-like flavor and aroma with banana undertones and no bitterness. The unfiltered yeast makes this beer cloudy.","ibu":37,"name":"Fargo Brothers Hefeweizen","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.3000001907,"address":"11197 Brockway Road","category":"Belgian and French Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"FiftyFifty's \"Wit\" beer, Foggy Goggle is a Belgian Style Wheat Beer, cousin of the German Hefeweizen. An unfiltered beer, Foggy Goggle is brewed true to style, using a yeast strain that originated in Belgium, with just a hint of orange peel, lemon peel, and chamomile. The appearance is an opaque yellow with a wonderfully fluffy head. The predominant aroma is citrus with a hint of coriander, and a unique spicy note. With citrus playing a big part of the flavor, Foggy Goggle is a very refreshing choice.","ibu":80,"name":"Foggy Goggle Belgian White","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":11.367671231143488,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Yellow Snow IPA was originally introduced for the 2000 Winter Olympics in Salt Lake City.\n\n\nYellow Snow is Rogue’s tribute to winter sports everywhere—downhill skiing, snowboarding, cross country, ice hockey, ice fishing, snowmobiling, and even curling. \n\n\nIt will be available November 1st in select states where mountains and snow can be found.\n\n\nPale golden in color with a hoppy fruity aroma. Big hop flavor up front complemented by medium body and hoppyness mid-pallet. Finishes with a characteristic lingering bitterness.","ibu":110,"name":"Yellow Snow IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","description":"A big, flavorful IPA for all the hopheads out there, brewed with British Pale and Crystal malts, and hopped with Centennial, Cascade, German Northern Brewer, & UK East Kent Goldings. Bold and spicy.","ibu":0,"name":"Route 113 IPA","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":10,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":62,"name":"Grand Cru","state":"Washington"},{"abv":1.0144386646872794,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":80,"name":"Gueuze Bio / Organic Gueuze","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":9.3999996185,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":106,"name":"Old Foghorn 2006","state":"California"},{"abv":4.5,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":79,"name":"Blanche des Moines","state":"Namur"},{"abv":3.4000000954000003,"address":"4 Moorhouse Street","category":"British Ale","city":"Burnley","coordinates":[53.7864,-2.2694],"country":"United Kingdom","ibu":60,"name":"Black Cat","state":"Lancashire"},{"abv":8.540266041713977,"address":"33 Dunster Street","category":"German Lager","city":"Cambridge","coordinates":[42.3724,-71.1193],"country":"United States","ibu":119,"name":"Framingham Maibock","state":"Massachusetts"},{"abv":6,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":87,"name":"ESB","state":"Wisconsin"},{"abv":7.914803795535219,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":17,"name":"Blonde Ale","state":"Illinois"},{"abv":1.4379358522173857,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":73,"name":"Ruby Red Lager","state":"South Carolina"},{"abv":5.437657947372295,"category":"Irish Ale","city":"Northville","coordinates":[42.4311,-83.4833],"country":"United States","ibu":119,"name":"Promethean Porter","state":"Michigan"},{"abv":10.5,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"From Website:\n\nMaharaja is derived from the sanskrit words mahat, - \"great\" and rajan - \"king\". Much like its namesake, this imperial IPA is regal, intense and mighty. With hops and malts as his servants, he rules both with a heavy hand. The Maharaja flaunts his authority over a deranged amount of hops: tangy, vibrant and pungent along with an insane amount of malted barley - fashioning a dark amber hue and exquisite malt essence.\n\n\nThis newest Avery Dictator completes the \"Dictator Series\" joining the likes of The Kaiser & The Czar. Be aware that The Maharaja is a limited release only available for the summer. Welcome to his kingdom!\n\n\nAvailability:\n\n * 22 oz. bottles\n\n * 5.17 gallon keg\n\n * 15.5 gallon keg\n\n * Available March through August\n\n\nABV:\n\n * 10.5% (2008)\n\n * 9.78% (2007)","ibu":4,"name":"Maharaja, The","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":9,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","ibu":76,"name":"Delirium Nocturnum","state":"Oost-Vlaanderen"},{"abv":5,"category":"German Lager","country":"Aruba","ibu":84,"name":"Balashi","website":"http://www.balashi.com/balashi/"},{"abv":9,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A strong, but well balanced winter warmer, this ale has extreme complexity made for a holiday feast. The addition of Raisins and Molasses in the brewing process produces unusual spiced rum like flavors to go along with the well balanced malt and hops. \n\nNo Chemicals, Additives or Preservatives.","ibu":108,"name":"Frosty Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":53,"name":"HIPA","state":"Vermont","website":"http://www.magichat.net/"},{"abv":4.0999999046,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Launched in 2007, Miller Chill is the only light beer brewed with a hint of lime and a pinch of salt to provide a truly refreshing beer experience. Through all of our marketing efforts, beer drinkers will see that Miller Chill is a celebration and fusion of the best of two cultures, great light beer from America and the chelada style from Mexico. It's the new alternative in mainstream low-cal beers ... one that provides a crisper, smoother, more refreshing beer experience.","ibu":63,"name":"Miller Chill","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6.42289041502583,"ibu":31,"name":"07/22/10 08:00 PM"},{"abv":12.42561406886814,"address":"Cheongwon Factory: 52, Joongsam-Ri, Hyundo-Myun","category":"North American Lager","city":"Seoul","coordinates":[37.5665,126.978],"country":"Korea, Republic of","ibu":82,"name":"Cass Fresh"},{"abv":5.294440670959599,"category":"British Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":43,"name":"Special Old Ale","state":"Massachusetts"},{"abv":11.743792031754351,"city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":10,"name":"Macadamia Nut Brown","state":"Hawaii"},{"abv":5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Mirror Pond is just a short walk from the Deschutes Brewery & Public House in downtown Bend and reflects the Three Sisters Mountains. This scenic spot alongside the Deschutes River is the locals’ choice for summer festivals and concerts.","ibu":9,"name":"Mirrorpond Pale Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.096777370199838,"city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":70,"name":"Gingerwheat","state":"Hawaii"},{"abv":8,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":99,"name":"Chubby Brown","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":8.816751983502112,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":40,"name":"India Pale Ale","state":"Illinois"},{"abv":14.781304410420958,"address":"1860 Schell Road","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":107,"name":"Dark","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":4.8000001907000005,"address":"550 South Wisconsin Avenue","category":"Other Style","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"An American wheat beer made with malted barley and malted wheat. Lightly flavored with pure fruit to impart a subtle raspberry nose, a delicate fruit flavor and a slight pink hue.","ibu":21,"name":"Raspberry Wheat","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":5.5999999046,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete’s winter seasonal Wanderlust Cream Ale, is a velvety smooth brew offering endless fascination. Pete’s Wicked Wanderlust Cream Ale is a light amber brew with a rhapsody of Cluster hops and select Munich and wheat malts. The rich, creamy taste invites you on a journey of wonderment and intrigue. Sit back. Enjoy the ride.","ibu":25,"name":"Pete's Wicked Wanderlust Cream Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":4.8000001907000005,"address":"120 Wilkinson Street","category":"Belgian and French Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A wheat beer brewed in the style of a Belgian wit bier while using British ingredients. Lite and refreshing spiced with coriander and orange peel.","ibu":17,"name":"Swallow Wit","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":9.674423665497468,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":109,"name":"Munich Dunkel","state":"Iowa"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":81,"name":"Dells Chief Amber Ale","state":"Wisconsin"},{"abv":11.992188005793412,"address":"Route de Rond Point 294","city":"Chimay-Forges","coordinates":[49.9842,4.3111],"country":"Belgium","ibu":119,"name":"Première (Red)","state":"Hainaut"},{"abv":2.8245217066460295,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":117,"name":"Bavarian Lager","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.6228610006402553,"address":"Niederkasseler Strae 104","city":"Dsseldorf","coordinates":[51.2404,6.7516],"country":"Germany","ibu":87,"name":"Messing","state":"Nordrhein-Westfalen"},{"abv":8,"address":"Route de Rond Point 294","city":"Chimay-Forges","coordinates":[49.9842,4.3111],"country":"Belgium","ibu":51,"name":"Cinq Cents (White)","state":"Hainaut"},{"abv":12.522621235826172,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":101,"name":"Irish Red Ale","state":"Wisconsin"},{"abv":3.893743691125037,"address":"6404 Redwing Road","category":"North American Ale","city":"Bethesda","coordinates":[38.9735,-77.1272],"country":"United States","ibu":102,"name":"Hop Pocket Ale","state":"Maryland"},{"abv":5,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":79,"name":"Alt-Er-Ego Amber","state":"California"},{"abv":7.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":92,"name":"2004 Symposium Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":10,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Strong, full-bodied ale with an intense hop character and deep golden color","ibu":73,"name":"Stoudt's Double India Pale Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":11.67441100537475,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":66,"name":"Pilsner","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":6.5,"address":"320 Pierce St","category":"German Lager","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":59,"name":"Oderbolz Bock","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":7.919508779297283,"address":"119 South Front Street","category":"North American Ale","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":79,"name":"Amber Ale","state":"Michigan"},{"abv":12.945674875864595,"address":"23060 Alessandro Boulevard","category":"North American Ale","city":"Moreno Valley","coordinates":[33.9176,-117.26],"country":"United States","ibu":32,"name":"Hard Woods Pale","state":"California"},{"abv":14.840205830801388,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":89,"name":"Christmas Ale","state":"New York"},{"abv":14.551381471545495,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":37,"name":"Schlafly Pale Ale","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":5.5999999046,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Brewery’s Flagship beer, HopBack Amber Ale derives its name from a vessel in the brewhouse called a hopback. As the ‘wort’ is being transferred from the brewhouse to fermentation it passes through the hopback vessel. Packed full of fresh whole flower hops, the wort slowly circulates through this vessel extracting the essence of the aromatic hops. This vessel adds more time and more hop character that creates a fresh, spicy taste and rich caramel note that defines this signature ale.\n\n\nTASTING NOTES\n\nDeep amber in color under a huge creamy head. The aroma very apparent, bold and spicy with a slight floral character. Balanced with caramel malt, this well-rounded amber ale has an up-front floral spice that builds with a flush of sweetness","ibu":111,"name":"HopBack Amber Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":2.0664053313892783,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":37,"name":"Whooping Wheat","state":"Nebraska"},{"abv":2.8449102360506364,"category":"North American Lager","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":6,"name":"Golden Bear Lager","state":"California"},{"abv":5.671593810527424,"address":"13351 Highway 101","category":"British Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":55,"name":"Frolic Shipwreck 1850 Ale","state":"California"},{"abv":2.4163920754874537,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":21,"name":"Our Special Ale 1997","state":"California"},{"abv":13.279303348215873,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":47,"name":"Horn of the Bear Barleywine","state":"California","website":"http://avbc.com/"},{"abv":8.238321136875717,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":54,"name":"Bullfrog Bitter ESB","state":"Illinois"},{"abv":11.042189344044193,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":110,"name":"Light","state":"Illinois"},{"abv":6.080742893833493,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":28,"name":"Midnight Star Ale","state":"South Dakota"},{"abv":5.4000000954,"address":"545 Turner Drive","category":"British Ale","city":"Durango","country":"United States","description":"This traditional English Cream Stout is brewed with actual milk sugar to create a creamy and sweet brew. Jet black in color, the latte frothy head will make you mooo for more.","ibu":76,"name":"Steel Toe Stout","state":"Colorado","website":"http://www.skabrewing.com/"},{"abv":9,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Our version of a Scotch Ale is made with a portion of peat smoked barley. Very malty, with a subtle smoky finish. Also available in a barrel aged version.","ibu":18,"name":"The Livery Kilt Tilter","state":"Michigan","website":"http://liverybrew.com/"},{"abv":6.5999999046,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A traditional India Pale Ale, the Elissa IPA is very hoppy with a properly balanced malty body. Elissa has huge hop additions in the kettle that give it a wonderful bitterness and is then dry-hopped in the fermenter to create the pleasant floral, hoppy nose. Our reverse osmosis water makes the bitter very soft with no harsh notes to it. The maltiness is derived from British Maris Otter malt. Its rich flavor stands up to the hops that would otherwise dominate this beer. The Elissa is an authentic version of an India Pale Ale (IPA) style.","ibu":44,"name":"Elissa IPA","state":"Texas","website":"http://www.saintarnold.com"},{"abv":4.4000000954,"address":"1950 W. Fremont St.","category":"British Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A classic English Style Mild with a light hop profile. London Tavern Ale is a well balanced beer with caramel flavor and English character. Only traditional English Kent Goldings and Fuggles hops are used.","ibu":41,"name":"Valley Brewing London Tavern Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":3.7000000477,"address":"165 Patchway Road","category":"North American Lager","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Refreshing Light-Bodied Golden Lager","ibu":108,"name":"Locke Mountain Light","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":10.199999809,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SLOTH Belgian-style Imperial Stout is deliberately dark as hell. The pour is slow and sluggish. Its head is menacing, becoming torn and tattered Belgian lace on the sides of the glass as you cautiously consume this brew—sip by insidious sip. \n\n\nThe aroma is sweet from heavy malt and big alcohol with notes of vanilla, coconut and whiskey from the oak. The depth & breadth of roasted malt flavors loiters on the palate while the robust finish lingers, well, forever. \n\n\nSLOTH...Just add couch.","ibu":103,"name":"Sloth","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.4000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":18,"name":"Shiner Bock","state":"Texas","website":"http://www.shiner.com"},{"abv":6,"address":"Dominikanerstrae 6","category":"German Lager","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","description":"A smoked bock beer for Bamberg's strong beer season (October through December). Matured for months in ancient rock-cellars underneath Bamberg and tapped freshly from the oakwood cask. Similar to, but much bigger than the classic Maerzen style.","ibu":9,"name":"Aecht Schlenkerla Rauchbier Urbock","state":"Bayern"},{"abv":6.5,"address":"529 Grant St. Suite B","category":"German Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Golden, easy drinking, traditional example of Maibock. All German grains, yeast and hops.","ibu":21,"name":"Maibark","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":7.5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":64,"name":"Odd Notion Winter 07","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.3000001907,"address":"1100 New York Ave, NW","category":"North American Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center.","ibu":47,"name":"Amber Waves","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":10.199999809,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A barley wine with deep amber color. The brandy of ales, this beer has vintage character and will mature in the bottle at cellar temperature for years.","ibu":8,"name":"Third Coast Old Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.9000000954,"address":"1340 East Eighth Street #103","category":"Other Style","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our rye beer is made with 20% flaked rye and rye malt. The addition of rye creates a dry, spicy flavor with a crisp, grainy aroma. We went with a lighter color and lower bitterness to compliment these flavors. It has an alcohol content of around 4.9%.","ibu":67,"name":"Caulfield's Rye","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":63,"name":"IPA","state":"California"},{"abv":4.4000000954,"address":"Coppermines Road","city":"Coniston","country":"United Kingdom","ibu":38,"name":"Premium XB Bluebird Bitter","state":"Cumbria"},{"abv":6.0999999046,"address":"980 NE Fourth Street","category":"German Lager","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","description":"This is one of our rare lagers brewed in the style of the German Heiliges Geist Bock, or Holy Ghost Bock. The name refers to the lighter nature of the beer as opposed to the darker and heavier Doppel Bock and Mai Bock also brewed during the spring in Germany. There is a rich malt flavor, a firm German style lager head, and a clean lagered finish to this beer. Available on draft or in 12 oz. bottles.","ibu":94,"name":"Geist Bock","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":0.6243991041192976,"address":"Weinbichl 6","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":64,"name":"Kellerpils","state":"Baden-Wrttemberg"},{"abv":3.71966996912629,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":10,"name":"All-American Gold","state":"Nebraska"},{"abv":4.9000000954,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":78,"name":"Hell","state":"Bayern"},{"abv":5.0999999046,"address":"506 Columbia Street","category":"North American Lager","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":25,"name":"Session Premium Lager","state":"Oregon"},{"abv":7,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Winner of four World Beer Cup medals and eight medals at the Great American Beer Fest, Abbey Belgian Ale is the Mark Spitz of New Belgium’s lineup - but it didn’t start out that way. When Jeff and Kim first sampled the beer at the Lyons Folks Fest, reviews were mixed at best. One of founder Jeff’s first two Belgian style homebrews (along with Fat Tire), Abbey is a Belgian dubbel (or double) brewed with six different malts and an authentic Belgian yeast strain. Abbey is bottle-conditioned, weighs in at 7.0% alcohol by volume, and pairs well with chocolate (or boldly served by itself) for dessert.","ibu":28,"name":"Abbey Belgian Style Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":2.773766547074054,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":87,"name":"Double IPA","state":"California"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":85,"name":"Old Foghorn 1996","state":"California"},{"abv":2.5464950242827875,"address":"PO Box 206","category":"German Lager","city":"Windhoek","coordinates":[-22.5589,17.0825],"country":"Namibia","ibu":76,"name":"Urbock"},{"abv":4,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":40,"name":"Generation","state":"Oxford"},{"abv":0.7419939458790936,"address":"Postplatz 1-4","city":"Donaueschingen","country":"Germany","ibu":36,"name":"Export","state":"Baden-Wrttemberg"},{"abv":5.5999999046,"address":"811 Edward Street","category":"German Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This traditional style German Wheat beer (pronounced) Hah-fuh-vite-zen) remains unfiltered to preserve it's natural smooth flavor and aroma. Don't be alarmed by its cloudy appearance or noticeable sediment. The slight banana and clove aroma comes from the authentic German Hefeweizen yeast. It has a light refreshing finish.","ibu":79,"name":"Saranac Hefeweizen","state":"New York","website":"http://www.saranac.com"},{"abv":6.3795795035393885,"address":"1001 South Eighth Street","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":84,"name":"Munich Dunkel","state":"Wisconsin"},{"abv":4.5,"address":"114 Little York Rd","category":"Other Style","city":"Warwick","country":"United States","ibu":98,"name":"Doc's Hard Apple Cider","state":"NY","website":"http://www.wvwinery.com"},{"abv":5.6999998093,"address":"231 San Saba Court","category":"Other Style","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Tawny red and full of malt and hops, Full Moon's unique flavor truly satisfies. The smooth sweetness of malted rye and barley is complemented by generous helpings of Willamette and Cascade hops, resulting in an assertive American amber ale.","ibu":97,"name":"Full Moon Pale Rye Ale","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":9.966290267193234,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"An unfiltered ale with intense hop bitterness, flavor and aroma. This ale is well balanced with higher alcohol, maltiness and hop character. (95 IBU.)","ibu":11,"name":"Standing Stone Double India Pale Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":6.8000001907000005,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"The “IRA”, as it’s known around here, marries a ruby red color and rich body with the hop flavors of an IPA. Our unique ale yeast strain adds a delicious layer of complexity. One of the first beers we made, and an enduring favorite.","ibu":91,"name":"India Red Ale (The \\\"IRA\\\")","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":6.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":117,"name":"Wild Devil Ale","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.9000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":82,"name":"Shiner Bohemian Black Lager","state":"Texas","website":"http://www.shiner.com"},{"abv":5.151073316364968,"address":"2 Sagamore Street","category":"Irish Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Pathfinder's Porter is a robust, dark and hoppy ale originally brewed for street urchins of London. Our version does the job for the Glens Falls urchins of today.","ibu":2,"name":"Pathfinder's Porter","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"P9 = 9th [non-] planet from The [Midnight] Sun\n\n\nNamed after the ruler of the underworld, PLUTO was re-classified as a non-planet in AUG 2006. Here we celebrate our “Fallen Planet” by creating a Belgian-style Golden Strong Ale, aged in French oak Chardonnay barrels with Brettanomyces. Appropriately, the devil’s in the details. \n\n\nLOGISTICS LOG: \n\ndesigned to represent the \"Fallen Planet\" with a Belgian beer style that includes beers traditionally named after the devil. primary fermentation and aging in stainless steel. phenomenal funk flavors realized with aging in oak barrels affected with Brettanomyces. bottle-conditioning achieved with secondary fermentation. devil-may-care data continues to develop.\n\n\nAvailability:\n\nAK - draft and 22-oz bottles (limited release begins 08/29/2008)","ibu":1,"name":"Pluto - Belgian-style Golden Strong Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.49533250240869,"address":"1398 Haight Street","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":109,"name":"Krölsch","state":"California","website":"http://www.magnoliapub.com/"},{"abv":8,"address":"906 Washington Street","category":"North American Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":95,"name":"Imperial Stout","state":"California"},{"abv":14.305591051350628,"category":"North American Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":47,"name":"Red Top Rye","state":"Nebraska"},{"abv":11.951155940007936,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":111,"name":"Amber Ale","state":"Illinois"},{"abv":12.09513809956811,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":59,"name":"Rumble Seat Stout (discontinued)","state":"Nebraska"},{"abv":5.4000000954,"address":"30 Germania Street","category":"British Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"This is a brew for adventurous beer drinkers. It is brewed with four malts: two row pale Harrington, Munich malt, chocolate malt, and a rare peat smoked malt commonly used by distillers of Scotch malt whiskey. This unique malt gives Samuel Adams® Scotch Ale its distinct, subtle smoky character and deep amber hue. Samuel Adams® Scotch Ale is brewed using traditional English hops, Goldings and Fuggles. This is a big brew dominated by malt flavors and aromas, rich and full bodied, slightly sweet. Its layered malt complexity lingers to a smooth and silky finish.","ibu":69,"name":"Samuel Adams Scotch Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.1999998093,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Our flagship brew is a smooth, amber beer that combines the malty goodness of an Octoberfest lager with the slight fruitiness of an ale. Hearty but refreshing.","ibu":22,"name":"Railyard Ale","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":13.727057060460647,"category":"North American Lager","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":53,"name":"Summer Wheat","state":"Oregon"},{"abv":7.1999998093,"address":"91 S Royal Brougham Way","category":"British Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":7,"name":"Scotch brand Ale","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":14.498513587704046,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":74,"name":"Rauchbier","state":"Bayern"},{"abv":5.324412249852259,"address":"Heitzerstrae 2","category":"German Ale","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":64,"name":"Hefe-Weizen Hell","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":13.259053984257935,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":99,"name":"Two Lions Pale Ale","state":"British Columbia"},{"abv":11.688528874634676,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":27,"name":"Extra Special Bitter","state":"British Columbia"},{"abv":8.5,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":79,"name":"Guldenberg","state":"West-Vlaanderen"},{"abv":7.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":27,"name":"Moonraker","state":"Manchester"},{"abv":6,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A refreshing light and hoppy ale. Probably our best allrounder. Recommended serving temperature 8°C/45°F. Ideal with barbequed or smoked meat dishes.","ibu":75,"name":"Nøgne Ø Pale Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":115,"name":"Hitachino Nest Real Ginger Brew","state":"Kanto"},{"abv":13,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Founders most complex, most innovative, most feared and yet most revered ale produced. Massive in complexity the huge malt character balances the insane amount of alpha's used to create this monster. More IBU's than any brewery has documented, more than you would believe and dry-hopped for twenty-six days straight with a combination of 10 hop varieties. Dangerously drinkable and deliciously evil. We dare you to dance with the Devil.","ibu":118,"name":"Founders Devil Dancer","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.5999999046,"address":"311 Tenth Street","category":"Other Style","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"The Gold Medal-winning Honey Moon Summer Ale is a classic summer ale made even better with real clover honey, fresh orange peel and both pale and white wheat malts. Proff that brewing the perfect summer ale is a true art.","ibu":85,"name":"Honey Moon Summer Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"Irish Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Dark, full bodied ale with a prominent smoked malt flavor","ibu":5,"name":"Puffers Smoked Porter","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":14.436471559101335,"address":"793 Exchange Street","category":"North American Lager","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"A classic European style lager. We take the time to brew this beer as a true lager should be brewed. And it's well worth the wait! You can enjoy the drinkability of this light-gold, refreshing beer with friends at the pub or at home after a long day.","ibu":112,"name":"Vermont Lager","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":3.9000000954000003,"address":"529 Grant St. Suite B","category":"Other Style","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"The inviting flavor and aroma of freshly picked raspberries is naturally infused in this unique, refreshing fruit beer. Raspberry Ale is brewed in the typical Thirsty Dog fashion, full of flavor and uninhibited","ibu":98,"name":"Rasberry Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"From the centuries-old tradition of Belgian Abbey monks comes our \"Über Abbey\" Ale. Aromatic and full bodied, pouring deep burgundy in color, it's bold, it's Heavy Seas. Grab a line...Holy Sheet!...or you'll be swept overboard. Seasonally available in February while supplies last.","ibu":65,"name":"Holy Sheet","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":0.15482123264157654,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":93,"name":"Pinckney Street Pale Ale","state":"Wisconsin"},{"abv":14.542209583349779,"address":"401 East Main Street","city":"Belgrade","coordinates":[45.7736,-111.172],"country":"United States","ibu":113,"name":"Mythical White Grand Cru","state":"Montana"},{"abv":8.780642986727393,"address":"Broughton","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":12,"name":"Black Douglas","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":4.8000001907000005,"category":"German Lager","city":"Mossautal","coordinates":[49.6747,8.925],"country":"Germany","ibu":103,"name":"Schwarz Bier","state":"Hessen"},{"abv":5.090316909293203,"address":"200 Village Green","category":"British Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":0,"name":"Winter Delight","state":"Illinois"},{"abv":6.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"RIDE Belgian-style Strong Pale Ale boasts a glorious deep gold color and an amazing yet arrogant head. Plentiful pale malt creates beautiful, agile body. Assertive hops and Belgian yeast achieve charismatic floral and spice notes in aroma and flavor. But Pride’s predominant and unique character comes from its exposure to Brettanomyces in French oak Chardonnay barrels. At once tart and refreshing yet earthy and musty, Pride is unlike most beers on earth. And it’s bitter, lingering finish demands another sip. \n\n\nAwarded a BRONZE medal at World Beer Cup 2008, Pride has much too much to boast about.","ibu":12,"name":"Pride","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.169851579349446,"address":"6 N. Reamstown Road","category":"German Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A pale bock with fresh maltiness in the aroma and palate. Deep golden color with a generous amount of pure honey to smooth the high alcohol finish. Perle and Cluster hops for bittering and Sazz and Hallertau for finishing. Original gravity above 19 Plato.","ibu":66,"name":"Union Barrel Works Mai-Bock","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":7.1999998093,"address":"2105 N. Atherton St.","category":"German Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A strong dark German style wheat bock. This wheat beer is estery like the hefeweizen, but bigger with more of everything.","ibu":24,"name":"Otto's Weizenbock","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.5,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A sensual dark brew with the softness of a Scotch ale crafted with the malt make-up of an English Porter.","ibu":54,"name":"The Duke of Winship","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.9000000954,"address":"Stoopkensstraat 46","category":"Other Style","city":"Hoegaarden","coordinates":[50.7778,4.8877],"country":"Belgium","description":"Hoegaarden is the authentic Belgian wheat or white beer. It has a unique and extremely complex brewing process whereby the brand is first top fermented and then is refermented within the bottle - ending up in a unique cloudy-white appearance. The brand's unique appearance is mirrored by its one-of-a-kind taste - sweet and sour beer with a little bitterness, slightly spicy, with a strong touch of coriander and a hint of orange, perfect for warm summer days, instead of other refreshing beverages. Refreshing, a little quirky, and decidedly different - naturally.","ibu":95,"name":"Hoegaarden","state":"Vlaams Brabant"},{"abv":5,"address":"Obere Knigsstrae 19-21","category":"German Ale","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":38,"name":"Weizla Hell","state":"Bayern"},{"abv":0.8912577364974861,"city":"Idaho Falls","coordinates":[43.4666,-112.034],"country":"United States","ibu":22,"name":"Dr. Hops Pale Ale","state":"Idaho"},{"abv":5.531708360674655,"address":"323-C Cross Street","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","ibu":102,"name":"Southern Blonde","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":5.75,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Traditionally brewed to celebrate the harvest season, this reddish-brown lager has a rich caramel character and a long flavorful finish. Its delicious malty sweetness is nicely accented by a slighty fruity bouquet and a mild hop flavor.","ibu":87,"name":"Sprecher Oktoberfest","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":9.8000001907,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":41,"name":"Bombshell Barleywine","state":"California","website":"http://www.portbrewing.com/"},{"abv":4.5,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":67,"name":"Honey Pilsner","state":"Wisconsin"},{"abv":5.5,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":101,"name":"Winterfestival","state":"Bayern"},{"abv":13.62084496112594,"address":"Portland OR 97209","city":"Portland","coordinates":[45.5325,-122.686],"country":"United States","ibu":77,"name":"Hazelnut Stout","state":"Oregon"},{"abv":9.729145644927046,"address":"5 East Alger Street","category":"North American Ale","city":"Sheridan","coordinates":[44.8007,-106.956],"country":"United States","ibu":100,"name":"Oil Can Stout","state":"Wyoming"},{"abv":2.2513580665150235,"address":"238 Lake Shore Drive","category":"North American Lager","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"This unique, award-winning lager combines the smoothness of traditional barley with the warm, nutty flavor of wild rice. Truly an original brew!","ibu":22,"name":"Wild Rice Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":4.8000001907000005,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Extra Pale Ale with a subtle Rye flavor, this beer Pours a light orange-amber color with a thin light beige head. A refreshing summer beer.\n\n\nAvailable at the Brewery from April - September","ibu":26,"name":"Rare Rooster Summer Rye Ale","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":7.5,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":50,"name":"Double Enghien Blonde Ale","state":"Hainaut"},{"abv":9.174600682853782,"category":"German Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":46,"name":"Yodeler Weisse","state":"Wisconsin"},{"abv":13.416770589730135,"address":"1800 North Clybourn Avenue","category":"Belgian and French Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":64,"name":"Kriek","state":"Illinois"},{"abv":12.58659527710683,"address":"375 Water Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"While ales are fermented for relatively short periods of time at room temperature, lagers employ a special variety of yeast and much cooler fermentation temperatures to achieve their truly clean, dry flavour profile. Our Lion's Gate Lager has a light body, a very crisp palate and a soft, hop finish, which is imparted by the exquisitely gentle Czech Saaz hop variety. The Lions would approve.","ibu":54,"name":"Lions Gate Lager","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":8.8000001907,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Imperial Pilsner, part of the Morimoto Signature Series, was launched in September 2003. The beer was selected by internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nBrewed with four ingredients: 100% French Pilsner Malt, 100% Sterling Hops, Free Range Coastal Water and Czech Pilsner Yeast. Imperial Pilsner is golden in color with a dry hop floral aroma and intense hop bitterness supported by a big malty backbone. Available in a swing-top 750 mil ceramic bottle and 13.2 gallon sankey kegs.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":9,"name":"Morimoto Imperial Pilsner","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"1340 East Eighth Street #103","category":"German Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This is a Bavarian ale which uses 51% wheat malt in the recipe. Very low bitterness. It is unfiltered so the characteristic cloudiness is achieved. The haze comes from suspended yeast. Hefe-Weizen literally means \"yeast-wheat.\" The aroma is reminiscent of cloves and banana and is put out by the yeast. While some of this aroma carries over to the flavor, the dominant flavor is the malty wheat. \n\n\nAlcohol content approximately 5.0% by volume (ALWAYS ON TAP!!)","ibu":17,"name":"Hefeweizen","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A mild, roasted nut and caramel flavored ale with a deep brown color. It is a medium-bodied beer with a mild to medium hop bitterness and aroma.","ibu":80,"name":"Nut Brown Ale","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5.5,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A bold roasty stout with 50lbs of organic fair trade espresso beans. A tribute to the best coffee house in town. Coffee lovers will easily embrace this delicious brew.","ibu":6,"name":"Satellite Stout","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":5.846325801659926,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Magic Hat's seasonal Lager is also called Vinyl","ibu":24,"name":"Scumptious Spring Lager (Vinyl)","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"Brewed in collaboration with brewmaster Toshi Ishii from Yo-Ho Brewing, Japan. \n\n\nMalt: lager, münchener, crystal \n\nHops: Millennium, Centennial, Chinnok, Amarillo and Brewers Gold. \n\n\n19° P, 100 IBU, 8% ABV.","ibu":42,"name":"Nøgne Ø Doppelt IPA","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9.3999996185,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":66,"name":"Double Trouble Imperial IPA","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":7.1999998093,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"The Roman name for the Low Countries–is a marriage of the best in American and Belgian brewing traditions. Belgian pilsner malt, a generous amount of American and European hops and a unique Belgian yeast strain combine to give Belgica big notes of citrus and spice, creating a lively concoction perfect for spring in the Rockies–or the Ardennes.","ibu":103,"name":"Great Divide Belgica","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4.8000001907000005,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","description":"The Burning Bird is our representation of the Phoenix, our city’s namesake, a mythical bird which lived 500 years, consumed itself by fire, then was reborn from its ashes. Like the phoenix of old, this pale ale is reborn from the time when fabulous hoppy brews were more than mere myths.","ibu":43,"name":"Burning Bird Pale Ale","state":"Arizona","website":"http://www.sonoranbrewing.com/"},{"abv":5.3000001907,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"This German-style black lager has a deep color and gently roasted flavors balanced by an understated hoppiness. A thirst-quenching version of dark beer. A 2008 Great American Beer Festival Gold Medal Winner in the German Schwarzbier category.","ibu":24,"name":"B3K Schwarzbier","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":10.5,"address":"1621 Dana Ave.","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","ibu":84,"name":"186,000 MPS Malt Liquor","state":"Ohio","website":"http://www.listermann.com/"},{"abv":1.6994722787136696,"address":"1621 Dana Ave.","category":"British Ale","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","description":"A bottle-conditioned English style ale.","ibu":48,"name":"Wild Mild Ale","state":"Ohio","website":"http://www.listermann.com/"},{"abv":4.5,"address":"6923 Susquehanna St.","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"A \"Belgian White\" wheat beer, gently spiced with (new!) coriander and bitter orange peel. Light bodied with hints of orange and lemon. A great beer for hot weather or for those looking for something lighter all year round.","ibu":34,"name":"East End Witte","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":8.136477310391609,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":19,"name":"IPA","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":11.5,"address":"Kerkstraat 92","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","ibu":67,"name":"Deus Brut des Flandres","state":"Oost-Vlaanderen"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":102,"name":"Flemish Primitive Wild Ale (Pig Nun)","state":"Oost-Vlaanderen"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":114,"name":"Island Lager","state":"British Columbia"},{"abv":10.199999809,"address":"1195-A Evans Avenue","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":105,"name":"Old Godfather","state":"California"},{"abv":7,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":91,"name":"Dubbel","website":"http://www.latrappe.nl/"},{"abv":5.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Cinder Cone Red's diverse selection of hops and barley captivates thirsty palates with its toffee-like flavor, intense citrus aroma and defined bitterness.\n\n\nLocated on the northern slope of Mt. Bachelor, the Cinder Cone was also known as \"Red Hill\" due to its reddish color that is revealed as the seasons change, the weather warms and the snow melts. It's spring. Time to get outside.","ibu":66,"name":"Cinder Cone Red","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":7.716458742843791,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":66,"name":"Christmas Ale 2007","state":"California"},{"abv":7,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"We took the traditional IPA, originally shipped from England to India in the 1700's, and made it bolder and more flavorful - American Style. We've added new varieties of highly aromatic American hops to create a distinctive bitterness profile and an incredible hop character.","ibu":25,"name":"Odell IPA","state":"Colorado"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":37,"name":"Schmitz Pale Ale No. 5","state":"Wisconsin"},{"abv":14.647764978953742,"address":"1171 Hooper Avenue","category":"Other Style","city":"Toms River","coordinates":[39.9767,-74.1829],"country":"United States","ibu":37,"name":"Apple Ale","state":"New Jersey"},{"abv":9.35604673824028,"address":"Bergstrae 2","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":115,"name":"Weißbier Dunkel","state":"Bayern"},{"abv":7.953985140081864,"address":"Obere Knigsstrae 10","category":"North American Lager","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":70,"name":"Rauchbier Weissbier","state":"Bayern"},{"abv":11.09327258007266,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":70,"name":"Pilsner","state":"Wisconsin"},{"abv":6.0675883871027985,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":63,"name":"Premium Golden Ale","state":"California"},{"abv":5.5700001717,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":59,"name":"Singletrack Copper Ale","state":"Colorado"},{"abv":9.200911009247376,"address":"141 South Main Street","category":"German Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This unfiltered, true German wheat beer has hints of clove and banana which the yeast produces during fermentation.","ibu":60,"name":"Rock-n-Wheat","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":3.9000000954000003,"category":"German Lager","city":"San Salvador","country":"El Salvador","ibu":60,"name":"Caguama","website":"http://www.laconstancia.com/"},{"abv":4.8000001907000005,"address":"Domring 4-10","category":"German Lager","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":101,"name":"Warsteiner Premium Verum","state":"Nordrhein-Westfalen"},{"abv":5.3000001907,"address":"2320 SE OSU Drive","category":"Irish Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Dedicated to the chocolate lover in each of us. Mocha Porter was once known as New Porter, in honor of the town of Newport, Oregon and home of Rogue Ales. The January/February 1995 issue of Mens Health magazine features a bottle of Rogue New Porter (todays Mocha Porter) in the Fifth Annual Collection of Good Advise, Health News, Dire Warnings, Notable Folks and Unsolicited Opinion. New Porter is described as the Best New Beer for 1994! The caption reads: \"Oh, Hoppy Day: For a beer- drinking experience order up a bottle of this microbrew from Oregon.","ibu":79,"name":"Mocha Porter / New Porter","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.5,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"The original winter warmer, Tally-Ho is actually a barley wine brewed to a nineteenth century recipe. It's sweet; it's heart-warming; it's rich - but watch out, it's got a kick like a drayman's horse!","ibu":56,"name":"Adnams Tally Ho","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":1.0593279407872291,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":54,"name":"Garten Bräu Fest","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.899522914467982,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":86,"name":"Apple Bach","state":"Wisconsin"},{"abv":13.08131370273526,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":52,"name":"Old Scratch Barleywine 2000","state":"Wisconsin"},{"abv":7.842193339532586,"address":"111 South Canyon Street","category":"North American Ale","city":"West Yellowstone","coordinates":[44.6584,-111.1],"country":"United States","ibu":26,"name":"Lone Mountain Altbier","state":"Montana"},{"abv":4.353750396647181,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":59,"name":"Bombay Pale Ale","state":"South Carolina"},{"abv":5.5500001907000005,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","ibu":60,"name":"Lap Dance Pale Ale","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","description":"Woodchuck Amber is the original Woodchuck Cider. It's made from a blend of apples and fermented with champagne yeast to produce a great tasting and refreshing alcoholic drink. It's available in 6-packs and 12-packs, as well as on draft.","ibu":74,"name":"Woodchuck Amber Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":13.78657150872032,"ibu":111},{"abv":6,"address":"1 Kendall Square #100","category":"Irish Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Charles River Porter\n\n\nDeep and dark, full-bodied and robust, our Porter is crammed full of rich, roasted malt character. With underlying notes of fruitness, caramel and toffee, it finishes with a strong hop presence","ibu":101,"name":"Charles River Porter","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":3.287798296497627,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":114,"name":"Amber","state":"North Carolina"},{"abv":10.33704369429066,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":43,"name":"Beachballs Red Ale","state":"Arizona"},{"abv":0.7563465304994854,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":14,"name":"Wheat Hook","state":"Washington","website":"http://www.redhook.com/"},{"abv":14.172963496753045,"address":"412 North Milwaukee Avenue","category":"Other Style","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":40,"name":"Main Street Raz","state":"Illinois"},{"abv":11.576472955626503,"address":"208 East River Drive","category":"German Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":103,"name":"Hefeweizen","state":"Iowa"},{"abv":7.8000001907000005,"address":"AB43 8UE","category":"Other Style","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"Dogma is an innovative, enigmatic ale brewed with guarana, poppy seeds and kola nut all blended together with Scottish heather honey. A conspiracy of transcontinental ingredients infused with some devastatingly BrewDog imaginative thinking.\n\n\nThe flavours, intricacies and nuances of this beer are best enjoyed while musing over some obscure 17th Century philosophical meanderings, such as:\n\n\n\"If we disbelieve everything because we cannot certainly know all things we will do much, what as wisely as he who would not use his wings but sit still and perish because he had no wings to fly.","ibu":60,"name":"Dogma","website":"http://brewdog.com/"},{"abv":1.8517468631071954,"address":"21 W. Bay St.","category":"British Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","ibu":56,"name":"Tarletons Bitters","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":3.7999999523,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"German Pilsner Malt and a touch of flaked wheat are used to produce this light bodied, straw colored ale. Horizon and Glacier hops provide the balance. This beer finishes crisp and dry. Try this with and orange slice. 3.8% ABV","ibu":70,"name":"Mt. Takhoma Blonde Ale","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":4.8000001907000005,"address":"491 Ontario Street","category":"North American Lager","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Light bodied golden beer, very balanced flavor with soft, clean finish. Available bottles at your favorite store and at an increasing # of bars.","ibu":37,"name":"Buffalo Lager","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":4,"address":"1763 South 300 West","category":"North American Lager","city":"Salt Lake City","coordinates":[40.7322,-111.9],"country":"United States","description":"A turn of the century pure malt, crisp lager. 1st Amendment Lager is made with European style hops and Munich malts. This beer has a wonderful, clean, crisp flavor certain to please all.","ibu":12,"name":"Wasatch 1st Amendment Lager","state":"Utah","website":"http://www.utahbeers.com/"},{"abv":6.1999998093,"address":"4405 Honoapiilani Highway #217","category":"North American Ale","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"India Pale Ale was developed in Burton, England, as a \"Super-Premium\" hoppy pale ale around 1800. The extra strength in alcohol and hops helped preserve the beer on its long export journeys to India and beyond. The style developed a following worldwide. Its flavor begins with a smooth, malty creaminess followed with a big burst of dry-hop flavor from English Kent Golding Hops. It then finishes with a lingering yet pleasant bitterness.","ibu":103,"name":"Big Swell IPA","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"India Pale Ales, or IPA’s, were brewed for British soldiers stationed in India. These ales needed to higher in alcohol and have more hops than normal to survive the long journey, and ours is no exception. Brewed with Belgian and German malts and dry hopped with loads of Cascades, our version honors our friend who had his own grueling journey involving a boat and cold water!","ibu":35,"name":"McGilligans IPA","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.5999999046,"address":"5121 N Ravenswood Ave,","city":"Chicago","coordinates":[41.975,-87.674],"country":"United States","description":"If malt and hops are the two poles of brewing, this beer is the gently spinning sweet spot between them. First, you’ll notice the spicy aromas of Perle and Hallertau hops. Then - wipe the foam off the tip of your nose - dive into the toasty flavors of Vienna and Munich malts. Dynamo starts strong and finishes crisp and smooth. The balanced flavors, aromas, and even the coppery-red tones of this beer go great with everything. Fear no pairing. The best time to enjoy Dynamo is when you’re thirsty.\n\n\nDynamo Copper Lager goes great with pizza, neighborhood block parties, spring rolls, first dates, football games, whiskey, tapas, the Sunday newspaper, late-night burritos, veggie omelets, business lunches, grilled mushrooms, pretzels, political debate, corn-on-the-cob, classic sci-fi flicks, mixed greens, campfires, salmon, billiards, cherry pie, rock shows, pumpernickel, salsa, grand openings, peanuts, sewing bees, extra sharp cheddar cheese, and holidays.","ibu":30,"name":"Dynamo Copper Lager","state":"Illinois","website":"http://www.metrobrewing.com/"},{"abv":4.8000001907000005,"address":"Munketoft 12","category":"German Lager","city":"Flensburg","coordinates":[54.779,9.4355],"country":"Germany","ibu":53,"name":"Flensburger Pilsner","state":"Schleswig-Holstein","website":"http://www.flens.co.uk/"},{"abv":10.861398736409473,"address":"871 Beatty Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":78,"name":"Honey Brown","state":"British Columbia"},{"abv":13.985569586387363,"address":"Alte Eggerstandenstrasse 1","city":"Appenzell","coordinates":[47.3301,9.4135],"country":"Switzerland","ibu":23,"name":"Leermond Bier"},{"abv":8.1000003815,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Great Divide’s award-winning Hibernation Ale is Colorado’s original strong ale – it has been our winter seasonal each year since 1995. Since that time, Hibernation has become the most sought-after winter beer in Colorado. Hibernation’s massive flavors are so intense that it requires over three months of aging each year. Each summer, while our brewers are still spending their weekends in flip-flops and shorts, they prepare for July’s Hibernation brewing schedule.\n\n\nWe cellar Hibernation until late October, when it reaches the peak of perfection. This lengthy aging process gives Hibernation its revered malty richness, complex hop profile and hearty warming character, which is perfect right out of the bottle or cellared for longer periods of time. Hibernation is a lively treat that really beats the winter chill. This scrumptious, collectible, and imminently cellarable ale is only available for six weeks each year, from November 1 to December 15. Hibernation Ale is the perfect gift or accompaniment to your winter festivities.","ibu":48,"name":"Hibernation Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.5999999046,"address":"1265 Boston Avenue","category":"North American Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":102,"name":"Warrior IPA","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7.429864825477709,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":24,"name":"Red Sled Winter Ale","state":"Nebraska"},{"abv":3.935435597513143,"category":"North American Ale","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":18,"name":"Quarry Rock Red","state":"Minnesota"},{"abv":3,"city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":2,"name":"Blonde","state":"Wisconsin"},{"abv":7.622035630195841,"address":"Breitckerstrae 9","category":"German Lager","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":91,"name":"Meranier Schwarzbier","state":"Bayern"},{"abv":7.839347745438711,"address":"Tadcaster LS24 9SA","city":"Tadcaster","coordinates":[53.8846,-1.2652],"country":"United Kingdom","ibu":1,"name":"John Courage Amber","state":"North Yorkshire"},{"abv":11.992830152418868,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":113,"name":"Wooden Ships ESB","state":"Wisconsin"},{"abv":5.9000000954,"address":"1430 Washington Avenue South","category":"North American Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Our brewers believe an American IPA should be full of American hops. Masala Mama uses three different West Coast varieties, over five hop additions. This copper-colored ale is not strictly about hops; American pale barley and several caramel malts balance the flavor for a green, toasted caramel finish. The British realized an abundance of hops will help preserve beer … we realized hops can preserve our customers.","ibu":91,"name":"Masala Mama IPA","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.5,"category":"North American Ale","city":"Foothill Ranch","coordinates":[33.6864,-117.66],"country":"United States","ibu":17,"name":"Mortality Stout","state":"California"},{"abv":5,"address":"Marsstrae 46-48","city":"München","country":"Germany","description":"Franziskaner Hefe-Weisse Dunkel wins supporters with its refreshing yet aromatic and full-bodied flavour. This dark, cloudy specialty is a special treat for weiss beer connoisseurs and bock beer aficionados.\n\n\nAll of Franziskaner's weiss beer products - Hefe-Weisse Hell and Hefe-Weisse Dunkel - are top-fermentation beers noted for their agreeable carbonation levels and zesty wheat flavour. The consistently high quality of our products makes Franziskaner weiss beers a refreshing taste sensation of a special sort. All Franziskaner weiss beers are brewed in strict adherence to the Bavarian Purity Law of 1516.","ibu":76,"name":"Franziskaner Hefe-Weissbier Dunkel","state":"Bayern"},{"abv":1.8011976813506403,"address":"115 S. Fifth St.","category":"British Ale","city":"Columbia","coordinates":[38.95,-92.3323],"country":"United States","description":"Black as diesel oil, Oil Change is big in roasty chocolate flavors. A large amount of flaked oats gives this stout a velvety smoothness. Oil Change is nitrogen charged to give it a thick creamy head.","ibu":58,"name":"Oil Change Oatmeal Stout","state":"Missouri","website":"http://www.flatbranch.com"},{"abv":5.845709417092067,"category":"Irish Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":102,"name":"Stealth Dark Ale","state":"Hawaii"},{"abv":7.973192518414161,"category":"North American Lager","city":"Casper","coordinates":[42.8666,-106.313],"country":"United States","ibu":62,"name":"Wild Wyo Wheat","state":"Wyoming"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":40,"name":"Natural Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.880083650200905,"address":"238 Lake Shore Drive","category":"Irish Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"This dark, full bodied ale has a hint of rye accompanied by chocolate malt. The perfect brew for relaxed sipping!","ibu":22,"name":"Rye Porter","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":5.9000000954,"address":"50 N. Cameron St.","category":"North American Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Zoigl is a golden, unfiltered lager beer which was originally brewed only in the region of Eastern Bavaria, between Franconia and the Czech Republic. For centuries, Zoigl was brewed in brewhouses owned by the town or an association of small brewers. \n\n\nThe Zoigl-Star, a six-angular star similar to the Star of David, was the sign of brewers in the middle ages. The star symbolizes the three elements (water, earth, and fire) and the three ingredients (water, malt, and hops) used for brewing. The importance of the yeast was not yet known in the 1400’s.","ibu":21,"name":"Zoigl Star Lager","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.6999998093,"address":"5417 Trumpeter Way","category":"Other Style","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Trout Slayer is a filtered wheat ale, fermented at cool temperatures, making it a smooth drinkable session beer. Brewed with Palisade, Glacier, and Mt. Hood hops, this straw colored beer is sure to please any craft beer drinker. IBU 35 SRM 5 ABV 4.7%","ibu":17,"name":"Trout Slayer","state":"Montana"},{"abv":13.162948882224134,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":33,"name":"Fleishhacker Stout","state":"California"},{"abv":4.4000000954,"address":"2100 Locust Street","category":"North American Ale","city":"St. Louis","country":"United States","description":"APPEARANCE: Amber red, bright\nPROCESS: Classic English\nHOPS: East Kent Goldings (UK), Northdown (UK), Pilgrim (UK)\nMALTS: 2-Row and Caramel Malted Barley\nYEAST: London Ale\nOG: 11.2\nSRM: 13.5","ibu":25,"name":"Pale Ale","state":"MO","website":"http://http://www.schlafly.com"},{"abv":5.9499998093,"address":"2501 Southwest Boulevard","category":"German Lager","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"First introduced in 2008, Boulevard Maibock is a new, limited-release seasonal brew. A welcome sign of Spring, this beer is a traditional German lager, lighter in color than other bocks. Boulevard’s Maibock is a distinctive, refreshing take on this springtime classic.","ibu":35,"name":"Boulevard Maibock","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":9.6999998093,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Assistant Brewer Jeremiah works primarily at Midnight Sun Brewing Company with regular hours at the AK Rock Gym and the occasional shift or two Kaladi Brothers Coffee. To keep up with his weekly work schedule, he enjoys locally roasted coffee in the morning--OK, sometimes in the afternoon as well--and locally brewed beer in the evening-- OK, sometimes in the morning as well. This beer brings two of his worlds together as an incredible antidote for hibernation.","ibu":103,"name":"Brewtality Espresso Black Bier","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.0999999046,"address":"312 Center Rd","category":"British Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"Medium in body, brown in color, this ale is delightfully malty with complex caramel overtones lending to the smoothest finish you will ever experience! Don’t be afraid of the dark and try this deceptive delight!!!","ibu":93,"name":"Shepard's Crook Scotish Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"The Abyss has immeasurable depth inviting you to explore and discover its rich, complex profile. Hints of molasses, licorice and other alluring flavors draw you in further and further with each sip. And at 11% alcohol by volume, you will want to slowly savor each and every ounce. \n\n\nNovember 2008 marks the third release of this dark and mysterious imperial stout. Limited availability in wax-dipped 22-ounce bottles and on draft at a few select establishments. \n\n\n“The Abyss was one of those beers I didn’t want to end. I was totally blown away - this is precious stuff.” Christian DeBenedetti, beer writer and Men’s Journal contributor","ibu":92,"name":"The Abyss","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.100000381,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Revisiting Scratch #3, we take the same Tripel recipe, add beet and cane sugars to the kettle, and run the wort through our hopback brimming with juniper berries, coriander and yarrow flowers.\n\n\nInspired by the herbaceous nose of gin, the berries and flowers give a slight pine/citrus aroma with floral undertones. Scratch #8 has a dry, yeasty finish and noticeable alcohol warming when consumed.","ibu":13,"name":"Scratch #8 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"As the name implies, a rich deep brown ale in color with dark amber highlights. The flavor is slightly sweet with hints of nuts and toffee finishing smooth with no after taste.","ibu":47,"name":"Barnstormer Brown Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":4,"address":"32295 State Route 20","category":"North American Lager","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"This copper colored lager is brewed with hybrid yeast that ferments at warmer temps, giving that clean refreshing taste of a lager with the slight fruitiness of an ale.","ibu":65,"name":"Catalina Common Lager","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":6,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","description":"Negra Modelo has long been the dark beer alternative for Mexican beer drinkers. It has been identified as one of the few surviving examples of Vienna style lager - a style that was largely replaced in European breweries with Oktoberfest, a slightly lighter lager, in the early twentieth century. \n\nNegra Modelo pours with an off-white, medium head. The body is clear with a rich amber/copper color. The aroma is sweet with hints of apple. The impression at the first sip is sweet. This gives way only a bit to some hops bitterness which gives some balance but leaves the beer firmly in the sweet category. It has no real lager snap at the end, just lingering hops. This actually makes the second sip more balanced than the first.\n\n\nThere is some complexity and depth here but the flavors are very delicate. They are obliterated by the aggressive flavors of the Mexican food that Modelo is often served with making it a sweet balance to the savory and sometimes hot cuisine.","ibu":13,"name":"Negra Modelo","website":"http://www.gmodelo.com.mx/"},{"abv":10.119343851567095,"address":"793 Exchange Street","category":"Irish Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Stovepipe Porter is made in the traditional porter stlye, and is a favorite with all porter lovers. Ruby-black in color, Stovepipe Porter has a rich palate and a roasted, hoppy aroma. It is delicious on its own or with a meal, and tastes great with chocolate.","ibu":112,"name":"Stovepipe Porter","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":6,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Rogue Smoke(previously known as Welkommen on draft) is a German style Rauchbier (Smoke Beer), which was inspired by the Fall of the Berlin Wall. Most rauch brews are bottom fermented, however Rogue Smoke, is top fermented. It is orange-amber in hue with a delicate smoke aroma and flavor with an intense hop finish.\n\n\nIn All About Beer, August, 1995 issue, Christopher Brooks writes \"Alder wood, indigenous to the Northwest, is the smoking agent, though a small amount of Bamberg malt is used in the mash, too. Beech is drier than alder, reports brewmaster John Maier, so we use a little of that for added complexity. Welkommen, a smoky, nutty ale, is also very dry, which given the 15 pounds of hops (perle and Saaz) added to each 15-barrel batch, is no surprise.\" The seven medals in nine years which Rogue Smoke won at theGreat American Beer Festival in Denver are also a tribute to this unusual brew.\n\n\nRogue Smoke is brewed with Great Western Harrington, Klages, Munich, Hugh Baird Crystal, Carastan (30-37 and 13-17), Chucks Alderwood Smoked Munich and Bamberg Beechwood Smoked malts; plus Perle and Saaz hops. Rogue Smoke is available in the classic 22-ounce seriograph bottle (replacing the older 7 ounce bottle) and on draft.","ibu":0,"name":"Rogue Smoke","state":"Oregon","website":"http://www.rogue.com"},{"abv":8.5,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An unfiltered strong ale that is amber in color and has an intense piney hop aroma. The beer is named in honor of Charlie Papazian, president of the Association of Brewers, founder of the American Homebrewers Association and homebrewing guru. John Maier, Brewmaster for Rogue Ales, made his first batch of beer in 1981 using Papazians influential book \"The New Complete Joy of Homebrewing.","ibu":20,"name":"Charlie 1981","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.6999998093,"address":"2439 Amber Street","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Saisons were historically brewed to keep the farmhands happy and hydrated during the warm summer months. Crafted using Belgian pilsen malt and candi sugar, this golden Belgian style ale is a refreshing change from your usual beer lineup.","ibu":27,"name":"Yards Saison","state":"Pennsylvania"},{"abv":5.3000001907,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alt. The name of this beer style comes from the German word \"alt\" meaning \"old\". This refers to the aging that alts undergo since they ferment more slowly and at colder temperatures than most ales. Slow fermentation helps condition the flavors in Alaskan Amber, contributing to its overall balance and smoothness.\n\n\nRichly malty and long on the palate, with just enough hop backing to make this beautiful amber colored \"alt\" style beer notably well balanced.\n\n\nAlaskan Amber is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches of rainfall we receive each year.","ibu":114,"name":"Alaskan Amber","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.3000001907,"address":"800 East Lincoln Avenue","category":"British Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"The distinctive hop character of our 5 Barrel Pale Ale is due to the extraction of essential oils from select hops. We treat 5 Barrel Pale Ale to an infusion of fresh whole hop flowers in the Hop Back and the Fermentor, as well as four hop additions during the kettle boil. We like how this gives the beer a fresh, lively flavor and aroma.","ibu":58,"name":"5 Barrel Pale Ale","state":"Colorado"},{"abv":0.12025945275226602,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":65,"name":"Hell"},{"abv":1.958910572755398,"address":"Spitalstrasse 50","city":"Raeren","coordinates":[50.6718,6.122],"country":"Belgium","ibu":8,"name":"Rader Ambrée","state":"Lige"},{"abv":7.5,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":104,"name":"Oerbier","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":94,"name":"Ambree","state":"Hainaut"},{"abv":5.5,"address":"1777 Alamar Way","category":"Irish Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":117,"name":"Certified Organic Porter","state":"California","website":"http://eelriverbrewing.com/"},{"abv":5,"category":"North American Ale","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":25,"name":"Iowa Pale Ale","state":"Iowa"},{"abv":9.985096612369,"category":"German Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":43,"name":"Heavenly Hefeweizen","state":"Colorado"},{"abv":2.7712247565831727,"address":"27 Broadway","city":"Toledo","coordinates":[41.6432,-83.5384],"country":"United States","ibu":82,"name":"Belgian Trippel","state":"Ohio"},{"abv":12.979208194213959,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":76,"name":"Alt-ernative Amber","state":"Ohio"},{"abv":8.89549141435644,"category":"North American Ale","city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":10,"name":"Chocolate Stout","state":"Colorado"},{"abv":14.522520262300317,"address":"1501 East Wilson","category":"North American Lager","city":"Batavia","coordinates":[41.8539,-88.2776],"country":"United States","ibu":72,"name":"Beer","state":"Illinois"},{"abv":7.5999999046,"address":"Nymphenburger Straße 4","category":"German Lager","city":"München","country":"Germany","ibu":10,"name":"Triumphator","state":"Bayern"},{"abv":1.028950019874062,"address":"80 Westgate","city":"Peterborough","coordinates":[52.5758,-0.248],"country":"United Kingdom","ibu":64,"name":"Jeffrey Hudson Bitter","state":"Cambridge"},{"abv":6.529169085873496,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":59,"name":"Caramel Rye","state":"Michigan"},{"abv":5.5,"address":"Kwabrugstraat 5","city":"Bellegem","coordinates":[50.7767,3.2785],"country":"Belgium","ibu":56,"name":"Bellegems Bruin","state":"West-Vlaanderen"},{"abv":7.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":76,"name":"7th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":14.738884115160564,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":23,"name":"Belgian Abbey Red","state":"California"},{"abv":9,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":7,"name":"Come About Imperial Stout","state":"California","website":"http://www.ballastpoint.com/"},{"abv":9.5,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Traditional Belgian-style golden ale, complex aroma and flavor of plums, spice and bananas with a refreshing balanced bitterness.","ibu":39,"name":"Iron Hill Belgian Tripel","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"Irish Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":79,"name":"Lucky 13 Anniversary Release","state":"California","website":"http://www.lagunitas.com/"},{"abv":12.999991152732889,"address":"1035 Sterling Avenue","category":"Other Style","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":63,"name":"Roundhouse Raspberry Wheat Ale","state":"Illinois"},{"abv":1.6109103448362727,"category":"Belgian and French Ale","city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":89,"name":"Framboise","state":"Ohio"},{"abv":14.767802175302766,"category":"North American Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":56,"name":"Pier 96 Lager","state":"Wisconsin"},{"abv":6.1999998093,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":114,"name":"Hop Hearty IPA","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":14,"name":"Montagnarde","state":"Hainaut"},{"abv":4.9000000954,"address":"1 Kendall Square #100","category":"North American Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Big and bold, our Pale Ale distinguishes itself by its huge, fresh hop aroma and flavor. A combination of Cascade and Centennial hops, both in the kettle and during an extensive dry-hopped conditioning time, gives this beer its nectarious flavor.","ibu":48,"name":"Tall Tale Pale Ale","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":9.331697611217024,"category":"German Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":54,"name":"Bavarian Weiss","state":"Illinois"},{"abv":12.421747422875052,"address":"603 East Brewery Street","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":110,"name":"Shiner Summer Stock Kölsch Beer","state":"Texas","website":"http://www.shiner.com"},{"abv":11.291915952381114,"address":"1401 Miner Street","category":"Other Style","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Jack Whacker Wheat Ale is a light, unfiltered brew with a citrus aroma and flavor imparted by a late addition of lemon grass. It's the perfect refreshment for a thirsty, trail-weary ale lover.","ibu":4,"name":"Jack Whacker Wheat Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.3000001907,"address":"St. James's Gate","category":"Irish Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","ibu":117,"name":"Guinness Draught","website":"http://www.guinness.com"},{"abv":9,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"In 750ml corked ’n’ caged bottles this will be and unfiltered, fully bottle conditioned version of the super popular Double Simcoe. Expect Cask taste in a bottle, with more pronounced hoppy flavor and aroma due to being unfiltered. Also, carbonation will be a bit higher as is usual in our cork n cage series in keeping with tradition. It all comes together to form a uniquely great experience for hopheads.","ibu":34,"name":"Unfiltered Double Simcoe IPA","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8.8699998856,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"This Northwest style sour red is a bottled version of our popular Mouton Rouge. This blend of barrels, with up to 16 months of oak barrel lactic fermentation and oak barrel aging, features dark fruit, sour, oak and funk flavors that sweep over your taste buds like an incoming tide.","ibu":78,"name":"Cascade Sang Royal","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":5,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian 'white beer' from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nPresents a light hazy yellow colour with citrus and coriander aromas and fairly subtle malt and hops on the palate. The finish is dry and satisfying. Hazy yellow golden colour. Lemon custard, lime zest, and delicate spice melange aromas. Well-balanced, a frothy entry leads to a dryish medium body of nuts, baked oranges, and slightly phenolic mineral flavors. Finishes with a metallic ore dust, salt, and dried lemon fade. This beer is certified as organic.","ibu":13,"name":"Brasserie de Brunehaut Bio Bière Blanche (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":6.3000001907,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A classic beer for those beer lovers who love their hops, Fiesta IPA will take the Pepsi Challenge (or IPA challenge, as we say in New Mexico) against any other pretenders to the throne. Was it divine providence that made this beer the king of the IPA world? Was it a tireless pursuit of glory? No, this IPA has a top-secret recipe to thank for its success, and this meticulously formulated combination of several different hops combined with a very specific brewing process give Fiesta IPA a spicy, citric, and floral infusion of hop character, which is masterfully counterbalanced with the full-bodied maltiness characteristic of the Santa Fe Brewing Company’s distinctive beers.","ibu":8,"name":"Fiesta IPA","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":5.8000001907000005,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our award-winning India Pale Ale is a hop lover’s dream. We use Galena and Cascade hops in the kettle and dry-hop with more cascade during conditioning. This copper-colored ale has a nice maltiness to balance all the hops.","ibu":42,"name":"Renegade IPA","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":7.8000001907000005,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"A pitch black stout made with ginger, cinnamon and a touch of molasses. This medium–bodied ale has flavors of dark chocolate, roasted coffee beans and ginger snap cookies.","ibu":92,"name":"Delta Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.0999999046,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Budweiser American Ale is brewed with barley from America's heartland and dry hopped with Cascade hops from the Pacific Northwest.\n\n\nAvailable Fall 2008.","ibu":61,"name":"Budweiser American Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":9,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A barrel-aged, strong-ale with a soft and rich caramel-malt character intermingled with deep vanilla tones dancing in an oak bath. Unmistakably distinctive and hauntingly remarkable, Dragon’s Milk’s warming complexity pairs well with smoked meats and cheeses, red meat, or a nice cigar.","ibu":87,"name":"Dragon's Milk","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":8.5,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"The CBC Idiot IPA is an all natural India Pale Ale. A big beer with an 8.5% ABV and brewed with over 3 lbs of hops per barrell. Watch out, this unfiltered \"San Diego IPA\" has been known to reduce even the most intelligent to a blithering \"idiot\".","ibu":119,"name":"Idiot IPA","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":36,"name":"Achel Blond 8°","website":"http://www.achelsekluis.org/"},{"abv":6,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bock is not from the bottom of the barrel! It is a rich malty beer brewed with traditional German ingredients and aged for months to give it a smooth malty character. Look for a rich full-bodied beer.","ibu":67,"name":"Saranac Bock","state":"New York","website":"http://www.saranac.com"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"German Lager","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A rich medium-bodied black lager whose sweet deep malt flavor is balanced by a moderate hop bite and roasted malt tartness that creates notes of bitter chocolate and a slight lingering sweetness.","ibu":108,"name":"Orlio Seasonal Black Lager","state":"Vermont","website":"http://www.orlio.net/"},{"abv":6.5,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":13,"name":"Redhook Long Hammer IPA","state":"Washington","website":"http://www.redhook.com/"},{"abv":5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"This easy-drinking Pale Ale revives the name of one of the early icons of California brewing. Clean-tasting and pleasantly malty, Acme Pale is brewed with Yakima Valley hops, American two-row malt and British specialty malts for depth.","ibu":62,"name":"Acme California Pale Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5,"address":"1340 East Eighth Street #103","category":"German Lager","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This almost black lager originates from Germany and is most closely associated with Porter. The difference being the long maturation period (or lagering time) required to produce a true Schwartzbier. The flavor is reminiscent of treacle, coffee and toasted malt. It is not and should not be perceived as burnt or ashy like some stouts. Black Betty has 5% alc/vol and a smooth character that marks most lager beers.\n\n\nThe name, of course, comes from the Huddy Ledbetter song from the 1940’s which was made popular by the band Ram Jam and later by the Black Crows and U2, among others.","ibu":42,"name":"Black Betty Schwartzbier","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"German Lager","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"We call this beer an Über Pils - a pilsner style bock lager. Rich, malty, and well rounded but with a firm structure of noble hops. Surprisingly pale in color for such a powerful, complex beer. Available year round beginning Feb. 05'.\n\n\nSilver Medal- World Beer Championship 2007","ibu":89,"name":"Small Craft Warning","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.8654796909050217,"address":"1001 South Eighth Street","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":111,"name":"Munich Helles","state":"Wisconsin"},{"abv":5,"address":"Obere Mhlbrcke 1-3","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":21,"name":"Bamberger Gold","state":"Bayern"},{"abv":10,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":16,"name":"Malheur MM","state":"Oost-Vlaanderen"},{"abv":5.5,"category":"North American Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":35,"name":"Dark Pilsener","state":"Wisconsin"},{"abv":5.5,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":62,"name":"Samuel Adams Chocolate Bock","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":12.098173455690905,"address":"146 Snelling Avenue North","category":"German Lager","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":84,"name":"Amber Bock","state":"Minnesota"},{"abv":5.1999998093,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":106,"name":"Nut Brown Ale","state":"Colorado"},{"abv":9.438284536202652,"address":"Laarheiestraat 230","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7586,4.3012],"country":"Belgium","ibu":2,"name":"Oude Gueuze Vielle","state":"Vlaams Brabant"},{"abv":5.5,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":19,"name":"Best Bitter","state":"Washington"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":105,"name":"Hell"},{"abv":4.5,"address":"Hohenzornstrasse 2","category":"Irish Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":42,"name":"Huusbier Schwarz"},{"abv":8.907949785391974,"address":"120 East Third Street","category":"Irish Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":40,"name":"Imperial Porter","state":"Nebraska"},{"abv":6.8000001907000005,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"After several months of experimentation, energy and obsession, Deschutes Brewery’s brewers have triumphed once again. Inversion I.P.A.'s trio of American hops delivers an over-the-top nose with hints of orange and grapefruit. Inversion is then dry-hopped for seven days resulting in an added hoppy kick. To balance the hop character, Deschutes’ brewers used crystal and caraston malts that weave throughout the beer providing soft, complex caramel flavors. \n\n\nJust like clear days up on the mountain, Inversion I.P.A. will deliver a path to higher ground. Inversion I.P.A. is a phenomenal NW-style I.P.A., beckoning all beer drinkers and enticing I.P.A. lovers to invert their world and find clarity above the routine of the everyday.","ibu":30,"name":"Inversion IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":4.5,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":93,"name":"Blanche de Namur","state":"Namur"},{"abv":1.2169531626603924,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":42,"name":"WPA (Wheat Pale Ale)","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":10,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer is the result of the marriage between two very distinct beer styles; the Belgian Tripel & American IPA. We have taken the best qualities from both styles and allowed them to shine through. The fruity and spicy notes from the imported Belgian yeast strain & the pungent flavors and aromas of the American grown Amarillo hops flow seamlessly together to create this flavorful ale. Straight from the Captain’s cellar to yours, we hope you enjoy.","ibu":17,"name":"Captain Lawrence Xtra Gold","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":6.5,"address":"105 East State Street","category":"Other Style","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A smooth golden ale flavored with Pilsner malt and fresh local honey from Schaefer Shack Farms.","ibu":6,"name":"Bee Sting Honey Rye Ale","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":6.5999999046,"address":"40 Bowden Square","category":"Other Style","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","description":"What do brewmasters do in their free time? If you're Phil Markowski, the obsesseive brewmaster of Southampton, you brew at home, of course! Phil turned his fascination with Belgian-style white ales into a quest to master one of the most challenging beers to brew. Using rustic ingredients like un-malted wheat, Phil experimented over his stove until he felt it was perfect. Take one taste and you'll agree, Phil got it \"white.\";\"0","ibu":113,"name":"Double White","state":"New York","website":"http://southamptonbrewery.com"},{"abv":4.5,"address":"420 Harrison Drive","category":"German Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Sometimes it's good to keep it simple. \n\n\nHarborfields HefeWeizen is modeled after the German classic, but meant to be available fresh (like you would enjoy if you were in Germany). Shipping over long distances is not always a friend to beer. \n\n\nNamed for the Centerport-Greenlawn area of Long Island that is home to the Blind Bat Brewery, Harborfields Hefeweizen goes great with fish, chicken, or a summer salad. Some even like it with brunch! (Please enjoy your waffles responsibly.)","ibu":55,"name":"Harborfields HefeWeizen","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":5.5999999046,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"The story of the Seven Gates comes from rural Pennsylvania, not far from the Spring House Brewery. According to the legend, a mental asylum for the criminally insane stood in the middle of a dense forest. Surrounding the asylum were seven concentric gates, preventing would-be escapees. One terrifying night, the asylum caught fire, test link causing the inmates to flee into the menacing forest. As the tale goes, the former asylum residents were trapped by the seven gates, and eventually succumbed to the perils of the forest. The locals swear that the tormented souls of the inmates will torture anyone brave enough to attempt passage through the Seven Gates of the forest.\n\n\nSpring House Brewing Co. honors the local legend by producing a terrifyingly delicious brew that is as familiar as a friendly forest, yet possesses a mysterious quality that will haunt you from the first taste. The enormous, hopped flavor and the meticulous craftsmanship that goes into each bottle will have you believing that the master brewer must be a direct descendent of the former asylum residents.","ibu":65,"name":"Seven Gates Pale Ale","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":8.1000003815,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A Belgian inspired stout that is as dark as a moonless midnight, brimming of roasted malts and bitter hops. It will keep you good company in all places, be thay light or dark.","ibu":115,"name":"Madrugada Obscura","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":4.4000000954,"address":"Route 4 & 100A","category":"North American Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"A light & malty experience modeled after one of our favorite old style English brews.","ibu":74,"name":"Harvest","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":4.5,"address":"38 Evergreen Drive","category":"British Ale","city":"Portland","coordinates":[43.7076,-70.3149],"country":"United States","description":"\"A classic British pale ale with a nod to the legendary beers of Burton-on-Trent. Copper-colored, dry, clean and crisp with lots of late hope taste in an appetizing complex with ale fruitiness from imported Hampshire yeast.\" ~ http://www.gearybrewing.com/pages/pale.php","ibu":79,"name":"Geary's Pale Ale","state":"Maine","website":"http://www.gearybrewing.com"},{"abv":7.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our Vermont Imperial Stout\n\nPast the dark and into the deep lies this stout and hearty hale ale from a far off forsaken age. Black like shimmering shades of furthest night, this ale will warm your cold limbs and light your mind's fire.\n\n\nThumbsucker(tm), big full-bodied, dark beer with a rich, roasted malt flavor and balanced by an assertive hop bitterness, is our salute to the rarest Imperial Stouts of lore.","ibu":101,"name":"Thumbsucker","state":"Vermont","website":"http://www.magichat.net/"},{"abv":12.013922628808979,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Malty and slightly sweet, balanced by earthy notes from the hops. The gentle rain and fertile soil of Ireland helped inspire this style of ale, known for being remarkably balanced. Pale and Caramel malts give the beer its rich, deep red color and distinctive caramel flavor. The sweetness of the malt is pleasantly balanced by a pronounced hop bitterness and an earthy note from the East Kent Goldings hops. Samuel Adams® Irish Red finishes smooth and leaves you wanting to take another sip.","ibu":47,"name":"Samuel Adams Irish Red","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":14.619173626848218,"address":"622 Main Street","category":"British Ale","city":"Lafayette","coordinates":[40.4194,-86.89],"country":"United States","ibu":30,"name":"Bill Old Ale","state":"Indiana"},{"abv":4.4000000954,"address":"Wellgarth","city":"Ripon","country":"United Kingdom","ibu":114,"name":"Ale","state":"North Yorkshire"},{"abv":8.591296305428749,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":5,"name":"White Weasel Beer","state":"Wisconsin"},{"abv":7.5,"address":"351 Allen Street","category":"North American Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"This smooth, creamy stout and a crackling fireplace are the perfect answer to a wintery evening in Wisconsin. The rich coffee flavor compliments the \"warm, fuzzy feeling\" you get from the abundant alcohol. Enjoy in moderation.","ibu":16,"name":"Satin Solstice Imperial Stout","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":2.380593910333564,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":68,"name":"Wild Turkey Bourbon Stout","state":"Colorado"},{"abv":9.982418720467255,"address":"3312 Plaza Drive","category":"North American Ale","city":"New Albany","coordinates":[38.3281,-85.8171],"country":"United States","ibu":79,"name":"Solidarity","state":"Indiana","website":"http://www.newalbanian.com"},{"abv":5.4000000954,"address":"1213 Veshecco Drive","category":"German Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie Brewing Co. Heritage Alt Beer - a classic, old style dark German ale possessing a subtle hint of roasted and chocolate malt flavor, with a smooth balanced finish. Erie Brewing first brewed this annually for the Erie German Heritage Festival. Erie Brewing’s Heritage Alt Beer popularity lead this beer from a commemorative beer for the festival to a complete packaged seasonal release for all to enjoy, whether you are of German Heritage or not. Prost!","ibu":94,"name":"Heritage Alt Beer","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":8.1999998093,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Explore the extremes of hops, and experience all of their bitterness, flavor and aroma with this Double I.P.A. An extreme, super-assertive and satisfying amount of American hop character is balanced with a toasty, caramelized, intense malt presence.","ibu":94,"name":"Mean Manalishi Double I.P.A.","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Red Chair IPA is named after the oldest operating lift at Mt. Bachelor, a classic old school double that locals flock to on fresh powder mornings. This beer has been wildly popular with our pub regulars, who always seem to know when we have hit on something special. \n\n\nThis IPA is a bright copper beauty with a solid head and perfect lacing that typifies Deschutes ales. It has a plush body with satiny caramel flavors derived from seven varieties of malt. Despite all of this, Red Chair is still a hop forward ale, but not in the way many have gotten used to. You will find no cloying, mouth puckering bitterness here. In its place a straight up succulent citrus punch to the nose.","ibu":102,"name":"Red Chair IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.1999998093,"address":"445 St.Paul Street","category":"Other Style","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"So did you ever ask yourself...what exactly is there to be festive about during the holidays? Your brother in-law snoring on the air mattress? (Boy, let’s hope that’s snoring.) The variety of toys with realistic sound effects? Fruit cake?\n\n\nDundee Festive Ale may be one of the few exceptions. One sip of the carefully matched seasonal spices and you realize that the holidays are worth paying...waiting for.\n\n\nOh, there may be one other thing to be festive about. There’s a 13 to 1 chance against your brother in-law’s plane leaving on time. But at least there’s a chance.\n\n\nFestively hearty and full bodied with a mild nutmeg, allspice, cinnamon, and orange peel spice character and subtle crystal malt flavor.","ibu":5,"name":"Dundee Festive Ale","state":"New York"},{"abv":7.619864429675866,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":62,"name":"Jupiter - Belgian-style \\\"Champagne\\\" Trippel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Oosik Amber Ale is a true German-style altbier, brewed with pale, Munich and crystal malts. Deep amber with copper highlights, Oosik sports a toasted and caramel malt profile, balanced by traditional noble hops. A special yeast strain ferments this ale at cooler lager temperatures, giving it a smooth malt character and a clean finish. \n\n\nWant to hang—so to speak—for a while? Oosik Amber Ale gives you hang time. Great flavor, big mouthfeel, satisfying finish…all in a session-worthy beer. Compare it to other ambers—Oosik rules. Look for our 20-inch Oosik tap in better beer bars throughout AK. \n\n\nYou can't just have a little Oosik. \n\n\nBUY the Oosik \"Love is Hard\" tee - men's and women's styles available.\n\n\nAvailability:\n\nAK - draft (year-round)","ibu":12,"name":"Oosik Amber Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":9.8999996185,"address":"1280 North McDowell Boulevard","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":107,"name":"Brown Shugga","state":"California","website":"http://www.lagunitas.com/"},{"abv":5.4000000954,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A strong but smooth medium-bodied copper ale with a furity nose, big dry hop flavor, and assertive hop bite that rest upon a subtle but supportive background of complex malt flavors.","ibu":38,"name":"Orlio Seasonal India Pale Ale","state":"Vermont","website":"http://www.orlio.net/"},{"abv":5.8000001907000005,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":23,"name":"Boont Amber Ale","state":"California","website":"http://avbc.com/"},{"abv":5.1999998093,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A golden pale having a slightly malty body balanced by an assertive American hop flavor. This pale ale displays a delicate hop nose due to the process of dry hopping. A crisp and refreshing beer perfect for any occasion.\n\n\nIBU: 24\n\nAlcohol content: 5.2% by volume\n\nHops: Chinook and Cascade\n\n\nCalories per 12 oz. 170.1\n\nCarbs per 12 oz. 15.65","ibu":29,"name":"St.Terese's Pale Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":9.792214255993787,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":63,"name":"Dos Equis Special Lager","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":6.0999999046,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"Available in 12 oz. cans and kegs. An American-style India Pale Ale brewed with plenty of body and an assertive hop profile.","ibu":1,"name":"Caldera IPA","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5,"address":"Darmstädter Landstrasse 185","category":"German Ale","city":"Frankfurt/Main","country":"Germany","description":"classic Hefeweizen, cloud because it is traditionally unfiltered, was tested and rated by the German consumer magazin \"Ökotest\" as \"very good\" for pureness and residues of pesticides and so on","ibu":35,"name":"Schöfferhofer Hefeweizen Hell","state":"Hessen","website":"http://www.schoefferhofer.de/"},{"abv":9.6000003815,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nThis year marks the 25th release of Bigfoot®. Our award-winning barleywine boasts a dense, fruity bouquet, an intense flavor palate and a deep reddish-brown color. Its big maltiness is superbly balanced by a wonderfully bittersweet hoppiness.","ibu":66,"name":"Bigfoot","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.5,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Imperial Stouts are by far the \"GRAND - DADDY\" of all stouts. For those who demand flavor, this is the perfect libation.","ibu":62,"name":"Siberian Night Imperial Stout","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":6,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our award-winning Flagship ale is now in bottles!! This is an ale made in the tradition of the great strong ales of Scotland. Amber colored, malty sweet with underlying note of smokiness. \n\n\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)","ibu":83,"name":"Kilt Lifter Scottish-Style Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"IPA stands for India Pale Ale and ours is an American version of the classic style. IPA's namesake lies in its colonial roots. British soldiers on their way to India drank a lot of beer, but found it would go stale on the long voyages. Meanwhile, brewers knew that by adding more hops the beer would stay fresh. Voila! A new style was born and it is one we are proud to brew. Southern Tier IPA is triple-hopped on its journey to your glass for a fully aromatic experience.","ibu":99,"name":"Southern Tier IPA","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8.018441601013683,"address":"18 East 21st Street","category":"Belgian and French Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":99,"name":"Summer Gueuze","state":"Nebraska"},{"abv":10.222068834547409,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":13,"name":"Red Cedar Red","state":"Wisconsin"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":29,"name":"Horny Devil","state":"California","website":"http://alesmith.com/"},{"abv":14.084034251113613,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":13,"name":"Billings IPA","state":"Montana"},{"abv":4.5,"address":"161 River Avenue","category":"British Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":5,"name":"Oatmeal Stout","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":9.727567083602288,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":45,"name":"Big Horn Buttface Amber","state":"Wyoming"},{"abv":4.9000000954,"address":"Herrenhuser Strae 83-99","city":"Hannover","coordinates":[52.3935,9.6814],"country":"Germany","ibu":18,"name":"Premium Pilsener","state":"Niedersachsen"},{"abv":5.423305567796282,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":26,"name":"Old 3rd Street XXX Belgian Strong Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":11.890282210334377,"address":"1257, Kounsosu","category":"German Ale","city":"Ibaraki","country":"Japan","ibu":40,"name":"Hitachino Nest Beer","state":"Kanto"},{"abv":7.063058201676257,"category":"Irish Ale","city":"Salt Lake City","coordinates":[40.638,-111.69],"country":"United States","ibu":104,"name":"Porter","state":"Utah"},{"abv":11.12088926917293,"address":"305 South Market Street","category":"German Lager","city":"Springfield","coordinates":[37.2079,-93.2955],"country":"United States","ibu":96,"name":"Mueller Doppelbock","state":"Missouri"},{"abv":13.29370613819211,"address":"120 SW Eighth Street","category":"North American Lager","city":"Krebs","coordinates":[34.9251,-95.7253],"country":"United States","ibu":7,"name":"Choc American Lager","state":"Oklahoma"},{"abv":3.386554347534003,"address":"Dudley DY3 1JE","city":"Dudley","coordinates":[52.5435,-2.1156],"country":"United Kingdom","ibu":81,"name":"Dark Ruby Ale","state":"West Midlands"},{"abv":4.778837020034453,"address":"40 Bennett Street","category":"Irish Ale","city":"Carleton Place","coordinates":[45.1279,-76.13],"country":"Canada","ibu":25,"name":"Black Irish Plain Porter","state":"Ontario"},{"abv":0.16970244165353532,"address":"Konradigasse 2","category":"North American Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":19,"name":"Kupfer","state":"Baden-Wrttemberg"},{"abv":4.9000000954,"address":"Lautenberg 1","category":"North American Lager","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":30,"name":"Rotgold-Pils","state":"Baden-Wrttemberg"},{"abv":8,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This noble delicious beer with a high fermentation has a ruby purple colour with a full malty and fruity taste (8% alcohol content). \n\n\nThis beer has a beautiful round froth due to the second fermentation with a taste that creates a perfect balance between sweet and sour.","ibu":11,"name":"Prior 8","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":12.876893598015425,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":9,"name":"Bourbon Imperial Stout","state":"Nebraska"},{"abv":4.3000001907,"address":"West Hewish","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":95,"name":"Pitchfork Rebellious Bitter","state":"Somerset"},{"abv":8.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","description":"Dark-ruby, almost black-colored and streaked with fine top-fermenting yeast, this beer has a compact and persistent head. This is a very intense wheat doppelbock with a complex spicy chocolate-like arome with a hint of banana and raisins. On the palate, you experience a soft touch and on the tongue it is very rich and complex, though fresh with a hint of caramel. It finishes in a rich soft and lightly bitter impression.","ibu":59,"name":"Aventinus Weizenstarkbier / Doppel Weizen Bock","website":"http://www.schneider-weisse.de"},{"abv":5.4000000954,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":21,"name":"Avalanche Amber","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.1999998093,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Ever tried a Skinny Dip? You wouldn't be alone. Featured by both Men's Journal and the Today Show as a favorite summer brew, this full-bodied, highly drinkable beer makes a splash every summer in our Seasonal line-up. Cascade hops frolic with a hint of lime leaf, giving the beer complexity that's surprisingly refreshing.","ibu":19,"name":"Skinny Dip","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":7.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Squeeze those hops for all they’re worth and prepare to pucker up: Nugget Nectar Ale, will take hopheads to nirvana with a heady collection of Nugget, Warrior and Tomahawk hops. Starting with the same base ingredients of our flagship HopBack Amber Ale, Nugget Nectar intensifies the malt and hop flavors to create an explosive hop experience.","ibu":14,"name":"Nugget Nectar","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":12.065646800796072,"city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":7,"name":"Paradise Pale Lager","state":"Hawaii"},{"abv":7.8000001907000005,"address":"6300 Folsom Boulevard","category":"Other Style","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Our Holiday Ale is a “special” version of our flagship product - Hoppy Faceâ„¢ Amber Ale; only bigger for you to enjoy during this holiday season!!! Characterized by its distinctive hop aroma and rich, ruby color, Hoppy Claus redefines the way you think about a holiday ale. Hoppy Claus uses only the finest two row malted barley, hops grown in the great Pacific Northwest, and some secret spices that we would love to tell you about; but are unable to do so. This combination results in a clean, crisp, and refreshingly unique hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity.","ibu":65,"name":"Hoppy Claus Holiday Ale","state":"California","website":"http://www.hoppy.com"},{"abv":13.143595964412278,"address":"Brandschenkestrasse 150","category":"German Lager","city":"Zrich","coordinates":[47.3642,8.5245],"country":"Switzerland","ibu":48,"name":"Hexen Bräu"},{"abv":2.7322819811967216,"address":"200 Village Green","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":13,"name":"Eighty Shilling Ale","state":"Illinois"},{"abv":9.637922000488395,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":19,"name":"Summer Alt","state":"Iowa"},{"abv":10.152174060536955,"address":"Brusselse Steenweg 282","city":"Melle","country":"Belgium","ibu":24,"name":"Duinen Tripel","state":"Oost-Vlaanderen"},{"abv":4.6999998093,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":107,"name":"London Pride","state":"London","website":"http://www.fullers.co.uk/"},{"abv":12.296256749068673,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":12,"name":"Coffee Stout","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.9000000954,"category":"Belgian and French Ale","city":"Morrisville","coordinates":[44.5617,-72.5984],"country":"United States","ibu":29,"name":"Brueghel Blonde","state":"Vermont"},{"abv":4.1500000954,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"IC Light is an original, not a watered down copy, and brewed to be light from start to finish.","ibu":106,"name":"IC Light","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":4.5,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A rich, deep golden-colored lager fest bier that is exceptionally smooth and mellow. Uses two-row malted barley and a combination of roasted malts. Highly rated by the National Tasting Institute.","ibu":82,"name":"Penn Oktoberfest","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.9000000954,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Killian's Irish Red is a traditional lager with an authentic Irish heritage, based on the Killian family's recipe created for the Killian's brewery in Enniscorthy, Ireland in 1864. Coors acquired the rights to brew and market the product in America and Killian's was introduced to the U.S. in 1981.\n\n\nKillian's Irish Red derives its distinctive red-amber color and taste from a special caramel malt that has been roasted at a high temperature longer and more slowly than most malts. There are no coloring agents or artificial additives used in brewing Killian's. The brew is known for its rich amber color and thick, creamy head.","ibu":51,"name":"Killian's Irish Red","state":"Colorado","website":"http://www.coors.com"},{"abv":5,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors beer, first introduced by Adolph Coors in April, 1874, is brewed in the Rockies for a uniquely crisp, clean and drinkable \"Mile High Taste.","ibu":50,"name":"Coors Original","state":"Colorado","website":"http://www.coors.com"},{"abv":3.229613743956601,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":83,"name":"Buffalo Ale","state":"Texas"},{"abv":4.690362072078342,"address":"26 Old Cross","category":"Irish Ale","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":113,"name":"Special Reserve Anniversary Porter","state":"Hertfordshire"},{"abv":11.356189981427319,"address":"1000 Great Highway","category":"North American Lager","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":20,"name":"Endless Summer Cream Ale","state":"California"},{"abv":1.8744147539636768,"address":"Westgate Street","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":50,"name":"Abbot Ale","state":"Suffolk"},{"abv":10.82234010523161,"address":"2001 Second Street","category":"German Ale","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":108,"name":"Hefe Weizen","state":"California"},{"abv":8.21830389099862,"address":"P.O. Box 1154","category":"North American Ale","city":"Glen Alpine","country":"United States","description":"This golden straw colored IPA is made with 5 varieties of malts and 6 massive hop additions. It is outstanding in flavor and aromatics.","ibu":68,"name":"Firewater Indian Pale Ale","state":"NC","website":"http://www.catawbavalleybrewingcompany.com/"},{"abv":3.5729264805931638,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Brewed with organic roasted barley and chocolate malts for a rich, dark and robust flavor with an infusion of organic vanilla beans and coffee from the Dominican Republic farm community Alta Gracia.","ibu":119,"name":"Alta Gracia Coffee Porter","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":0.12501890438765484,"address":"1301 Atlanta Avenue","category":"North American Ale","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","ibu":73,"name":"Orlando Blonde Ale","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":9,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":70,"name":"Double Dead Guy Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":38,"name":"Tilburg's Dutch Brown Ale","website":"http://www.latrappe.nl/"},{"abv":4.628156706285318,"address":"175 Bloor Street East","category":"Irish Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":97,"name":"Rickard's Red Ale","state":"Ontario"},{"abv":4.5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pour Hop Sun Summer Wheat Beer into a pint glass, give it a long whiff and you’ll realize that this isn’t your average wheatbeer. Filtered to a golden clarity and dry-hopped to perfection, Hop Sun is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of lemon and sweet malts waft to the fore as a touch of bitterness contributes to Hop Sun’s bright finish. Enjoy Hop Sun all summer long as a perfect balance to your outdoor recreation. Summer never tasted so good.","ibu":62,"name":"Hop Sun","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.8000001907000005,"address":"701 S. 50th Street","category":"German Lager","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"Bohemian Dock Street Pilsner is brewed in the style of the original Pilsner beers of Bohemia, in what is now the Czech Republic, in a tradition that dates to 1842. We use costly Bohemian Saaz hops and pale imported malts to produce its rich golden color, and soft malty flavor using traditional techniques of the old world. True Pilsners are the most difficult to brew as there are no dark malts or flavorings used to mask flaws. Pilsner is the best known style of beer in the world. A good pilsner balances hops and malts to a refreshing, clean tasting, every-mood kind of beer. The Bohemian can stand alone or join a party easily.","ibu":60,"name":"Bohemian Dock Street Pilsner","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":4.5,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":55,"name":"Pacífico Clara","website":"http://www.gmodelo.com.mx/"},{"abv":9,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"La Fin du Monde has a brilliant golden color with vigorously effervescent foam.\n\nIt is midly yeasty with a complex palate of malt, fruit and spice notes followed by a smooth, dry finish.","ibu":40,"name":"La Fin Du Monde","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Our flagship beer is made from mostly pale malt with some Munich and caramel malts. This gives it a slightly sweet flavor that is balanced by a melange of American hops. The result is a deep copper color and rich flavor.","ibu":98,"name":"Amber Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.464377013697565,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":35,"name":"Two Frog Dubbel","state":"Washington"},{"abv":9.768617973900032,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":18,"name":"Thornton Creel Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.9000000954,"address":"1221 East Pike Street","category":"British Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":74,"name":"The Wise ESB","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":57,"name":"Matilda","state":"Illinois"},{"abv":10.231142614279575,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Ornery Amber is brewed with a blend of the finest European hops and gently roasted malts.","ibu":53,"name":"Ornery Amber Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":98,"name":"Bigfoot 2005","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":58,"name":"Harvest Ale 2000","state":"Manchester"},{"abv":11.585608259173625,"address":"Dobroovsk 130","category":"German Lager","city":"Nchod","country":"Czech Republic","ibu":1,"name":"Primátor Double 24% / Primátor Double Bock Beer"},{"abv":8.498088954810822,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":71,"name":"Oatmeal Stout","state":"California"},{"abv":8,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A West Coast Double IPA\n\nSo mega-hopped it will take you to hop heaven. We’ve used hops in the boil, more hops in the giant hopback, and added to that, an incredible amount of dry-hopping for that cutting-edge “hop bite.” Once you’ve tasted this unique beer, all others pale in comparison. 1.072 OG Classified IBU 8%ABV","ibu":112,"name":"Pure Hoppiness","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5.5,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":61,"name":"Pale Ale","state":"Colorado"},{"abv":5.290051344228539,"address":"2565 North Highway 14","category":"North American Ale","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":117,"name":"Desert Pale Ale","state":"California"},{"abv":14.242525911355568,"address":"316 Main Street","category":"North American Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":45,"name":"Mild Brown","state":"Iowa"},{"abv":5.4000000954,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Pumpkin Ale is brewed with Pumpkin, Cinnamon, Allspice, Cloves, Ginger and Vanilla. Look for a full-body and amber color. We're sure you'll enjoy this special brew!","ibu":36,"name":"Saranac Pumpkin Ale","state":"New York","website":"http://www.saranac.com"},{"abv":6.8000001907000005,"address":"18452 NE Ribbon Ridge Road","city":"Newberg","coordinates":[45.3498,-123.073],"country":"United States","ibu":31,"name":"1997","state":"Oregon"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An American red ale brewed with Northern Brewer for the bittering and Liberty in the hopback. Very malty and crisp, this ale has all the fun without the AMD. ABV 5.0%","ibu":113,"name":"Red Mo Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7.5999999046,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"From the tradition started by the monks of St. Francis of Paula in 1634 comes this warming beer of rich heritage. A dark, rich lager of sublime complexity and character, St. Victorious is created from multiple German malts. Laborious decoction mashing yields the choicest elements of the malt. Long, cold aging mellows the strong temperament of this subtle beer. Celebrate the end of winter with a warming draft of St. Victorious Doppelbock!","ibu":114,"name":"St. Victorious","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.6999998093,"address":"310 Mill Creek Avenue","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Original Black & Tan is a pioneer brand that models a traditional English Half & Half. Introduced in 1986, Yuengling produced one of the first hand-crafted draft blends to lead this style of American brewing. Black & Tan combines our popular Dark Brewed Porter and Premium Beer to create a brew that is rich and dark in color, with a well balanced flavor that finishes smooth and satisfying. It has a faint sweetness with hints of caramel and coffee from the dark roasted malts. One sip and you'll appreciate how Yuengling raised the bar with our Original Black & Tan.","ibu":42,"name":"Yuengling Black and Tan","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":5.757796564801362,"category":"North American Ale","city":"Holland","coordinates":[42.7875,-86.1089],"country":"United States","ibu":1,"name":"Overcast Ale","state":"Michigan"},{"abv":12.05925920259913,"address":"50 East Washington Street","category":"North American Ale","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":16,"name":"Red Rooster","state":"California"},{"abv":9.476900524467235,"address":"8280-A Mira Mesa Boulevard","category":"North American Ale","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":65,"name":"Mesa Pale Ale","state":"California"},{"abv":0.08405373747642608,"address":"PO Box 316","category":"North American Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":105,"name":"Baritone Red","state":"California"},{"abv":2.9976170166089156,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":91,"name":"IPA","state":"California"},{"abv":5.1999998093,"address":"Kuli vart 7","category":"German Ale","city":"Klaipda","country":"Lithuania","ibu":56,"name":"Baltas Alus"},{"abv":7.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":45,"name":"Blonde","state":"Hainaut"},{"abv":5.678570333804118,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":84,"name":"Imperial Pale","state":"Washington"},{"abv":11.761506192524248,"address":"871 Beatty Street","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":40,"name":"Red Truck Lager","state":"British Columbia"},{"abv":8.5,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Our Trippel Belgian Style Ale (pronounced triple) opens with a bold blast of hops that slowly gives way to the fruity esters implied by our Belgian yeast strain. The Three Graces hand-painted on the label are Zeus’s daughters Aglaia (splendor), Euphrosyne (mirth) and Thalia (good cheer). In the Belgian tradition of brewing singles, doubles and triples, Trippel is the strongest with the longest fermentation. Remarkably smooth and complex, our bottle-conditioned Trippel is spiced with a trace of coriander.","ibu":82,"name":"New Belgium Trippel Belgian Style Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.4000000954,"address":"2501 Southwest Boulevard","category":"Irish Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"The intense flavors of dark-roasted malt in Boulevard’s rendition of the classic English porter are perfectly balanced by a generous and complex hop character. Bully! Porter’s robust nature makes it the ideal companion to a variety of foods, from seafood to chocolate.","ibu":0,"name":"Bully! Porter","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":9,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":64,"name":"Seriously Bad Elf","state":"Oxford"},{"abv":12.307891058821252,"address":"237 Joseph Campau Street","category":"German Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":99,"name":"Wheat","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":13.811818496774276,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":63,"name":"Pale Ale","state":"Wisconsin"},{"abv":7.9095614201975595,"category":"North American Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":25,"name":"Shakedown Nut Brown","state":"Wisconsin"},{"abv":13.43536781631422,"address":"3191 Golf Road","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":15,"name":"Pils","state":"Wisconsin"},{"abv":5.0227184799952855,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":53,"name":"Angel Amber","state":"Colorado"},{"abv":1.6429674779767445,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":35,"name":"La Quintine Ambrée / Amber","state":"Hainaut"},{"abv":8.388733697772903,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":57,"name":"Pêche / Pecheresse","state":"Vlaams Brabant"},{"abv":1.5720686435697884,"city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":9,"name":"Verich Gold","state":"Ohio"},{"abv":8.612297722906742,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":52,"name":"Third Stone Brown","state":"Nebraska"},{"abv":5,"address":"Innerleithen EH44 6PW","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":107,"name":"Bear Ale","state":"Scotland"},{"abv":8.5395792140397,"address":"Vervierfontaine 100","city":"Jalhay-Vervifontaine","country":"Belgium","ibu":75,"name":"Bière du Lion","state":"Lige"},{"abv":12.554657889359554,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":99,"name":"Maibock","state":"Thüringen"},{"abv":2.8303582803829497,"address":"1401 Saint Andrew Street","city":"La Crosse","coordinates":[43.8344,-91.2362],"country":"United States","ibu":114,"name":"Old Skeezer Barley Wine","state":"Wisconsin"},{"abv":4,"address":"Quoyloo","category":"North American Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Dragonhead is a legendary stout: dark, intense and fully-flavoured, it is our tribute to the Vikings and their cultural legacy in Orkney.\n\n\nOn the nose, this black stout has a smooth roasted malt aroma giving bitter chocolate, dark roasted coffee and Smokey notes balanced by hints of spicy Goldings hop.\n\n\nOn the palate, the dark roasted malts combine to give a rich, rounded palate with chocolate, toast and nut flavours, with a satisfying spicy hop finish.","ibu":51,"name":"Dragonhead Stout","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":12.692030076672303,"address":"781 Old Highway 8 SW","category":"North American Ale","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":14,"name":"Old Eight Porter","state":"Minnesota"},{"abv":3.7999999523,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast.","ibu":35,"name":"Onward Stout","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.6999998093,"address":"600 Brea Mall","category":"Belgian and French Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":41,"name":"Nit Wit","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5,"address":"98 Horseneck Rd","category":"North American Lager","city":"Westport","coordinates":[41.5713,-71.0571],"country":"United States","description":"Our Lager (Dortmund-style) is brewed with pale, Munich and Vienna malts and is moderately hopped with Hallertauer hops. Dortmund is an industrial, steel-making town and its lagers are hearty, easy drinking brewskies. The hops balance the malt but not overtly so. A great brew for the end of a hard day at work. Winner of the Gold Medal for Best European Style Pilsner at the 2000 Great American Beer Festival , Gold Medal at the 5th and 6th Great International Beer Festival, Silver Medals at the 7th Great International Beer Festival and 9th Great International Beer Festival, and Bronze Medal at the 8th Great International Beer Festival and 11th Great International Beer Festival!","ibu":119,"name":"Olde Buzzard Lager","state":"Massachusetts","website":"http://www.buzzardsbrew.com/"},{"abv":11.435645716680131,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":75,"name":"Timmermans Pêche","website":"http://www.anthonymartin.be/"},{"abv":10.5,"address":"215 1/5 Arch St.","category":"Belgian and French Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is our Gran Met Ale aged on intimate Passion Fruit, Raspberry and Michigan Tart Cherry. Lightly spiced with passion. Light Reddish hue and with a alcohol strength of 10% and nicely carbonated in the bottle. \n\n\nAgain Bottle Conditioned and Fermented. \n\n\nEnjoy a couple and have your own Voodoo Love Child later!!!","ibu":66,"name":"Voodoo Love Child","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":5.4000000954,"address":"225 Heritage Ave","category":"Irish Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"This hearty, mahogany colored ale is brewed to evoke the dark, full-bodied ales that were a favorite of dockworkers and warehousemen (hence the name “Porter”) in 19th century London. It is a good bet that when Dickens’ Mr. Pickwick sat down for a pint, we would have been drinking an ale much like our Robust Porter.This is a smooth and very drinkable beer, characterized by its well-balanced malt and hops, plus subtle notes of coffee and chocolate.","ibu":6,"name":"Robust Porter","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Ugly Pug is a schwarzbier, or black lager. But the real story is its name. Fritz saw his mother-in-law’s pug, Oscar, lounging in a chair and he (Fritz) shouted, “What an ugly pug!” Everyone laughed. Your’re right – they were drinking a test batch that night.","ibu":76,"name":"Ugly Pug","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":10.5,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":117,"name":"Sierra Nevada Imperial Stout","state":"California","website":"http://www.sierranevada.com/"},{"abv":4.265981458828342,"address":"471 Kalamath Street","category":"Irish Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","description":"Awesome Porter! Smooth, the vanilla makes this beer very drinkable. Enjoy!!","ibu":5,"name":"Remarkable Vanilla Porter","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":6.5999999046,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Generous portions of roasted barley, black and chocolate malts which leave \"coffee\" overtones lingering on the palate.","ibu":63,"name":"Black Heart Stout","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6.152075712554398,"address":"206 W. Pratt St.","category":"British Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":117,"name":"Oliver ESB","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":7,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"Hop Ottin' IPA is as hoppy as they come. The name means \"hard working hops,\" in Boontling, and that tells it all. Generous additions of high-alpha Pacific Northwest hops added during a vigorous boil, plus traditional dry hopping, with whole hop cones, give this ale a delicious citrus aroma, and an intense hoppy bite. This IPA is a hop lover's dream.","ibu":88,"name":"Hop Ottin IPA","state":"California","website":"http://avbc.com/"},{"abv":4.3000001907,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob Light is a full-flavored and rich-tasting light lager offering a malty sweetness and aromatic hop profile\";\"0","ibu":10,"name":"Michelob Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":2.54783587679826,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Oregon Golden Ale is the original Rogue brew dating back to 1988 and the days of the old Ashland brewpub location (which was destroyed by a flood several years ago). Deep golden in color with a rich malty aroma. Delicately smooth and crisp flavor and an herbal finish. Oregon Golden Ale is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops. Oregon Golden Ale is available in a 22-ounce bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft.","ibu":46,"name":"Oregon Golden Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our English-style pale ale is a medium-bodied \n\namber beer. Light, malty flavors combine with aromatic \n\nhops for a beer that is thirst quenching and easy \n\nto drink. One of our most popular beers.","ibu":13,"name":"Capitol Premium Pale Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.5,"address":"563 Second Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep toffee color with rich roasty and subtle hop aroma. Chocolate flavors dominate the palate and interact with back-end sweetness.","ibu":19,"name":"General Pippo's Porter","state":"California","website":"http://www.21st-amendment.com/"},{"abv":14.329800108846538,"category":"Irish Ale","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":98,"name":"Piedmont Porter","state":"Minnesota"},{"abv":4.9000000954,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":75,"name":"Gold Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":8.1272559288636,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":102,"name":"Cinco de Mayo Cerveza Jalapeño","state":"Wisconsin"},{"abv":10.151512107313149,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":20,"name":"Old 420 Wheat Wine","state":"Illinois"},{"abv":11.451019796837507,"address":"2201 South Fort Apache Road","category":"North American Ale","city":"Las Vegas","coordinates":[36.1476,-115.298],"country":"United States","ibu":2,"name":"Stout","state":"Nevada"},{"abv":1.2375015515438736,"address":"223 Reindollar Avenue","city":"Marina","coordinates":[36.6802,-121.804],"country":"United States","ibu":98,"name":"Ironside Best","state":"California"},{"abv":5.852085962134225,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":102,"name":"India Pale Ale","state":"Michigan"},{"abv":12.410297741702918,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":25,"name":"old gak strong ale","state":"Wisconsin"},{"abv":5.4000000954,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"Available in 12 oz. cans and kegs. A West-Coast-style pale ale balancing plenty of hops with a malty backbone.","ibu":7,"name":"Pale Ale","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":7,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"India Pale Ale style well suited for Hemingway-esque trips to the Upper Peninsula. American malts and enormous hop additions give this beer a crisp finish and incredible floral hop aroma.","ibu":83,"name":"Two Hearted Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.8000001907000005,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Bold and rich, with a touch of holiday spice\n\nThe first thing one notices in a Samuel Adams® Winter Lager is its color: the deep brown of winter. Then comes the magical aroma which promises something special on the tongue. The warm aroma of cinnamon and ginger which blends with the roasty sweetness of the malted barley and hint of citrus from the orange peel. And after that first sip the promise is fulfilled. On the palate Samuel Adams® Winter Lager is rich and full bodied, robust and warming, a wonderful way to enjoy the cold evenings that come with this season.","ibu":103,"name":"Samuel Adams Winter Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":8.848765211528004,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":48,"name":"Avalanche Amber","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":5.3000001907,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Standing alone, distant from the Three Sisters mountains nestled to the north, Bachelor Butte was originally called \"Brother Jonathan\" and then simply \"The Bachelor\" before becoming widely known today as Mt. Bachelor.","ibu":110,"name":"Bachelor ESB","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":14.880669831122468,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":80,"name":"Best Bitter","state":"California"},{"abv":12.859722420360779,"address":"4301 Leary Way NW","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":15,"name":"Drawbridge Blonde","state":"Washington"},{"abv":5.1999998093,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Discover Deschutes Brewery’s intriguing amber ale, our Ode to Mother Earth. Experience its mellow malt profile intertwined with subtly surprising hop flavors. Green Lakes Organic Ale is brewed with five types of 100% organic malted barley and balanced with Liberty and Salmon-Safe Sterling hops. Easy to drink. Easy on the Environment. Downright Delicious. Who knew celebrating Mother Earth could taste so good.\n\n\nAfter working with Oregon Tilth for nearly six months, Deschutes Brewery received organic certification for its 50 barrel brew house and can now brew tasty organic ales for year-round enjoyment.\n\n\nFish need cool clean water. So do you. That’s why we sourced Salmon-Safe certified Sterling hops for our first organic beer. The way these flavorful, rich hops are grown makes sure that streams are shaded and there is not runoff to nearby waterways. That way the rivers stay cool and clean for migrating salmon. Not only is our Green Lakes beer organic, it helps protect our rivers as well.","ibu":91,"name":"Green Lakes Organic Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A beer that would make the English jealous! This true English Pale Ale is rich and fruity, yet finishes crisp. You'll love the copper amber color and medium body.","ibu":43,"name":"Saranac Pale Ale","state":"New York","website":"http://www.saranac.com"},{"abv":3.2200000286,"address":"RR 1 Box 185","category":"North American Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Our lightest brew, this ale has a lower alcohol content than other Barley Creek brews. The Munich malt and Saaz and Hallertau hops give it a distinct German profile. Refreshing with a clean, dry finish.","ibu":72,"name":"Cliffhanger Light Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":9,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A Russian Imperial Stout with a hearty malt body and bold hop flavor.","ibu":91,"name":"Blackout Stout","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.8000001907000005,"address":"9750 Indiana Parkway","category":"German Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":32,"name":"Drunk Monk Hefeweizen","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":1.2575622141623966,"address":"117 South First Street","category":"German Lager","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":68,"name":"LaConner Pilsener","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"If you are looking for a straight shooting quaffable beer with plenty of hops, this is it. Straw colored from plump North American 2-row malted barley and deliciously hopped with Cascades from the USA, any patriot can enjoy this beer. Cascade hops have a pleasant taste and fresh smell best described as florally or mildly citrusy. A nice balance is struck between the malt and hops. So how about it Yank? Put that capitalism to work and buy some today!","ibu":46,"name":"Back Road American Pale Ale","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":4,"address":"16 Church Street PO Box 684","category":"Other Style","city":"Queenstown","coordinates":[-45.0331,168.661],"country":"New Zealand","description":"An old fashioned style ginger beer brewed naturally with honey, malt, lemon and fresh root ginger, leaving you with a refreshing crisp zesty flavour.","ibu":73,"name":"Ginger Tom","website":"http://www.thedux.co.nz/"},{"abv":12.300000191,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Malty, rich, complex with a notable hops balance. Aged for 90 days. For optimal taste allow the beer to warm on your table or from the heat of your hand around the glass. ½ pints only. 12.3 abv! Offered downstairs at the Taphouse or Pub Bar/ Dining Room only.","ibu":32,"name":"Richbrau Barleywine","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.1999998093,"category":"Other Style","country":"United Kingdom","description":"The definitive winter beer and a longtime favourite, Winter Warmer has been making annual appearances on the bar every winter since the 1950s. A rich, ruby-coloured beer, luscious and fullbodied, with a splendid nutty flavour.","ibu":84,"name":"Young's Winter Warmer","website":"http://www.bombardier.co.uk/bombardier"},{"abv":10,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"Our 100th batch, brewed for the enjoyment of the brewers, but popular demand forced us to release it commercially. This malty, yet light bodied ale has a massive hop bitterness. Most enjoyable in a comfortable chair in front of a roaring fire.","ibu":38,"name":"Nøgne Ø #100","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5.0999999046,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":113,"name":"Tacoma Brew","state":"Washington"},{"abv":5.9000000954,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":44,"name":"Castelain St.Amand French Country Ale"},{"abv":12.565650104305304,"address":"Tbinger Strae 46","city":"Stuttgart","country":"Germany","ibu":39,"name":"Sanwald Dunkelweizen","state":"Baden-Wrttemberg"},{"abv":5.1999998093,"address":"Marktplatz 1","city":"Alpirsbach","coordinates":[48.3457,8.4031],"country":"Germany","ibu":59,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"Munketoft 12","city":"Flensburg","coordinates":[54.779,9.4355],"country":"Germany","ibu":3,"name":"Pilsener","state":"Schleswig-Holstein","website":"http://www.flens.co.uk/"},{"abv":9,"address":"455 North Main Street","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":100,"name":"Brother Thelonious","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":8,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Brewed in the Franco-Belgian tradition of strong golden ales. Spicy and peppery with a gentle hop bouquet and the beguiling influence of wild yeast.","ibu":38,"name":"Oro de Calabaza","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":9,"address":"St Lievensplein 16","city":"Sint-Lievens-Esse","coordinates":[50.8564,3.8845],"country":"Belgium","ibu":113,"name":"Buffalo Belgian Stout","state":"Oost-Vlaanderen"},{"abv":4.8000001907000005,"address":"1777 Alamar Way","category":"North American Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","description":"Eel River Brewing Company, brewers of California's first Certified Organic Ale, proudly brings you our Organic Amber Ale. Unique in flavor and purity, this medium bodied beer has a hoppy bouquet and a distinctive rich taste with a caramel-like sweetness that is balanced with a liberal dose of certified organic Pacific Gems and Hallertau hops, imported from New Zealand. Pure taste, pure ingredients, pure good.","ibu":101,"name":"Certified Organic Amber Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":8.6000003815,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":101,"name":"Double India Pale Ale","state":"California"},{"abv":5.8113394580609,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":19,"name":"India Pale Ale","state":"Nebraska"},{"abv":7.330167868185308,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":106,"name":"White","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.875460372923675,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":15,"name":"Abbey Brown Ale / Pater","state":"Antwerpen"},{"abv":8.538270104143427,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":56,"name":"Pils","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":11.66011598305938,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":20,"name":"Dry Stout","state":"Nebraska"},{"abv":3.599059355877726,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":16,"name":"Black Sheep Espresso Stout","state":"Nebraska"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An American pale ale brewed with Centennial hops and hopbacked with Cascade, it's a real refresher that has a spicy, citrus aroma and a slightly nutty malt flavor. ABV 5.0%","ibu":43,"name":"Mt. Nittany Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7.317696482134236,"category":"German Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":42,"name":"Oktoberfest Ale","state":"Nebraska"},{"abv":0.7334633903439991,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":2,"name":"Boston Red","state":"Massachusetts"},{"abv":13.94593346519931,"address":"580 North Nimitz Highway","category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":77,"name":"Ehu Ale","state":"Hawaii"},{"abv":8.520901662928178,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":108,"name":"Amber Lager","state":"California"},{"abv":4.735106906147932,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":56,"name":"Kilgubbin Irish Ale","state":"Illinois"},{"abv":3.5745779706795853,"address":"650 Fifth Street #403","category":"North American Lager","city":"San Francisco","coordinates":[37.7756,-122.398],"country":"United States","ibu":64,"name":"Space-Aged Lager","state":"California"},{"abv":5.1999998093,"category":"British Ale","city":"Abingdon","coordinates":[51.6701,-1.2850000000000001],"country":"United Kingdom","ibu":68,"name":"Old Speckled Hen","state":"Oxford"},{"abv":6,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":46,"name":"Golden Rose","state":"Oregon"},{"abv":5.1999998093,"address":"40 Van Dyke St","category":"Other Style","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Our most basic interpretation of what makes beer great -- sweetness from the barley malt and active spice from the hops. It is hazy golden in color, with a sweet honey aroma, and a dry, crisp flavor","ibu":43,"name":"Sweet Action","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.9899997711,"address":"323-C Cross Street","category":"Irish Ale","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","description":"This medium bodied porter has notes of roasted and chocolate malts, making it a perfect balance of sweet and bitter. Generous hops give this brew a dry finish.","ibu":27,"name":"Paradise Porter","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Chaotic yet hypnotic, Mayhem is a deliberate Double IPA, brewed and conditioned with a special Belgian yeast that contributes complexity and spice. Abundant American hops offer grapefruit, pine, must and mint, which play off the fullness and sweetness of pale malts then provide a biting yet enticing finish.\n\n\nMayhem Double IPA accents the complex spice combinations found in Thai, Indian, Cajun, Morrocan, Mexican and Southwest American cuisines as well as BBQ marinades, dry rubs and sauces.\n\n\nMayhem creates MAYHEM.","ibu":59,"name":"Mayhem Belgian-style Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.4000000954,"address":"2201 Arapahoe Street","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Think of it as a hefeweizen’s older brother. A hearty mix of wheat and dark German barley malts gives it a medium body and muddy brown hue, while our proprietary yeast strain provides the signature notes of banana and clove. If you like wheat beers, come to the Dunkel side. You won’t be disappointed. Just don’t put any lemon in it.","ibu":74,"name":"Great Divide Dunkel Weiss","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"British Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"From Arizona’s high country comes Apache Trout Stout, a robust, full bodied, top fermented ale. Our brewers use mountain pure water, select roasted barley, hops and yeast to create this traditional style. Savor the balanced, roasted malt flavor and the lingering sweetness that makes this dry stout a cool weather treat.","ibu":10,"name":"Apache Trout Stout","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":8.1000003815,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":116,"name":"Pozharnik","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5999999046,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Wouldn't it suck to have a job where nobody likes you? And, regardless of your name, people always call you Rita, as in \"Lovely Rita?\" Sometimes people just shorten it to the simpler \"meter maid.\" The funny thing about that is the Webster dictionary defines a \"meter maid\" as \"a female member of a police department who is assigned to write tickets for parking violations.\" You have to wonder how the male \"meter maids\" feel about that! Parking Violation is an American style pale ale using lots of American hops, lots of quarters, and several trips back and forth to the parking lot. So, remember to drink responsibly and feed your meter.","ibu":115,"name":"Parking Violation","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":8.566016490733627,"address":"6 N. Reamstown Road","category":"North American Ale","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A translucent amber-red ale with a moderately high IBU of 36. Bittering hops include Kent Golding and Cascade. A generous amount of Kent Golding is used in the dry hopping to further enhance the aroma.","ibu":92,"name":"Union Barrel Works Pale Ale","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":4.5,"address":"1249-A Wicker Drive","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"Our Kölsch is a refreshingly pale German style Ale. It is cold fermented and cold conditioned to achieve a beautiful balance between biscuit malt flavors and floral hop notes. It is light bodied and finishes somewhat dry to enhance it's easy drinking nature.","ibu":79,"name":"Angry Angel","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":6.742397017607866,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"An intriguing fruit beer brewed with fresh sour cherries.\n\n\nOur Sour Cherry Ale is inspired by the centuries old Belgian tradition of brewing beer with cherries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Montmorency cherries from a local orchard in the Fraser Valley. The result is a most intriguing beer with an elegant cherry perfume, a tart, fruity flavour, and a subtle almondy finish.","ibu":52,"name":"Sour Cherry Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":6.5,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":4,"name":"La Trappe Dubbel","website":"http://www.latrappe.nl/"},{"abv":6.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","description":"No lightweight, Big Daddy I.P.A tips the scales with a huge hop flavor and a clean, dry finish that leaves the scene without a trace.","ibu":0,"name":"Big Daddy IPA","state":"California"},{"abv":9.5,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":24,"name":"Trappist Extra","state":"Limburg"},{"abv":2.9971085436333214,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":69,"name":"Driftwood Ale","state":"Washington"},{"abv":6.6500000954,"address":"404 South Third Street","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":4,"name":"Red Card Lager","state":"Washington"},{"abv":5,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":115,"name":"Islander Pale Ale","state":"Washington"},{"abv":9.057148469308508,"category":"German Lager","city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":107,"name":"Herbstbier"},{"abv":8,"address":"1800 West Fulton Street","category":"North American Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":11,"name":"Demolition","state":"Illinois"},{"abv":8,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":48,"name":"Amber","state":"Namur"},{"abv":9.1000003815,"address":"341 SW Second Street","city":"Corvallis","coordinates":[44.5613,-123.261],"country":"United States","ibu":82,"name":"Bourbon Barrel Porter","state":"Oregon"},{"abv":5,"address":"Woesten","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":6,"name":"Witte","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":5.5,"address":"Brewery Lane","category":"North American Ale","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":18,"name":"Twelve Days","state":"Oxford"},{"abv":8.204234709737861,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":28,"name":"Golden Rail","state":"Wisconsin"},{"abv":3.4160362662233847,"category":"British Ale","city":"Dublin","coordinates":[53.3441,-6.2675],"country":"Ireland","ibu":33,"name":"1798 Revolution"},{"abv":2.7155775837439036,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":12,"name":"Old Glory American Pale Ale","state":"Wisconsin"},{"abv":12.32863622153375,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":107,"name":"Czech Pilsner","state":"Wisconsin"},{"abv":13.033874360304612,"category":"North American Lager","city":"Denmark","coordinates":[44.3478,-87.8273],"country":"United States","ibu":100,"name":"Valhalla Ale","state":"Wisconsin"},{"abv":1.4930004506558947,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":71,"name":"Leicht","state":"Wisconsin"},{"abv":11.462490402625882,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":106,"name":"PMD Mild Ale","state":"Illinois"},{"abv":4.9000000954,"address":"Porter Tun House","category":"British Ale","city":"Luton","coordinates":[52.1357,-0.468],"country":"United Kingdom","ibu":77,"name":"Mackeson XXX Stout","state":"Bedford"},{"abv":14.932165863954921,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":28,"name":"Befuddelator Doppelbock","state":"Wisconsin"},{"abv":2.650630960031953,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":70,"name":"Irish Setter Red Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"500 Williams Street","city":"Hawkes Bay","coordinates":[-39.6275,176.854],"country":"New Zealand","ibu":29,"name":"Witbier"},{"abv":1.1549828311876642,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":13,"name":"Munich Helle","state":"Wisconsin"},{"abv":6,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":37,"name":"Black Strap Stout","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":3.831118075601294,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":98,"name":"Gold Rush (discontinued)","state":"Wisconsin"},{"abv":14.293774978520306,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":107,"name":"Cinnabarr","state":"California"},{"abv":8.95810905433034,"address":"PO Box 30161","category":"North American Lager","city":"Nairobi","coordinates":[-1.2833,36.8167],"country":"Kenya","ibu":92,"name":"Tusker Premium Lager"},{"abv":6.539999961899999,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":81,"name":"Oatmeal Stout","state":"Colorado"},{"abv":7.3000001907,"address":"500 Commercial Street","category":"German Lager","city":"Manchester","coordinates":[42.9945,-71.4674],"country":"United States","ibu":31,"name":"Weathertop Doppelbock","state":"New Hampshire"},{"abv":10,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":85,"name":"Barley Wine Ale","state":"Washington"},{"abv":8.3999996185,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"There's a Place just south they call Frog's Hollow, with cauldrons afire in Fall, and they only speak in whispers of the name. There's a brewery they say who has the secret, of spices picked just right. With a crying shout, they'll knock it out, and hand you this Frog's delight.","ibu":83,"name":"Frog's Hollow Double Pumpkin Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":8.5,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Double-Wide I.P.A. uses Zeus and Magnum hops for both bittering and aroma, with Ahtanum hops added solely for aroma. Two additional dry hopping regimens employ Ahtanum, Centennial, and Chinook varietals. The resulting beer – not surprisingly – has a hop forward aroma, redolent of peach and apricot. The assertive flavor bursts forth with citrus notes of blood orange and lemon, a caramel malt backbone serves to balance the intensity of the hops. There is little restraint in the flavor of this beer; it is certainly not for the pedestrian palate.","ibu":83,"name":"Double Wide I.P.A.","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.727902848598312,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Made exclusively for the Lancaster Dispensing Company.","ibu":3,"name":"Market Alley","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":5.3000001907,"address":"303 Main Street","category":"German Lager","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Mama’s Little Yella Pils - Our upcoming new canned good is a small-batch version of the beer that made Pilsen, Czechoslovakia famous. Mama’s is made with hearty amounts of pale malt, German specialty malts, and a blend of traditional (Saaz) and 21st century Bavarian hops. Our first canned lager, it’s also fermented at cool temperatures with a German yeast.\n\n\nThis tasteful reality Czech is the perfect antidote for the watered-down versions of pilsner clogging America’s shelves. And Mama’s gentle hopping (about 35 IBUs) and low ABV (just 5.3%) mean we’re finally honoring consumer requests for a delicious but less-challenging beer. (Hey, we like a good low-dose session beer, too.) Look for our Gold Metal Winner on US shelves in March.\n\n\nSadly, the Feds rejected our “Take Two and Call Us in the Morning” line on the can.","ibu":30,"name":"Mama's Little Yella Pils","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":6,"address":"140 North Third Street","category":"North American Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"Our signature brew that started it all. This beer is made with four different specialty malts including two foreign caramel malts, a pale malt, and a toasted malt. These malts impart a subtle toasted/sweet taste. This malty brew is than graced with floral and aroma hops which balance the maltiness of this brew and leaves behind a smooth finish on the palate. Top notch ingredients and a truly \"Honest\" taste makes this a seriously drinkable ale, unlike many other bitter American ales.","ibu":11,"name":"Truly Honest Ale","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":6.0999999046,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Slightly Malty Amber Lager","ibu":83,"name":"Marzoni's Amber Lager","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":5.5,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Our fall seasonal is a subtle, well-balanced ale, copper in color, offering rich, full flavors and aromas of pumpkin and spices.","ibu":21,"name":"Jack's Pumpkin Spice Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.75,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste.","ibu":81,"name":"Abita Purple Haze","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"An Irish style red (amber) beer. Light in finish but bold in taste. Melanoidin malt is added for the red color and the spicy finish comes through from the Chinook hops.","ibu":110,"name":"Erik the Red","state":"Michigan"},{"abv":5.0999999046,"address":"St Peter's Hall","category":"Irish Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":94,"name":"Old-Style Porter","state":"Suffolk"},{"abv":9.39052695908472,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":17,"name":"Prime Time Pale Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":5,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":77,"name":"Hanf"},{"abv":10.000963339063007,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":13,"name":"Ironwood Dark","state":"California"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A dark brown English ale, in which classic English malts meet the spicy hoppiness of the new world. Recommended serving temperature 8°C/45°F. Goes very well with ‘pub grub.’","ibu":67,"name":"Nøgne Ø Brown Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":8,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":55,"name":"Obovoid Empirical Stout","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.8000001907000005,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Aged in large oak casks and refermented in the bottle, Calabaza Blanca is a Belgian Biere Blanche. Spiced with orange peel and corriander, you'll find it refreshingly tart, with a wonderfully dry finish.","ibu":20,"name":"Calabaza Blanca","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.642875519156428,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":112,"name":"Landmark Gold","state":"Wisconsin"},{"abv":12.262679708040308,"city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":94,"name":"Blonde","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"925 South Third Street","category":"North American Lager","city":"La Crosse","country":"United States","ibu":5,"name":"Lager Beer","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":11.415473837653833,"city":"Albuquerque","coordinates":[35.0845,-106.651],"country":"United States","ibu":47,"name":"Where The Helles Albuquerque","state":"New Mexico"},{"abv":2.5106072560300907,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":89,"name":"Monk Pale Ale / Agnus Dei","state":"Antwerpen"},{"abv":4.4976445880253735,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":36,"name":"Old Man Winter Warmer 2000","state":"Minnesota"},{"abv":11.268482770163367,"address":"310 Perry Street","category":"British Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","ibu":103,"name":"English Mild","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":11.206282539073928,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":9,"name":"Harry Baals Stout","state":"Indiana"},{"abv":13.273616189138052,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":52,"name":"Golden","state":"Ontario"},{"abv":5.8000001907000005,"address":"7401 North La Cholla Boulevard","category":"North American Ale","city":"Tucson","coordinates":[32.3407,-111.015],"country":"United States","description":"The Granddaddy of Pale Ales, this style got its start as a special brew for English soldiers living in India. Our IPA is a medium bodied ale, with a light copper color characterized by an intense hop flavor, with a full flowery hop aroma and higher alcohol content.","ibu":29,"name":"Thunderhead IPA","state":"Arizona","website":"http://www.thundercanyonbrewery.com/"},{"abv":11,"category":"North American Ale","city":"Ingelmunster","coordinates":[50.9205,3.2541],"country":"Belgium","description":"Slightly dangerous beer - tastes like an 8% blonde, delivers like nothing else. A little tart around the edges, due to the higher alcohol content, but otherwise a pleasant strong pils taste : not too much hop on the palate.","ibu":67,"name":"Kasteel Blonde"},{"abv":7.8000001907000005,"address":"529 Grant St. Suite B","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Spiced for the holidays with honey, cinnamon, ginger, nutmeg and Santa's secret recipe.","ibu":112,"name":"12 Dogs Christmas Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.8000001907000005,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep amber color. Subtle hop floral nose intertwined with sweet crystal malt aromas. Rich malt flavors supporting a slight bitterness finish.","ibu":0,"name":"North Star Red","state":"California","website":"http://www.21st-amendment.com/"},{"abv":0.815930604095767,"address":"4268 Second Street","category":"North American Ale","city":"Detroit","coordinates":[42.351,-83.0665],"country":"United States","ibu":57,"name":"Gold Rush Ale","state":"Michigan"},{"abv":9.708516340169535,"address":"Sinebrychoffinaukio 1","city":"Kerava","coordinates":[60.381,25.1102],"country":"Finland","ibu":54,"name":"Koff Special III"},{"abv":3.058291762566859,"address":"3945 Second Street South","category":"North American Ale","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":18,"name":"Broad Ax Stout","state":"Minnesota"},{"abv":13.558158551648246,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":1,"name":"Mudcat Stout","state":"Iowa"},{"abv":14.172842043662937,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":79,"name":"Pilsner","state":"Louisiana"},{"abv":5.5,"address":"1313 NW Marshall Street","category":"Irish Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":9,"name":"Bottle Conditioned Porter","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":6.5999999046,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":108,"name":"XXX English Ale","state":"Minnesota"},{"abv":7.831633949024073,"category":"North American Ale","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":33,"name":"Stout","state":"Iowa"},{"abv":4.9000000954,"address":"195 Ottley Drive","category":"Other Style","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"Sweetwater Blue is a unique light bodied ale enhanced with a hint of fresh blueberries. This euphoric experience begins with an appealing blueberry aroma and finishes as a surprisingly thirst-quenching ale.","ibu":31,"name":"Blue","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":7.9000000954,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Salvator, with its strong, typically malty flavour, is what you could call the \"original\" Paulaner. The bottom-fermented \"Doppelbock\" beer combines the finest hops and dark barley malt. The Paulaner monks used to drink Salvator as a food substitute during Lent. The most famous master brewer was Frater Barnabas, who took over the Paulaner monastery brewery in 1773. His original recipe remains practically unchanged to this day. In order to preserve the original, Paulaner registered the name \"Salvator\" with the patent office in 1896.\n\n\nSalvator:\n\n18.3% original wort; 7.9% alcohol; 70.6 kcal/100 ml","ibu":101,"name":"Salvator","website":"http://www.paulaner.com/"},{"abv":10.637935692749895,"address":"2840 Shawano Avenue","category":"North American Ale","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":86,"name":"Amber","state":"Wisconsin"},{"abv":8.971190146601163,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":2,"name":"Adler Bräu Fox Classic River Ale","state":"Wisconsin"},{"abv":2.6980483974207203,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":83,"name":"All Saints Belgian Golden Ale","state":"West-Vlaanderen"},{"abv":0.15975118441031388,"address":"211 West 13th Avenue","city":"Denver","coordinates":[39.7369,-104.991],"country":"United States","ibu":57,"name":"Gael Force Scottish Export","state":"Colorado"},{"abv":10.116831772263927,"category":"North American Lager","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":95,"name":"Lake Shore Light","state":"Missouri"},{"abv":6.7059464242364815,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":97,"name":"Sturgeon Stout","state":"Ohio"},{"abv":5,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors' Extra Gold Lager is a rich, full-flavored lager that has a deep golden color. Extra Gold Lager starts with the slow aging of its roasted malts, which are then combined with its other premium ingredients and slow-brewed to produce this exceptional, refined lager.","ibu":53,"name":"Coors Extra Gold Lager","state":"Colorado","website":"http://www.coors.com"},{"abv":0.6014240760865908,"address":"8280-A Mira Mesa Boulevard","category":"North American Ale","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":90,"name":"Red","state":"California"},{"abv":12.820329823202366,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":93,"name":"Red Tail Ale","state":"California"},{"abv":14.06314344771023,"category":"German Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":118,"name":"Windmill Wheat Ale","state":"Texas"},{"abv":10.70658438582847,"category":"Irish Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":82,"name":"34th Street Porter","state":"California"},{"abv":3.2021908689608134,"address":"4201 Tonnelle Avenue","category":"North American Ale","city":"North Bergen","country":"United States","ibu":51,"name":"Hudson Pale Ale","state":"NJ","website":"http://www.njbeerco.com"},{"abv":8,"address":"3924 West Spruce Street Suite A","category":"Belgian and French Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Guava Grove is a Saison which is fermented with guava. The guava adds sweetness and acidity to the prodigious fruity esters imparted by the warm fermentation temperatures of the Belgian yeast strain.","ibu":20,"name":"Guava Grove Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"The Reserve Series romance all began with our first release of this limited-edition brew. Mirror Mirror, born of a double batch of Mirror Pond Pale Ale, is an inspired, barrel-aged barley wine layered with intriguing nuances. Explore this latest incarnation and enjoy its delicious complexity in every sip.","ibu":109,"name":"Mirror Mirror","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":8,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Haywards Black, India’s first genuine stout beer , is handcrafted from a rich blend of the world famous Caledon valley dark roasted barley malt along with a blend of imported and locally produced pale malts. New Zealand’s super alpha hops give Haywards Black a unique and pleasantly bitter taste with a hop like aroma. The Dark Roasted malt provides a rich dark colouring along with a unique smoky taste and aroma. The Slow brewing process which incorporates specially managed yeast creates the creamy head and the rich smooth taste that stout is so much loved for. \n\n\nhttp://www.sabmiller.in/brands_haywards_black.html","ibu":100,"name":"Haywards Black","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":5.3000001907,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"North American Lager","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":35,"name":"Baltika #5","state":"Sankt-Peterburg"},{"abv":7.8000001907000005,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Intriguing doses of sweet spices, dark cocoa and pumpkin transform an exceptional porter into a\n\nmesmerizing potion. Pour this tantalizing brew into a snifter and seek solace in the depths of its fascinating flavors. Cinnamon, nutmeg and cloves seem familiar but this brew is cloaked in deep, dark secrets that will forever haunt you.\n\n\nThis beer is like nothing you have ever experienced. It is a majestic mélange of rich, impressive flavors that meld wonderfully with the\n\nwarmth of alcohol. Will it appease or awaken your spirit?","ibu":84,"name":"Imperial Chocolate Pumpkin Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.5337407938140424,"address":"1516 Sansom Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","description":"lighter Scotish-Style Ale... amber in color with plenty of maltiness... reminds us all that sometime there just aren't enough O's in smooth","ibu":79,"name":"60 Shilling","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":0.689031374175032,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Nothing beats a day at the beach... the sun, the sand and, of course, the scenery. Here in Lake Mills, the three beaches of Rock Lake have drawn young and old for generations... to laugh, to play, to frolic, to just escape stresses of life for a time. Three Beaches Honey Blonde is like a day at the beach... light, bleached blonde, gleefully effervescent, free from bitterness and sure to improve your attitude. When you need a little attitude adjustment, spend a day at the beach with Three Beaches Honey Blonde... and you won't even have to wash the sand out of your suit!\n\n\nThree Beaches Honey Blonde is our Wisconsin version of the American Blonde Ale. This beer is light-bodied with a sweet touch of honey and a mild citrus accent.","ibu":39,"name":"Three Beaches Honey Blonde Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.0999999046,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":36,"name":"Shouboushi Ginger Pilsner","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":4.5999999046,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Not to be boastful, but we honestly believe that all other ales pale in comparison to this one. Brewed with pilsner malt, Philadelphia Pale Ale is crisp and hoppy, bursting with citrus flavors and aromas.\n\n\nPhiladelphia Pale Ale was named one of the best Pale Ales in the country by the New York Times.","ibu":28,"name":"Yards Philadelphia Pale Ale","state":"Pennsylvania"},{"abv":5,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Made popular in the 19th century in Dortmunder, Germany, these pale golden lagers exhibit a classic clean character with notes of biscuity malts. Bitterness is akin to a German Pilsner with an aromatic aroma. Mouthfeel is firm and even, with an overall dry tone.","ibu":56,"name":"Big Mac","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":12.345679217084376,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This dark full bodied stout is perfect with a meal or as a meal. Rolled oats give this beer an enjoyable mouthfeel while chocolate and roasted malts lend to its distinctive flavor.","ibu":67,"name":"Bube's Stout","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":7,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This is a hybrid of ale and mead made with 51% malted barley (Pale and Munich malted barley) and 49% Orange blossom honey, it is lightly hopped, spiced with Hibiscus flowers and fermented with Australian ale yeast.\n\n\nOur Milton, DE microbrewery brewer Jon Talkington came up with this beer because of his love of different kinds of meads and his interest in Nordic lore and mythology. The name Beewolf is the name Beowulf translated, meaning bear.\n\n \n\nColor- light amber.\n\nAroma- Pear like fruitiness, with a clean malt and floral honey nose.\n\nFlavor- sweet malt and honey with a subtle fruitiness and a hint of caramel.\n\nABV 7.0%\n\nIBU's 25\n\n\nDue to the limited availability of Beewolf Braggot, we are sorry that we are not able to offer growlers to go.","ibu":119,"name":"Beewolf Braggot","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.5,"address":"Brouwerslaan 1","category":"Other Style","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Dunkel Weizen is the darker version of Grolsch Premium Weizen.","ibu":17,"name":"Grolsch Dunkel Weizen","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":7.727604308921921,"address":"95 Cathedral Street, Suite 200","category":"North American Ale","city":"Annapolis","coordinates":[38.9773,-76.4948],"country":"United States","ibu":18,"name":"Copper Head Ale","state":"Maryland","website":"http://www.ramsheadtavern.com/"},{"abv":5.1999998093,"address":"1100 New York Ave, NW","category":"Irish Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down.","ibu":47,"name":"Irish Red Ale","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":2.31290572381893,"address":"200 East Campbell Avenue","category":"Irish Ale","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":105,"name":"Porter","state":"California"},{"abv":10,"address":"1415 First Avenue","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":109,"name":"Old Bawdy 2006","state":"Washington"},{"abv":7,"address":"3115 Broad Street","category":"British Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A sustaining beer that is brewed to comfort in the gusty ides of March and welcome in a wealth of warmer weather.","ibu":41,"name":"Biere de Mars","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":6.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":82,"name":"Saison Vielle Provision","state":"Hainaut"},{"abv":13,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":86,"name":"Bourbon County Stout 2007","state":"Illinois"},{"abv":8,"address":"Funenkade 7","city":"Amsterdam","coordinates":[52.3666,4.9263],"country":"Netherlands","ibu":35,"name":"Zatte Amsterdamse Tripel"},{"abv":1.408573871410903,"address":"243 North Gaither Street","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":94,"name":"Spruce Ale","state":"Oregon"},{"abv":12.809395207145098,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":91,"name":"I.M. Pale","state":"Washington"},{"abv":7.607346094315462,"category":"North American Ale","city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":8,"name":"Altbier"},{"abv":5.8000001907000005,"address":"Camwal Road","category":"North American Ale","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":107,"name":"Ripon Jewel Ale","state":"North Yorkshire"},{"abv":7.0846088074432645,"category":"North American Ale","city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":114,"name":"Star of India India Pale Ale","state":"Minnesota"},{"abv":4.1999998093,"category":"German Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":104,"name":"Hefeweizen","state":"Iowa"},{"abv":3.2275778377056286,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":83,"name":"Stout","state":"Wisconsin"},{"abv":1.2168423388177396,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":81,"name":"Winter Solstice Seasonal Ale 2002","state":"California","website":"http://avbc.com/"},{"abv":0.5705291518043676,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":11,"name":"Steam","state":"Louisiana"},{"abv":8.1000003815,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Big Bear, as the name implies, is a hefty, black, Russian Imperial-style stout. This bold stout boasts a rich, caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your teeth into. ...Big Bear's bold flavors are produced using a blend of Belgian and English roasted barley and crystal malts. Some unique flavors come forth in the malt character. ...Louisiana sweet molasses and dark brown sugar. This dark brew is well hopped with Chinook and Cascade hops, which are somewhat, masked by the malt. This is a balanced bold brew boasting an A.V.B. of 8.1% that can creep up on you, \"so don't get mauled\". It has a dry roasted quality that masks its' high alchohol content, so drink responsibly. 2004 California State Fair, Silver Medal Winner; 2002 World Beer Cup, Gold Medal Winner; \n\n2002 Annual Bistro Beer Festival, Hayward, Gold Medal Winner; 2001 North American Brewers' Award, Honorable Mention - og 1.076, ABV 8.1%, IBU 68.","ibu":91,"name":"Big Bear Black Stout","state":"California","website":"http://www.bearrepublic.com/"},{"abv":14.007843816186078,"address":"636 East Main Street","category":"Irish Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":18,"name":"Dark Star","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":9.1000003815,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":22,"name":"Old Knucklehead 2003","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":9.8000001907,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":32,"name":"Tripel Krullekop","state":"Oost-Vlaanderen"},{"abv":8.803476554614987,"address":"10450-L Friars Road","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":29,"name":"Grantville Gold","state":"California"},{"abv":6.1999998093,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":6,"name":"Starfire Pale Ale","state":"Minnesota"},{"abv":3.238346838108753,"address":"5775 Lower Mountain Road","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":109,"name":"Indian Red Ale","state":"Pennsylvania"},{"abv":32,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This is the worlds strongest ever beer, ever (yes ever).\n\n\nNo Penguins were harmed in the making of this beer; some humans did get very, very cold though. It was worth it.\n\n\nThe Antarctic name, inducing schizophrenia, of this Ÿber-imperial stout originates from the amount of time it spent exposed to extreme cold. This beer was initially double barrel aged for 14 months; maturing in the deep, rich oak of Scottish whisky casks. After this epic maturation the beer was then frozen, then frozen again, then frozen again.\n\n\nThis is an extremely strong beer, it should be enjoyed in small servings and with an air of aristocratic nonchalance. In exactly the same manner that you would enjoy a fine whisky, a Frank Zappa album or a visit from a friendly yet anxious ghost.","ibu":88,"name":"Tactical Nuclear Penguin","website":"http://brewdog.com/"},{"abv":5.5999999046,"address":"4519 W. Pine Street","category":"North American Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Brown Ale is an American brown ale brewed with loads of hops from start to finish (it’s hoppy and beautifully bitter). Amarillo hops in the boil provide a spicy citrusy bitterness. Saaz dry hops in the fermentor provide a refined flowery aroma. These hops are supported by a grain bill of seven varieties of malt. Oh yeah!","ibu":16,"name":"Duck-Rabbit Brown Ale","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This deep copper colored Ale is named after Steve's homebrew buddy Thom Phillips, who has had a part in helping to formulate some of the final Ale recipes at the Livery. Hints of caramel make their way through the aromatic bitterness of Centennial hops.","ibu":42,"name":"Thoms Special Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.5,"address":"2713 El Paseo Lane","category":"North American Lager","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A light all malt lager with delicate hop finish.","ibu":115,"name":"Brewhouse Lager","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":5.5,"address":"701 Galveston Ave","category":"German Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"There is nothing more refreshing than a cold SUMMERTIME WHEAT at the end of a hot Texas day. This refreshing, lightly hopped ale has unique banana and clove-like characteristics. It is unfiltered so the yeast character comes through with a light but full body.","ibu":83,"name":"Rahr's Summertime Wheat","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":8,"address":"2439 Amber Street","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"All beers are not created equal.\n\n\nWhile Thomas Jefferson spent much of his time in Philadelphia drafting, editing, revising, and re-editing the Declaration of Independence, he longed to be home in Monticello, where twice a year his wife Martha would brew up one of his favorite beverages — beer.\n\n\nThomas Jefferson Tavern Aleâ„¢ is a strong golden ale, based on Jefferson's original recipe, which included ingredients specified and grown on his Virginia estate.\n\n\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.","ibu":70,"name":"Thomas Jefferson's Tavern Ale","state":"Pennsylvania"},{"abv":6.1999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This IPA is an exciting beer with a floral in aroma and an incredible hop flavor. The maltiness is increased (over a regular pale ale) to help balance the aggressive hop usage. This contributes to the higher alcohol content as well. \n\nWhen India was part of the British Empire, pale ale shipped to the troops would often spoil due to the rough voyage and temperature extremes. The brewers had a theory that if they loaded the beer with extra hops, the hops would preserve the beer. Of course, this added significantly to the beer’s flavor and aroma. When the troops returned to Britain, they had become \"hop-heads\", appreciating the beauty of the hop \"over-influence\". Regular pale ale was simply not enough anymore! A new beer style, India Pale Ale, had been created: an aggressively hoppy and now quite happy to be home pale ale.","ibu":112,"name":"Hoppy Trails India Pale Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":60,"name":"Budweiser","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":0.5606632864054351,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":19,"name":"Peregrine Pale Ale","state":"California"},{"abv":11.347542281446666,"address":"6863 Lundy's Lane","category":"North American Lager","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":37,"name":"Weisse Beer","state":"Ontario"},{"abv":11.679821031602584,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":38,"name":"Russian Imperial Stout","state":"Nebraska"},{"abv":2.9437625188713934,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":78,"name":"Hefe Weizen Dunkel","state":"Baden-Wrttemberg"},{"abv":5,"address":"901 S. Bond St.","category":"German Lager","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"Succumb to this dark, medium bodied German-style dark lager’s smooth roasted flavors and light hoppy bitterness. Don’t worry, you’ll remember everything the next morning.","ibu":43,"name":"Blackout","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced in 1989 Bud Dry is the first dry-brewed beer produced by an American brewer. It is brewed with select hops, grains and barley malt, which results in a lighter body and less-sweet taste. As with all Anheuser-Busch beers, it is cold-filtered for a smooth draft taste, but then goes through a second cold-filtered finishing process to provide its unique taste.","ibu":11,"name":"Bud Dry","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"Route 4 & 100A","category":"German Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Here is our \"Wheat Beer with Yeast\", or Hefeweizen. Beers brewed with a high proportion of wheat yield a crisp and refreshing flavor profile, while the addition of our special yeast adds a blend of complex citrus and spice flavors.","ibu":30,"name":"Long Trail Hefeweizen","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":7.729438119029696,"ibu":102,"name":"07/22/10 08:00 PM"},{"abv":5.6999998093,"address":"814 W Hamilton St","category":"Irish Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Dark brown with ruby highlights this brew has a deep chocolate flavor backed by a smooth caramel finish. Brewed with English malt and hops for an authentic flavor","ibu":80,"name":"Pawn Shop Porter","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":5.1999998093,"address":"1340 East Eighth Street #103","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A very light golden ale that is malty sweet, almost honey-like in the nose. This ale has a light to medium body and a very delicate flavor. Easy drinking, it has very low bitterness and a soft dry finish. 5.2% alcohol/volume. This style originates from the city of Cologne, Germany where all twenty eight breweries are dedicated to brewing only Kölsch. Coming soon in cans. (ALWAYS ON TAP!!)","ibu":50,"name":"Sunbru Kölsch Style Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":7.1999998093,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A cross between a Scotch Ale, an I.P.A., and an American Brown, this beer is well-hopped and malty at the same time. It is brewed with Aromatic barley and caramelized brown sugar.","ibu":18,"name":"Indian Brown Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.9000000954,"address":"210 Swanson Avenue","category":"Belgian and French Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Belgium Wheat Ale, Spiced With Orange Reel & Coriander, Strong & Smooth","ibu":24,"name":"Full Moon Belgian White Ale","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":7.616226433404884,"address":"2029 Old Peshtigo Road","category":"German Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":28,"name":"Oktoberfest (discontinued)","state":"Wisconsin"},{"abv":0.19016768207742896,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":117,"name":"Affligem Dobbel","state":"Vlaams Brabant"},{"abv":5,"address":"Lidick 51","city":"esk Budjovice","country":"Czech Republic","ibu":110,"name":"Samson Crystal Lager Beer"},{"abv":6,"category":"North American Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":86,"name":"Imperial Stout","state":"Washington"},{"abv":1.6294221620753813,"category":"North American Ale","city":"Kirkland","coordinates":[47.6815,-122.209],"country":"United States","ibu":34,"name":"Kirkland Ale","state":"Washington"},{"abv":3.9294884037711797,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":48,"name":"Barleywine","state":"Colorado"},{"abv":11.568146976656893,"city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":19,"name":"Uncle Dunkel","state":"Colorado"},{"abv":7.981817559993688,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":77,"name":"Pullman Nut Brown Ale","state":"Illinois"},{"abv":1.998571417711188,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":67,"name":"Bock","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.5,"address":"470 Prospect Village Dr.","category":"North American Lager","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","ibu":77,"name":"Staggering Elk","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":14.542376725574346,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":101,"name":"Grist Mill Golden","state":"New Jersey"},{"abv":6.277252251412956,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":55,"name":"Maibock","state":"Bayern"},{"abv":5.777324548553215,"address":"PO Box 1498","category":"North American Lager","city":"Boston","coordinates":[42.3587,-71.0574],"country":"United States","ibu":3,"name":"Edison Light Beer","state":"Massachusetts"},{"abv":13.819985247258511,"address":"Zornedinger Strae 2","category":"German Ale","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":46,"name":"Bräu-Weisse","state":"Bayern"},{"abv":6.5,"address":"214 Spanish Town","category":"North American Ale","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":3,"name":"Guinness Foreign Extra"},{"abv":5,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"s a unique, all-natural style of beer that currently falls under the category of a Specialty Ale. In other words, there is no true category for this beer... Characterized by its distinctive Mount Hood hop aroma and beautiful blonde color, Liquid Sunshineâ„¢ is brewed at a low temperature to create a nice light dry finish. Using only the finest 2-row malted barley, wheat, rye, and great northwestern grown hops, this combination results in a clean, crisp, and uniquely refreshing beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\n\nThere’s nothing like it under the sun!!!","ibu":61,"name":"Liquid Sunshine Blonde Ale","state":"California","website":"http://www.hoppy.com"},{"abv":7.530686456319138,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":54,"name":"IPA","state":"North Carolina"},{"abv":10.746910493744972,"category":"Other Style","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":91,"name":"Frambosia","state":"California"},{"abv":7.008099642884904,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":75,"name":"Wintertime Ale 1992","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":0.7890480498007413,"category":"German Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":103,"name":"Märzen","state":"Illinois"},{"abv":5.7123338585244765,"category":"British Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":96,"name":"Best Mild (discontinued)","state":"Oregon"},{"abv":14.136023103825664,"address":"1920 Shattuck Avenue","category":"Irish Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":64,"name":"Porter","state":"California"},{"abv":6.6999998093,"category":"North American Ale","city":"Fremont","coordinates":[37.5483,-121.989],"country":"United States","ibu":55,"name":"Independence Ale","state":"California"},{"abv":1.4575872100274823,"category":"Irish Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":84,"name":"Texas Special 101 Porter","state":"Texas"},{"abv":8.23349019182984,"address":"1650 Dell Range Boulevard","category":"Other Style","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":107,"name":"Big Horn Bluesberry","state":"Wyoming"},{"abv":4.9699997902,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":94,"name":"Singletrack Copper Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.962459457344867,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":108,"name":"Hatuey Beer","state":"Florida"},{"abv":7.162189905754283,"address":"890 East Fort Union Boulevard","category":"North American Lager","city":"Midvale","coordinates":[40.6215,-111.866],"country":"United States","ibu":94,"name":"Uno Mas","state":"Utah"},{"abv":3.464068023438327,"address":"375 Water Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"During the heyday of the British Empire, India Pale Ale was born as a strong pale ale brewed especially to endure the rigors of the long journey to the colonies. In order to guard against spoilage, I.P.A. was brewed with a high alcohol content and with liberal amounts of hops, which act as a natural preservative. This ale's golden amber colour only hints at its full-bodied flavour. Its sumptuous maltiness is tempered by a goodly amount of bitterness and a mouth-filling hop flavour. In order to finish our I.P.A. with a truly fresh hop bouquet, we dry hop this ale in the serving tank with both East Kent Goldings and Mount Hood hops.","ibu":59,"name":"Empress India Pale Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":10.957725212216499,"address":"Hchberger Strae 28","category":"German Ale","city":"Wrzburg","coordinates":[49.792,9.915],"country":"Germany","ibu":71,"name":"Julius Echter Hefe-Weißbier Hell","state":"Bayern"},{"abv":6.8000001907000005,"address":"Dinant","city":"Dinant","coordinates":[50.2606,4.9122],"country":"Belgium","description":"Dark brown with a nice tan head.\n\nSweet and aromatic.\n\nSmooth and best served cold from a goblet or chalice.\n\n\nI have had this on tab, in a 12oz bottle and 1 liter bottle. It is very common on to be on tap in Belgium and Paris as well as in a bottle in the UK.\n\n\nI have not seen it in the US nor can I find a distributor that could get it.","ibu":63,"name":"Brune (Brown)","state":"Namur"},{"abv":7.569699109377591,"address":"1321 Celebrity Circle","category":"Belgian and French Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"Wheat-based beer brewed with coriander and orange peel to produce a mild citrus flavor.","ibu":70,"name":"Liberty White Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":10,"address":"2051A Stoneman Circle","category":"British Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":38,"name":"Creme Brulee Imperial Milk Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":10,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Ten FIDY Imperial Stout - Now (11-21-07) available in cans, our winter seasonal beer is immensely viscous and loaded with neck-deep flavors of chocolate, malt, coffee, cocoa and oats.\n\n\nIt's the beer equivalent of decadently rich milkshake made with malted-milk balls and Heaven’s best chocolate ice cream. Ten FIDY is about 10% ABV and is made with enormous amounts of two-row malts, chocolate malts, roasted barley, flaked oats and hops. Its huge-but-comforting flavors hide a whopping 98 IBUs that are deftly tucked underneath the beer’s mountains of malty goodness.\n\n\nTen FIDY is the ultimate Rocky Mountain winter warmer, and further proof of the creative muscle of our beloved brewing staff. Look for fourpacks of Ten FIDY in select beer stores in Colorado. Out of state? We hope to send a few cases to a few of our other states in early '08.","ibu":116,"name":"Ten Fidy","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":4.5999999046,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A scintillating ale with just the right amount of hops and ripe berry flavor.","ibu":66,"name":"Middle Ages Raspberry Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":3.072933493132095,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"This beer is not very bitter which allows the flavors of the rye and honey to come through. The result is a full bodied, sweet, and malty beer.","ibu":37,"name":"Honey Rye Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11.083467046559544,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer was created as a summer thirst quencher, because we all know how hot and humid it can get in New York during the summer. We brewed this beer using both coriander and orange peel in the boil to increase both the aroma and flavor of this beer. Make sure you don’t get burned this summer, drink your Sun Block.","ibu":66,"name":"Sun Block - Belgian Style Witte","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":2.6810383075409403,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"An intense and rich, dark, roasty ale with substantial alcohol warming. Requires several months of aging.","ibu":103,"name":"Manheim Stout","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":4,"address":"1722 South Fremont Drive (2375 West)","category":"Irish Ale","city":"Salt Lake City","coordinates":[40.7326,-111.954],"country":"United States","description":"King's Peak Porter is deep mahogany in color and has a full-bodied malty flavor. Hints of chocolate malt are easily detectable.\n\n\nTopped with a tan creamy head, this beer has a definite hop character that nicely balances its mild bitterness. \n\n\nKing's Peak is the highest point in the state of Utah at 13,528 feet, located in northeastern Utah in the Uinta Mountains.","ibu":28,"name":"King's Peak Porter","state":"Utah","website":"http://www.uintabrewing.com/"},{"abv":5.5999999046,"address":"2201 Arapahoe Street","category":"Other Style","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"What better way to surprise a beer lover than with a fruit beer that tastes like beer? Nine years ago, we began our quest to provide beer lovers with a worthy fruit beer, by rolling out Wild Raspberry Ale. Our mantra is that real fruit makes real beer, so we ferment Wild Raspberry Ale with hundreds of pounds of real red and black raspberries. We steadfastly refuse to fall prey to extracts and cheap syrups. Sure, squirting syrup into a keg of beer and rolling it around on the floor is easy, but the taste is... fake! Over the past nine years, we have stayed true to our commitment to real fruit, no matter what the time, expense, or late season frosts have thrown our way. One year, Mother Nature delivered a late cold snap that was so severe, we had to pre-order 85% of the harvestable U.S. black raspberry crop, just to meet the demand for Wild Raspberry Ale.\n\n\nOur efforts do not go unrewarded – Wild Raspberry Ale is a truly effervescent, ruby red ale that achieves the almost impossible balance between malted barley and tart raspberry fruitiness. Its naturally tart character makes Wild Raspberry the ultimate accompaniment to spicy Mexican food or on its own as a stand-alone session beer.","ibu":60,"name":"Wild Raspberry Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.5,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":38,"name":"Troublette","state":"Namur"},{"abv":14.018589636813136,"address":"871 Beatty Street","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":25,"name":"Game Day","state":"British Columbia"},{"abv":1.4509139492798606,"address":"202 - 13018 80th Avenue","city":"Surrey","country":"Canada","ibu":9,"name":"Blonde Ale","state":"British Columbia"},{"abv":5.0999999046,"address":"Oberdorferstrae 9","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":6,"name":"Naturtrubes"},{"abv":8.31542346441924,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":42,"name":"Beer Town Brown","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":5.1999998093,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":62,"name":"Danger Ale","state":"Washington"},{"abv":10.238915946312774,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":118,"name":"Hacker-Pschorr Original Oktoberfest","website":"http://www.paulaner.com/"},{"abv":4.648398704976322,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":11,"name":"Stout","state":"Wisconsin"},{"abv":0.5075496900479737,"category":"North American Lager","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":13,"name":"Harvest Wheat Beer","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":1.465968022348455,"address":"26 West Industrial Drive","city":"O'Fallon","coordinates":[38.8058,-90.7532],"country":"United States","ibu":80,"name":"Griesendiech Pilsner","state":"Missouri"},{"abv":5.006710242066364,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":0,"name":"Imperial Stout","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":8.75,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"HOP HENGE IMPERIAL IPA – The Ultimate in Hop Innovation \n\n\nHop Henge Imperial IPA returns to the Bond Street Series line-up this April in extreme fashion. Staying true to the experimental nature of the series and the “never settle” philosophy of Deschutes, our brewers went back to the drawing board to create an amplified version of last year’s monument to hops.\n\n\nHead Brewer Brett Porter says, “This is a truly exciting and groundbreaking beer. We reformulated everything about the hop recipe to give Hop Henge an extraordinary aroma and flavor similar to a fresh hop beer.” In addition to the Cascade and Centennial hops, Deschutes Brewery is experimenting with a hop variety so new that it has yet to be named.\n\n\nThe team here at Bend Public House recommends Hop Henge as the perfect accompaniment for a variety of spicy foods, so be sure to have a bottle handy next time you make a batch of hot wings and go for the five alarm award. The high-octane hoppiness is a wildly refreshing antidote to a wide array of hot foods.\n\n\nLimited Availability April through June.\n\n\nDon’t miss this amazing hop experiment that is sure to leave your taste buds begging for more.\n\n\n-http://www.deschutesbrewery.com/Brews/Bond+Street+Series/default.aspx\n\n\nAvailable April through June.\n\n\nHop Henge I.P.A. was first brewed in 2006 as an agressive West Coast style I.P.A. In 2007, Hop Henge is going Imperial! Several pounds of Centennial, Cascade and Northern Brewer hops are in each barrel with a heavy dry-hop presence to top it off. A blend of crystal, pale and caraston malts creates an overall biscuity characteristic that is dense and muscular, building the alcohol base to support the monstrous hop profile.\n\n\nLike the rest of the Bond Street Series, Hop Henge highlights the creativity and curiosity of our brewers. Bolder than its English ancestors, with huge hops and a bitter finish, this IPA is no wallflower.\n\n\nAlcohol By Volume: 8.1%\n\n\t\n\n\nIBU 95\n\n\nWhen one of our brewers suggested we name our new IPA Hop Henge, he also came up with the idea of actually recreating Stonehenge, only with hop bales. We were up for the challenge and even though the weather did not want to cooperate, we pulled it off and threw a party afterwards.\n\n\t\n\n\n\nphoto: chris mather\n\nRatings, Awards & Notables\n\n\nWorld's Best Strong Pale Ale (Imperial IPA)\n\n2007 World Beer Awards\n\n\nWorld's 50 Best Beers\n\n2006 International Beer Challenge\n\n\nGold Medal, 92 Points\n\n2006 World Beer Championships\n\n\nSilver Medal, India Pale Ale Category\n\n2006 Australian International Beer Awards\n\n\nModern Brewery Age, February 12, 2007\n\n5 out 5 stars \n\nHop Henge started its life as an India Pale Ale, but this year it was bumped up to “Imperial IPA” status, with a hefty dose of additional hops.\n\n“This one is lovely,” said taster Tom Conti. “They got it just right.”\n\nIt pours out a deep amber, with an appealing rocky head, and rich hop aroma wafting from the glass. “They sure dosed it with a lot of hops...[there’s] a lot of hop bitterness in the taste,” one taster observed.\n\nIn addition to the Imperial-level hopping, Hop Henge also boasts Imperial-level alcohol content, with 8.1% a.b.v.\n\nThis was the top-rated beer during its tasting session, and tasters had to dig deep for new superlatives to describe it. “This is a beautiful beer,” concluded taster Gregg Glaser. “Full of flavor and hops and malt and hops again.”\n\n“Not for the timid,” said taster Robert Lachman.\n\n\n-http://www.deschutesbrewery.com/BrewPub/OnTap/125352.aspx","ibu":80,"name":"Hop Henge Imperial IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":12.7325923393775,"address":"375 Water Street","category":"German Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our Hefeweizen is a faithful version of the traditional Bavarian wheat beer. Hefe is the German word for 'yeast' and weizen means 'wheat'. This beer is made with 40% wheat malt and is brewed with a special yeast that tends to stay in suspension, giving the beer its cloudy appearance. Bavarians are so convinced of the healthful qualities of this yeasty brew that doctors there are known to prescribe two Hefeweizens a day to feeble patients. The yeast used for this brew also imparts its unique spicy, clovey flavour. Some people even detect a light banana flavour. All of these wacky flavours are the natural 'signature' left by this specific yeast strain during its fermentation of the beer and no additional spices are added.","ibu":96,"name":"Skinny Tire Hefeweizen","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.5999999046,"address":"910 Montreal Circle","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":9,"name":"Great Northern Porter","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":4.9000000954,"address":"Bergstrae 4","category":"German Lager","city":"Steinberg/Sachsen","country":"Germany","ibu":10,"name":"Pils Legende","state":"Sachsen","website":"http://www.wernesgruener.de/"},{"abv":8.13715058169956,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A dark, full flavored English porter with Scottish heather honey. Samuel Adams® Honey Porter is a full-flavored, full-bodied English porter with a substantial roasted malt character, offering a smooth, rounded finish. This beer is brewed with traditional English Ale hops and is dry-hopped with East Kent Goldings, known for their spicy aroma and distinctive, earthy flavor. We brew Honey Porter with Scottish heather honey which balances the spiciness of the hops.\n\n\nThis brew is the perfect complement to glazed ham, spicy chili, and roasted vegetables like beets and carrots, which bring out the herbal notes found in the hops and the sweetness of the honey. Samuel Adams® Honey Porter also pairs well with rich desserts such as baklava and molasses cookies.","ibu":8,"name":"Samuel Adams Honey Porter","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our Hop Knot IPA is made only from American malt and lots of American hops, which produce a big, broad-shouldered, hoppy beer backed up by a character as warm as, well, Mom and apple pie… \n\n\nHop Knot IPA get its peculiar name from the weaving of four different hops added at four separate times during the brewing process. Including our cavernous hop-back, which gets so stuffed with whole leaf hops that we feel genuine guilt for its excess. Hop Knot is an ale that is to be enjoyed with friends, spicy food or any time you need a good hop fix without the harsh bitterness. We hope you enjoy this pioneering beer made in the bold spirit of Americans everywhere. \n\n\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)","ibu":41,"name":"Hop Knot IPA","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6.5,"address":"514 South Eleventh Street","category":"British Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our Dundee Scotch Ale begins with a traditional \n\nsweetness and finishes with a full, malty flavor. Don’t be fooled by the dark color—this beer is delicious and surprisingly easy to drink.","ibu":64,"name":"Dundee Scotch Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.5,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"A golden bitter suffused with the aromas of a grapefruit grove. The massive citrus attack will burst on your palate allowing all the flavours of the imported New World hops to deliver their fruity bitterness.","ibu":108,"name":"Adnams Explorer","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":2.0819346118539794,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":118,"name":"Broke Spoke Pilsner","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":13.526328911702183,"category":"North American Ale","city":"New York Mills","coordinates":[46.518,-95.3761],"country":"United States","ibu":75,"name":"Red","state":"Minnesota"},{"abv":6.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A complex and artistically balanced multi-layered IPA (India Pale Ale) with an intense finish of cascade hops.","ibu":76,"name":"Im Paled Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":8.271753464540627,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":116,"name":"Copper Wheat","state":"Nebraska"},{"abv":3.5224974081062985,"address":"18 East 21st Street","category":"German Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":107,"name":"Autumn Strong Lager","state":"Nebraska"},{"abv":12.893327601168698,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":63,"name":"IPA","state":"Wisconsin"},{"abv":10.399999619,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Take an India Pale Ale and feed it steroids! Although open to the same interpretation as its sister styles, you should expect something robust, malty, alcoholic and with a hop profile that might rip your tongue out. The Imperial usage comes from Russian Imperial stout, a style of strong stout originally brewed in England for the Russian Imperial Court of the late 1700s; though Double IPA is often the preferred name.","ibu":26,"name":"Russian Imperial Stout","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":10,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"First brewed in 2002 to celebrate the 15th Anniversary of the Pizza Port in Solana Beach, Hop 15 was imagined and designed by Tomme Arthur and Jeff Bagby. It was to be a celebration of 15 years of \"Good Beer Brings Good Cheer.\" So there are 15 different hop varieties that are added to the beer every 15 minutes. Over the years, Hop 15 has racked up numerous accolades. It has won two silver medals at the Great American Beer Festival. It also was named Alpha King in 2004 and received a first place award at the Bistro Double IPA beer festival in Hayward, CA. Hop 15 remains won of the stickiest most resinous beers we have ever tasted and for that, we are thankful it is on tap at our brewery each and every day.\n\n\nMalts- Two Row and English Light Crystal\n\nHops- We use 15 Different Varieties on a strictly don't ask don't tell policy\n\nYeast- White Labs California Ale and Proprietary Yeast Strains\n\n\nOriginal Gravity- 1.086\n\nTerminal Gravity- 1.014\n\n9.7 % ABV\n\n\nDraft- Available in Southern California 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":16,"name":"Hop 15 Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":5,"address":"2800 North Reading Road","category":"British Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"This English-style ale is brewed with Marris Otter and Caramel malts for a rich, reddish-copper color and smooth malty palate. The use of bittering and aroma addition hops balances the regal, sweet maltiness and imparts a softly perfumed aroma","ibu":89,"name":"Scarlet Lady Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4,"address":"800 Vinial St.","category":"German Ale","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Authentic wheat beer, brewed in the Southern German tradition, won the Silver Medal in 1997 and the Gold Medal at the 2000 in Denver, Colorado. Penn Weizen is top-fermented, cask-conditioned, and very effervescent with a slight hint of tangy clove flavor.","ibu":76,"name":"Penn Weizen","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":3.961846461075722,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":90,"name":"Pale Ale","state":"Colorado"},{"abv":0.22860437531795674,"category":"German Lager","city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":69,"name":"Lion Lev Export Lager Beer Double Bock"},{"abv":6.21180740233335,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":10,"name":"IPA","state":"California"},{"abv":7.698880257879033,"address":"107 North Lincoln Avenue","category":"North American Ale","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":7,"name":"Red Ale","state":"Nebraska"},{"abv":10.236541062921688,"address":"519 Seabright Avenue #107","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":61,"name":"Red Nose","state":"California"},{"abv":8.75,"address":"30 Bridge St","category":"Other Style","city":"Millers Falls","country":"United States","description":"American Black Ale. Aromas of an American IPA, dark toffee and chocolate flavors without roasted bitterness.","ibu":65,"name":"Dark Element","state":"MA","website":"http://www.elementbeer.com"},{"abv":11.730270323441362,"address":"511 S. Kalamazoo Ave.","category":"British Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Number one in a series of five stouts produced to help ease you through the cold and grey midwestern winters. This beer is full bodied with hints of chocolate, roasted barley, coffee flavors and a nice creamy head.","ibu":93,"name":"One Oatmeal Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":5.6999998093,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","description":"A richer shade of Red. Summit has artfully crossed the boundaries of traditional IPA and Amber styles to create a brew all our own. Featuring an aromatic blend of Horizon, Amarillo and Cascade hops with nicely balanced malts for a flavor you’ll enjoy to the fullest.","ibu":44,"name":"Horizon Red Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.1999998093,"address":"307 Oliphant Lane","category":"North American Ale","city":"Middletown","coordinates":[41.537,-71.2796],"country":"United States","description":"The first offering from the Coastal Extreme Brewing Company blends some of the world's finest ingredients into a delightful beer. In producing our amber ale, we selected the highest quality European and American malts and hops. This ale has a malt character which is delicately balanced with its hop profile so that consumers of all levels enjoy drinking it. Hurricane Amber Ale is a full flavored beer which clearly has more taste than other domestic and imported light beers while at the same time does not overpower the drinker with heavy body or excessive bitterness. So find yourself a cold 'Hurricane' and ENJOY!","ibu":98,"name":"Newport Storm Hurricane Amber Ale","state":"Rhode Island","website":"http://www.newportstorm.com/"},{"abv":5.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Hitman Gold is an American Pale Ale. The flavor is smooth but aggressively hopped with Simcoe Hops. The beer is best described as a “mini-IPA”. The beer is inspired by the famous wrestler Bret The Hitman Hart, who also is the artist who designed and drew the logo.","ibu":50,"name":"Hitman Gold","state":"California","website":"http://www.valleybrew.com/"},{"abv":5,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Coopers Premium Lager is quite different to the famous Coopers ales. This lager produces a refreshing flavour with a good balance of malt and hop characters and is brewed using no sugar. With its subtle fruity esters and light golden colour, combined with a judicious blend of Pride of Ringwood and Saaz hops. This produces a Lager with a crisp malty full flavour.","ibu":94,"name":"Coopers Premium Lager","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Traditionally, Imperial Stouts, the biggest and boldest of all stouts, were brewed with massive amounts of roasted malts and hops, resulting in a velvety smooth but robust beer characterized by high alcohol content and extremely high hop bitterness. Meeting the challenge of this aggressive, challenging beer style, Great Divide’s Yeti Imperial Stout is an onslaught of the senses. An almost viscous, inky-black brew, Yeti opens with a massive, roasty, chocolate, coffee malt flavor that eventually gives way to rich toffee and burnt caramel notes. Packed with an enormous quantity of American hops, Yeti’s hop profile reveals a slightly citrusy, piney, and wonderfully dry hoppy finish.","ibu":80,"name":"Yeti Imperial Stout","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.1999998093,"address":"Neumarkt 1","category":"German Ale","city":"Schwelm","coordinates":[51.2847,7.2936],"country":"Germany","ibu":44,"name":"Hefe-Weizen","state":"Nordrhein-Westfalen"},{"abv":5.751276911116206,"address":"54 East Fourth Avenue","category":"North American Ale","city":"Vancouver","coordinates":[49.2673,-123.103],"country":"Canada","ibu":10,"name":"Pale Ale","state":"British Columbia"},{"abv":3.358331670441964,"address":"13450 - 102 Avenue","category":"North American Lager","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":50,"name":"Springboard Lager","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":12.641760803229204,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":106,"name":"Fire in the Hole!","state":"Nebraska"},{"abv":7.0999999046,"address":"Brauhausplatz 1","category":"Irish Ale","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":79,"name":"Porter","state":"Brandenburg"},{"abv":9.208081230985053,"address":"3015-D Hopyard Road","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":55,"name":"Golden Ale","state":"California"},{"abv":2.071460585340855,"address":"9750 Indiana Parkway","category":"British Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":3,"name":"Pride & Joy Mild Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":4.5,"address":"279 Springfield Avenue","category":"North American Ale","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":31,"name":"Yorkshire Stout","state":"New Jersey"},{"abv":6.5999999046,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":40,"name":"Chouffe-Bok","state":"Luxembourg"},{"abv":14.113421012015971,"address":"61 US Highway 1 South","category":"Irish Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":89,"name":"Gust-N-Gale Porter","state":"New Jersey"},{"abv":5,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":93,"name":"Kellerbier","state":"Bayern"},{"abv":3.5058763622420552,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":101,"name":"Amber Ale","state":"Nebraska"},{"abv":3.0700340757626665,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":53,"name":"Amber Ale","state":"California"},{"abv":7.5,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":96,"name":"Wild Brunette","state":"Minnesota"},{"abv":6.1999998093,"address":"1001 16th Street #A-100","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":19,"name":"Purple Nightie","state":"Colorado"},{"abv":4.8000001907000005,"address":"4939 Pan American Freeway NE","category":"North American Lager","city":"Albuquerque","coordinates":[35.14,-106.6],"country":"United States","ibu":76,"name":"Rye On","state":"New Mexico"},{"abv":5.921815965508821,"address":"402 Seventh Street","category":"North American Lager","city":"Glenwood Springs","coordinates":[39.5476,-107.323],"country":"United States","ibu":31,"name":"Dos Rios Vienna Lager","state":"Colorado"},{"abv":7.543376561217736,"address":"717 East Butterfield Road","category":"Irish Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":108,"name":"Palpitations Porter","state":"Illinois"},{"abv":1.6285668945880627,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":2,"name":"Old Broadway Cream Ale","state":"Wisconsin"},{"abv":7.3000001907,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A full-bodied lager beer of exuberant and robust character. It’s muscle-man body comes from decocted German malts and noble German hops. Lagered long and cold to refine its strong temperament, St. Boisterous emerges smooth and seductive, with a malty sweet charm. This classic rendition of the German ‘maibock' style will warm your heart.","ibu":60,"name":"St. Boisterous Hellerbock","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"A Tröegs Brewery classic, our Pale Ale is copper colored with generous amounts of Cascade hops to create a floral, aromatic pale ale that smells as delicious as it tastes.","ibu":46,"name":"Troegs Pale Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"175 Bloor Street East","category":"North American Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":12,"name":"Red Jack","state":"Ontario"},{"abv":3.795314587296954,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":72,"name":"Summer Nectar Wheat Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":7.5,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":4,"name":"Maximus","state":"California","website":"http://www.lagunitas.com/"},{"abv":5.3000001907,"address":"675 Merrimon Avenue","category":"North American Ale","city":"Asheville","coordinates":[35.6221,-82.5536],"country":"United States","description":"A generous portion of American hops create a crisp citrus nose combined with a light, sweet finish – a well balanced beer that destroys the paradigm of an IPA.","ibu":31,"name":"Shiva IPA","state":"North Carolina","website":"http://www.ashevillepizza.com/"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"British Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"This E.S.B. is definately the house favorite. Exclusively hopped with Fuggles, this full bodied amber ale finishes smooth and clean. 5.6% ABV","ibu":118,"name":"Brown's Point ESB","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":4.8000001907000005,"address":"491 Ontario Street","category":"North American Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Our American Pale Ale. Made with American pale malt for a brilliant straw gold color, American hops (Cascade) for a refreshing citrusy hop character, and our signature ale yeast for a clean smooth finish. Available on draft, and seasonally in our Mixed","ibu":64,"name":"Barnstormer Pale Ale","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":12,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SPECIAL COMMEMORATIVE BEER\n\n\nFormer brewer Ken Pajak teamed up with MSBC to create a very special beer to celebrate the 10 years that he and wife Shauna have owned Café Amsterdam. Since taking over this mid-town establishment, the Pajaks added a “beer & wine license” and subsequently transformed the European-style café into a beer-centric place to grab breakfast, lunch, dinner and all beers during, around and between these fabulous meals. \n\n\nThe cafe's beer menu is extensive and all-encompassing. The staff is knowledgeable and enthusiastic. And the beer pour is always right— temperature, glass, presentation. \n\n\n“No hops were harmed in the brewing of this beer.” \n\n\nGruit is an old style—one that incorporates spices, herbs and fruit but no hops. The latter detail makes this style very rare in modern times. Café Amsterdam’s Gruit is dark, strong and interesting. This combination of pale and dark malts, sage, thyme, cinnamon, black peppercorn and fresh orange peel composes distinctive, substantial flavors that meld together wonderfully. And at 12% ABV, this cellar-friendly ale is ready to lay you down! Thoroughly enjoy this old-world beer now but stash some away for later dwelvings. \n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 05/29/2009)","ibu":33,"name":"Cafe Amsterdam's 10th Anniversary Gruit","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"89 Main Street West","category":"North American Lager","city":"Saint John","coordinates":[45.2567,-66.096],"country":"Canada","ibu":112,"name":"Moosehead Lager","state":"New Brunswick"},{"abv":5,"address":"310 Perry Street","category":"German Lager","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"A classic pilsner.","ibu":42,"name":"Millennium Lager","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":4.5,"address":"2050 Yavapai Dr","category":"German Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":93,"name":"Horseshoe Hefeweizen","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.7300000191,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This tribute to St. Patrick's Day is smooth and creamy, with distinctive flavors and aromas reminiscent of bitter-sweet chocolate and dark coffee. Just one precious batch of this robust, ebony colored stout is brewed each year.","ibu":23,"name":"Sprecher Irish Stout","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":13.417413786359022,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","description":"Handcrafted with all-natural ingredients, Modelo Especial has built a solid reputation as a classic, thirst-quenching beer. The brand represents the can-package of Grupo Modelo's portfolio and is also available in non-returnable bottles.\n\n\nModelo Especial is a must for those looking to capture the flavor of Mexico. Modelo Especial has 145 calories per 12 ounce serving.","ibu":53,"name":"Modelo especial","website":"http://www.gmodelo.com.mx/"},{"abv":13.600000381000001,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"From their website:\n\n\"Have you read the description for the regular Crooked Tree yet? Well this beer is almost the same just double. We actually took the Crooked Tree recipe and doubled all of the ingredients except the water, just the way a DOUBLE should be made. Big hops balanced with tons of malt give this beer a huge body. Although this beer is as cool as \"the Fonz\" when first purchased, it gets really mellow and smooth with some age. After a year or two stored in a cool dark place you'll notice the heavy caramel and malt flavors are trying to sneak past the hops, they’re just not fast enough. This beer is hugely delicious so it will need your undivided attention (the chores can wait....trust us).\";\"0","ibu":82,"name":"Double Crooked Tree I.P.A.","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":6,"address":"1800 West Fulton Street","category":"British Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":21,"name":"Stockyard Oatmeal Stout","state":"Illinois"},{"abv":4.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A golden beer brewed with pale malts. Large American hop additions contribute a crisp refreshing bitterness. A tribute to the Great Lakes, T.C.B. is a truly quaffable beer.","ibu":4,"name":"Third Coast Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"Belgian and French Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Unfiltered Belgian Style beer is brewed with special yeast that lends a unique refreshing flavor to the beer. Brewed with Chamomile, Curacao Orange peel and Coriander to create a smooth citrus finish. Usually enjoyed with a slice of lemon.","ibu":81,"name":"Steelgaarden Wit","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":1.8993766424689706,"address":"210 Swanson Avenue","category":"German Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"70% Wheat Malt Makes This A Light & Refreshing Ale For A Hot Day!","ibu":107,"name":"Dry Heat Hefeweizen","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":4,"name":"Flemish Primitive Wild Ale (Surly Bird)","state":"Oost-Vlaanderen"},{"abv":4.3000001907,"address":"104 North Lewis Street","category":"North American Lager","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":15,"name":"Weissbier","state":"Washington"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":30,"name":"Bigfoot 2003","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.440217677340708,"category":"Irish Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":111,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":8.805982571019888,"address":"40 Bowden Square","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":25,"name":"English Pale Ale","state":"New York","website":"http://southamptonbrewery.com"},{"abv":4.144282787472898,"category":"Irish Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":27,"name":"Porcupine Porter","state":"Colorado"},{"abv":4.633546955873985,"address":"3101 North Tenaya Way","category":"North American Ale","city":"Las Vegas","coordinates":[36.2154,-115.251],"country":"United States","ibu":36,"name":"India Pale Ale","state":"Nevada"},{"abv":8.11729354163248,"address":"1300 Central Avenue","city":"McKinleyville","coordinates":[40.9491,-124.102],"country":"United States","ibu":39,"name":"Fat Bastard Barleywine (discontinued)","state":"California","website":"http://www.sixriversbrewery.com/"},{"abv":0.3888124624825484,"address":"842 East 65th Street","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":28,"name":"Extra Special Bitter","state":"Indiana"},{"abv":7,"address":"Vesterflledvej 100","category":"German Lager","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","ibu":59,"name":"47 Bryg"},{"abv":3.3046636277380648,"address":"1501 Arboretum Drive","category":"German Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":73,"name":"Winnebago Wheat","state":"Wisconsin"},{"abv":11.077627938895164,"category":"North American Lager","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":5,"name":"Golden Honey Wheat","state":"Minnesota"},{"abv":10.100000381,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","ibu":97,"name":"Boss Hog Double IPA","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":7.51117720153699,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":111,"name":"9½ Wheats","state":"Minnesota"},{"abv":5.3000001907,"address":"2401 Blake St.","category":"German Lager","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Dogtoberfest are shrouded in mystery, but scholars think it has everything to do with an insane German king and a crazed Oompah band. You can read the full historical record of Dogtoberfest at FlyingDogAles.com. Dogtoberfest is deep mahogany in color with an intriguing caramel finish and brewed with 100% imported German ingredients for a true German flavor.","ibu":40,"name":"Dogtoberfest Octoberfest","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":8.41537938866453,"address":"2151 Salvio Street","category":"German Lager","city":"Concord","coordinates":[37.978,-122.034],"country":"United States","ibu":71,"name":"Marzen","state":"California"},{"abv":5.1999998093,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Crisp light lager, slightly malty with subtle hints of wildflower honey. Finished with Hallertau and Saaz hops","ibu":43,"name":"Honey Pilsner","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":3.9155693492345502,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":4,"name":"Old Crustacean Barleywine 1993","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.8000001907000005,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This bold winter ale follows English brewing traditions, but with our California twist. Bold hops, but balanced ... It's a double IPA!","ibu":74,"name":"Racer X","state":"California","website":"http://www.bearrepublic.com/"},{"abv":1.7039175316771815,"address":"123 East Doty Street","category":"Irish Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":28,"name":"Black Earth Porter","state":"Wisconsin"},{"abv":3.456991238108167,"address":"600 East Gregory Street","city":"Pensacola","coordinates":[30.4181,-87.2024],"country":"United States","ibu":86,"name":"What the Gent on the Floor is Having 1997","state":"Florida"},{"abv":3.6111215327223944,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":67,"name":"Hopfenteufel Alt Bier","state":"Wisconsin"},{"abv":9.598139507313453,"address":"740 North Plankinton Avenue","category":"North American Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":25,"name":"Honey Creek Pale Ale","state":"Wisconsin"},{"abv":14.290734896860828,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":115,"name":"Oats and Barley Stout","state":"Wisconsin"},{"abv":13.59116412041353,"category":"North American Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":95,"name":"Weizen","state":"Nebraska"},{"abv":12.184793681905822,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":80,"name":"Aurora Amber Ale","state":"Illinois"},{"abv":5.8000001907000005,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":106,"name":"Dundee Stout","state":"New York"},{"abv":12,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"It's big and full bodied with lots of roasted malts and balanced with heavy hops to put this imperial in a league of its own.","ibu":66,"name":"Plead the 5th Imperial Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":5,"address":"600 Elmira Road","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Brewed with New York State Blueberries and Brettanomyces, Le Bleu is a blend of barrels filled in 2007, 2008, and 2009. It's finished in the bottle with Champagne yeast. \n\n\nEnjoy the dusty rose appearance, mouthwatering aroma of ripe berries, piquant flavor and quick finish.","ibu":118,"name":"LeBleu","state":"New York"},{"abv":6.5,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"This is our offering to the hop heads! A decidedly hoppy, bitter, and moderately strong American IPA. We use a generous amount of whole leaf Cascade, Centennial and Citra hops to showcase the freshness and earthy flavors that only hops can provide.","ibu":4,"name":"JoBoy's IPA","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":8,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A strong, silky smooth imperial stout with a deep, dark ruby appearance. Mocha, bitter chocolate, liquorice and dark cherry flavours prevail, before the balanced, warming and encapsulating finish.\n\n\nA contemporary Scottish take on an age old Russian classic style originally brewed for the Tsars. Our interpretation brings together hops from both sides of the Atlantic, amazing flavoured malts and dark sugars.\n\n\nLike the original BrewDog, this beer would never bite you but would much rather give you a lick on the face. Look Out!\n\n\nServing Suggestion: Enjoy with an air of aristocratic nonchalance","ibu":111,"name":"Rip Tide","website":"http://brewdog.com/"},{"abv":16,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Venus—goddess of love and beauty—exudes grace and voluptuousness. Indulgent with lush dark malts and sensuous star anise, VENUS is decadent and divine in body and spirit. Leisure lounging in French oak Cabernet Sauvignon wine casks results in a lovely liquid feast of fabulously luxurious flavors.","ibu":10,"name":"Venus - Belgian-style Quadrupel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":102,"name":"Engine 5","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"We use 100% Scottish Maris Otter Malt. Traditionally used in the distilling industry. The combination of the Scottish Malt and slow aging process produces a unique brew as distinctive as single malt whiskey with a flavor than any other beer.","ibu":80,"name":"Saranac Single Malt","state":"New York","website":"http://www.saranac.com"},{"abv":5.3000001907,"address":"357 Salmon Brook Street","category":"North American Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Our Stout is brewed with English malt, hops and oats to produce a smooth coffee-like richness with a pleasant bittersweet finish.","ibu":31,"name":"Three Steve Stout","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":9.5,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","ibu":63,"name":"Imperial Eclipse Stout","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":5.9000000954,"address":"336 Ruth Carney Drive","category":"North American Ale","city":"Windsor","coordinates":[43.513,-72.4015],"country":"United States","description":"From their site:\n\n\n\"Harpoon IPA is an interpretation of the classic English style using hops and malt grown in the United States.","ibu":105,"name":"Harpoon IPA","state":"Vermont","website":"http://www.harpoonbrewery.com/"},{"abv":4.6999998093,"address":"1 Jefferson Avenue","category":"Other Style","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":118,"name":"Leinenkugel's Berry Weiss","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":11.401517014234884,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":34,"name":"Dunkle","state":"Wisconsin"},{"abv":5.5,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Born of a flood and centuries-old Belgian text, 1554 Enlightened Black Ale uses a light lager yeast strain and dark chocolaty malts to redefine what dark beer can be. In 1997, a Fort Collins flood destroyed the original recipe our researcher, Phil Benstein, found in the library. So Phil and brewmaster, Peter Bouckaert, traveled to Belgium to retrieve this unique style lost to the ages. Their first challenge was deciphering antiquated script and outdated units of measurement, but trial and error (and many months of in-house sampling) culminated in 1554, a highly quaffable dark beer with a moderate body and mouthfeel.","ibu":16,"name":"1554 Enlightened Black Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":3.36844144504986,"address":"61 Bridge Street","category":"North American Lager","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":107,"name":"Golden Wheat Light","state":"New Jersey"},{"abv":14.38566614137682,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":40,"name":"Log Cabin Nut Brown","state":"New Jersey"},{"abv":4.9000000954,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":65,"name":"Ratskeller","state":"Niedersachsen"},{"abv":5.083091659693132,"category":"North American Ale","city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":26,"name":"Pale Ale","state":"Colorado"},{"abv":1.3732714020106074,"address":"800 East Lincoln Avenue","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":34,"name":"Bobby","state":"Colorado"},{"abv":10.5,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":24,"name":"Criminally Bad Elf","state":"Oxford"},{"abv":7.193003785353468,"address":"5417 Trumpeter Way","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","ibu":5,"name":"Crystal Ale","state":"Montana"},{"abv":2.266448683073988,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":76,"name":"Belgian Wit","state":"Nebraska"},{"abv":5.859518626645643,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":7,"name":"Fat Belly Amber","state":"Montana"},{"abv":3.2000000477,"address":"550 South Wisconsin Avenue","category":"North American Lager","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"An American-style \"light beer\". Formulated to appeal to those who prefer a lighter tasting brew.","ibu":85,"name":"Buck Naked","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"An authentic Belgian fruit flavored and spiced ale with a pronounced raspberry flavor and aroma, accented by orange peel and coriander. Clear and bright golden color with a raspberry tint.","ibu":109,"name":"Celis Raspberry","state":"Michigan","website":"http://www.michiganbrewing.com/"}] \ No newline at end of file diff --git a/backend/go.mod b/backend/go.mod index d3c80d05..ab68469f 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -3,15 +3,32 @@ module github.com/ronanzindev/backend-test-two go 1.19 require ( + github.com/gin-contrib/sse v0.1.0 // indirect + github.com/gin-gonic/gin v1.8.2 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.11.2 // indirect + github.com/goccy/go-json v0.10.0 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect github.com/jackc/pgx/v5 v5.2.0 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/joho/godotenv v1.5.1 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/leodido/go-urn v1.2.1 // indirect github.com/lib/pq v1.10.7 // indirect + github.com/mattn/go-isatty v0.0.17 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/pelletier/go-toml/v2 v2.0.6 // indirect + github.com/ugorji/go/codec v1.2.9 // indirect golang.org/x/crypto v0.6.0 // indirect + golang.org/x/net v0.6.0 // indirect + golang.org/x/sys v0.5.0 // indirect golang.org/x/text v0.7.0 // indirect + google.golang.org/protobuf v1.28.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect gorm.io/driver/postgres v1.4.7 // indirect gorm.io/gorm v1.24.5 // indirect ) diff --git a/backend/go.sum b/backend/go.sum index acb16c0e..2da33752 100644 --- a/backend/go.sum +++ b/backend/go.sum @@ -1,6 +1,21 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.8.2 h1:UzKToD9/PoFj/V4rvlKqTRKnQYyz8Sc1MJlv4JHPtvY= +github.com/gin-gonic/gin v1.8.2/go.mod h1:qw5AYuDrzRTnhvusDsrov+fDIxp9Dleuu12h8nfB398= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.11.2 h1:q3SHpufmypg+erIExEKUmsgmhDTyhcJ38oeKGACXohU= +github.com/go-playground/validator/v10 v10.11.2/go.mod h1:NieE624vt4SCTJtD87arVLvdmjPAeV8BQlHtMnw9D7s= +github.com/goccy/go-json v0.10.0 h1:mXKd9Qw4NuzShiRlOXKews24ufknHO7gx30lsDyokKA= +github.com/goccy/go-json v0.10.0/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= @@ -16,23 +31,41 @@ github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w= +github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= +github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pelletier/go-toml/v2 v2.0.6 h1:nrzqCb7j9cDFj2coyLNLaZuJTLjWjlaz6nvTvIwycIU= +github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/ugorji/go/codec v1.2.9 h1:rmenucSohSTiyL09Y+l2OCk+FrMxGMzho2+tjr5ticU= +github.com/ugorji/go/codec v1.2.9/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -47,6 +80,8 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.3.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/net v0.6.0 h1:L4ZwwTvKW9gr0ZMS1yrHD9GZhIuVjOBBnaKH+SPQK0Q= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -56,7 +91,10 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= @@ -72,11 +110,17 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gorm.io/driver/postgres v1.4.7 h1:J06jXZCNq7Pdf7LIPn8tZn9LsWjd81BRSKveKNr0ZfA= diff --git a/backend/main.go b/backend/main.go new file mode 100644 index 00000000..06ab7d0f --- /dev/null +++ b/backend/main.go @@ -0,0 +1 @@ +package main diff --git a/backend/server/routers/router.go b/backend/server/routers/router.go new file mode 100644 index 00000000..159906f1 --- /dev/null +++ b/backend/server/routers/router.go @@ -0,0 +1 @@ +package routers diff --git a/backend/server/server.go b/backend/server/server.go new file mode 100644 index 00000000..e69de29b diff --git a/backend/utils/errors/rest_error.go b/backend/utils/errors/rest_error.go new file mode 100644 index 00000000..a994819d --- /dev/null +++ b/backend/utils/errors/rest_error.go @@ -0,0 +1,25 @@ +package errors + +import "net/http" + +type RestErr struct { + Message string + Status int + Error string +} + +func NewInternalServerError(message string) *RestErr { + return &RestErr{ + Message: message, + Status: http.StatusInternalServerError, + Error: "internal_server_error", + } +} + +func NewBadRequestError(message string) *RestErr { + return &RestErr{ + Message: message, + Status: http.StatusBadRequest, + Error: "bad_request", + } +} diff --git a/backend/utils/paginate/paginate.go b/backend/utils/paginate/paginate.go new file mode 100644 index 00000000..d9d097df --- /dev/null +++ b/backend/utils/paginate/paginate.go @@ -0,0 +1,30 @@ +package paginate + +import ( + "fmt" + "strconv" + + "github.com/gin-gonic/gin" + "gorm.io/gorm" +) + +func Paginate(c *gin.Context) func(db *gorm.DB) *gorm.DB { + return func(db *gorm.DB) *gorm.DB { + page, _ := strconv.Atoi(c.Query("page")) + if page == 0 { + page = 1 + } + + pageSize, _ := strconv.Atoi(c.Query("page_size")) + switch { + case pageSize > 100: + pageSize = 100 + case pageSize <= 0: + pageSize = 10 + } + + offset := (page - 1) * pageSize + fmt.Println(offset) + return db.Offset(offset).Limit(pageSize) + } +} From d82bea536b5054dd58c6a4bdf1a89759732510da Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 20:56:22 -0300 Subject: [PATCH 04/16] Config server - Build Beer controller - implementing routes --- backend/controllers/beer_controller.go | 106 +++++++++++++++++++++++++ backend/go.mod | 1 + backend/go.sum | 19 +++++ backend/server/routers/router.go | 30 +++++++ backend/server/server.go | 23 ++++++ 5 files changed, 179 insertions(+) create mode 100644 backend/controllers/beer_controller.go diff --git a/backend/controllers/beer_controller.go b/backend/controllers/beer_controller.go new file mode 100644 index 00000000..fa065df8 --- /dev/null +++ b/backend/controllers/beer_controller.go @@ -0,0 +1,106 @@ +package controllers + +import ( + "net/http" + "strconv" + + "github.com/gin-gonic/gin" + "github.com/ronanzindev/backend-test-two/database" + "github.com/ronanzindev/backend-test-two/models" + "github.com/ronanzindev/backend-test-two/utils/errors" + "github.com/ronanzindev/backend-test-two/utils/paginate" +) + +func GetAllProducts(c *gin.Context) { + db := database.GetDataBase() + var beers []models.Beer + if err := db.Find(&beers).Error; err != nil { + productsErr := errors.NewBadRequestError("Cannot get all products") + c.JSON(productsErr.Status, productsErr) + } + c.JSON(http.StatusOK, beers) + +} + +func GetAllProductsPaginate(c *gin.Context) { + db := database.GetDataBase() + var beers []models.Beer + db.Scopes(paginate.Paginate(c)).Find(&beers) + c.JSON(200, beers) +} +func GetProductById(c *gin.Context) { + idParam := c.Param("id") + id, err := strconv.Atoi(idParam) + if err != nil { + idErr := errors.NewBadRequestError("Id must be a integer") + c.JSON(idErr.Status, idErr) + } + db := database.GetDataBase() + var beer models.Beer + err = db.First(&beer, id).Error + if err != nil { + productErr := errors.NewBadRequestError("Product not found") + c.JSON(http.StatusNotFound, productErr) + return + } + c.JSON(http.StatusOK, beer) + +} + +func CreateProduct(c *gin.Context) { + db := database.GetDataBase() + + var beer models.Beer + if err := c.ShouldBindJSON(&beer); err != nil { + c.JSON(http.StatusBadRequest, gin.H{"Error": err.Error()}) + return + } + + if err := db.Create(&beer).Error; err != nil { + c.JSON(http.StatusBadRequest, gin.H{"Error": err.Error()}) + return + } + + c.JSON(200, beer) +} + +func UpdateProduct(c *gin.Context) { + idParam := c.Param("id") + id, err := strconv.Atoi(idParam) + if err != nil { + idErr := errors.NewBadRequestError("Id must be a integer") + c.JSON(idErr.Status, idErr) + } + db := database.GetDataBase() + var beer models.Beer + err = db.First(&beer, id).Error + if err != nil { + productErr := errors.NewBadRequestError("Product not found") + c.JSON(http.StatusNotFound, productErr) + return + } + + if err := c.ShouldBindJSON(&beer); err != nil { + c.JSON(http.StatusBadRequest, gin.H{"Error": err.Error()}) + return + } + if err := db.Save(&beer).Error; err != nil { + c.JSON(http.StatusBadRequest, gin.H{"Error": err.Error()}) + return + } + c.JSON(http.StatusOK, &beer) +} + +func DeleteProduct(c *gin.Context) { + idParam := c.Param("id") + id, err := strconv.Atoi(idParam) + if err != nil { + idErr := errors.NewBadRequestError("Id must be a integer") + c.JSON(idErr.Status, idErr) + } + db := database.GetDataBase() + if err := db.Delete(&models.Beer{}, id).Error; err != nil { + c.JSON(http.StatusNotFound, gin.H{"Error": "Product not found"}) + } + c.JSON(200, nil) +} diff --git a/backend/go.mod b/backend/go.mod index ab68469f..e70e0101 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -3,6 +3,7 @@ module github.com/ronanzindev/backend-test-two go 1.19 require ( + github.com/gin-contrib/cors v1.4.0 // indirect github.com/gin-contrib/sse v0.1.0 // indirect github.com/gin-gonic/gin v1.8.2 // indirect github.com/go-playground/locales v0.14.1 // indirect diff --git a/backend/go.sum b/backend/go.sum index 2da33752..d3b9ac29 100644 --- a/backend/go.sum +++ b/backend/go.sum @@ -1,16 +1,24 @@ github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gin-contrib/cors v1.4.0 h1:oJ6gwtUl3lqV0WEIwM/LxPF1QZ5qe2lGWdY2+bz7y0g= +github.com/gin-contrib/cors v1.4.0/go.mod h1:bs9pNM0x/UsmHPBWT2xZz9ROh8xYjYkiURUfmBoMlcs= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk= github.com/gin-gonic/gin v1.8.2 h1:UzKToD9/PoFj/V4rvlKqTRKnQYyz8Sc1MJlv4JHPtvY= github.com/gin-gonic/gin v1.8.2/go.mod h1:qw5AYuDrzRTnhvusDsrov+fDIxp9Dleuu12h8nfB398= +github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs= github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= +github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA= github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= +github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos= github.com/go-playground/validator/v10 v10.11.2 h1:q3SHpufmypg+erIExEKUmsgmhDTyhcJ38oeKGACXohU= github.com/go-playground/validator/v10 v10.11.2/go.mod h1:NieE624vt4SCTJtD87arVLvdmjPAeV8BQlHtMnw9D7s= +github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/goccy/go-json v0.10.0 h1:mXKd9Qw4NuzShiRlOXKews24ufknHO7gx30lsDyokKA= github.com/goccy/go-json v0.10.0/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= @@ -43,6 +51,7 @@ github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w= github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -50,10 +59,13 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo= github.com/pelletier/go-toml/v2 v2.0.6 h1:nrzqCb7j9cDFj2coyLNLaZuJTLjWjlaz6nvTvIwycIU= github.com/pelletier/go-toml/v2 v2.0.6/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= @@ -64,11 +76,14 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M= +github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= github.com/ugorji/go/codec v1.2.9 h1:rmenucSohSTiyL09Y+l2OCk+FrMxGMzho2+tjr5ticU= github.com/ugorji/go/codec v1.2.9/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= @@ -89,6 +104,8 @@ golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -112,6 +129,7 @@ golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -122,6 +140,7 @@ gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gorm.io/driver/postgres v1.4.7 h1:J06jXZCNq7Pdf7LIPn8tZn9LsWjd81BRSKveKNr0ZfA= gorm.io/driver/postgres v1.4.7/go.mod h1:UJChCNLFKeBqQRE+HrkFUbKbq9idPXmTOk2u4Wok8S4= diff --git a/backend/server/routers/router.go b/backend/server/routers/router.go index 159906f1..d817b01c 100644 --- a/backend/server/routers/router.go +++ b/backend/server/routers/router.go @@ -1 +1,31 @@ package routers + +import ( + "time" + + "github.com/gin-contrib/cors" + "github.com/gin-gonic/gin" + "github.com/ronanzindev/backend-test-two/controllers" +) + +func ConfigRoutes(router *gin.Engine) *gin.Engine { + router.Use(cors.New(cors.Config{ + AllowAllOrigins: true, + AllowMethods: []string{"GET", "POST", "UPDATE", "DELETE", "PATCH", "PUT"}, + AllowHeaders: []string{"Content-type"}, + ExposeHeaders: []string{"Content-Length"}, + AllowCredentials: true, + MaxAge: 12 * time.Hour, + })) + + main := router.Group("api/v1") + { + main.GET("/beer", controllers.GetAllProducts) + main.GET("/beer/:id", controllers.GetProductById) + main.GET("/beers", controllers.GetAllProductsPaginate) + main.POST("/beer", controllers.CreateProduct) + main.PUT("/beer/:id", controllers.UpdateProduct) + main.DELETE("/beer/:id", controllers.DeleteProduct) + } + return router +} diff --git a/backend/server/server.go b/backend/server/server.go index e69de29b..9f960560 100644 --- a/backend/server/server.go +++ b/backend/server/server.go @@ -0,0 +1,23 @@ +package server + +import ( + "log" + + "github.com/gin-gonic/gin" + "github.com/ronanzindev/backend-test-two/server/routers" +) + +type Server struct { + port string + server *gin.Engine +} + +func NewServer() Server { + return Server{port: "5000", server: gin.Default()} +} + +func (s *Server) Run() { + router := routers.ConfigRoutes(s.server) + log.Printf("Server is running at port: %v", s.port) + log.Fatal(router.Run(":" + s.port)) +} From ac1ebe04da24bf49fd9d6badbeff36c89e776b53 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 20:58:10 -0300 Subject: [PATCH 05/16] Add .gitignore --- backend/.env | 5 ----- backend/.gitignore | 1 + db.json | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 backend/.env create mode 100644 backend/.gitignore delete mode 100644 db.json diff --git a/backend/.env b/backend/.env deleted file mode 100644 index c883387e..00000000 --- a/backend/.env +++ /dev/null @@ -1,5 +0,0 @@ -DB_USER=postgres -DB_PASSWORD=root -DB_HOST=localhost -DB_POST=5432 -DB_DATABASE=backend_beers \ No newline at end of file diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 00000000..2eea525d --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/db.json b/db.json deleted file mode 100644 index f1d864cd..00000000 --- a/db.json +++ /dev/null @@ -1 +0,0 @@ -[{"abv":8.918797384901016,"address":"141 South Main Street","category":"British Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish.","ibu":104,"name":"Stone House Stout","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":2.8163389289395333,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":34,"name":"Klisch","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":3.1895369529300677,"address":"57 South Main Street","category":"North American Ale","city":"Moab","coordinates":[38.5725,-109.551],"country":"United States","ibu":44,"name":"Chestnut Brown Ale","state":"Utah"},{"abv":9.756979587974731,"address":"Porter Tun House","city":"Luton","coordinates":[52.1357,-0.468],"country":"United Kingdom","ibu":108,"name":"Ale","state":"Bedford"},{"abv":1.6456070848030202,"category":"North American Lager","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":70,"name":"Star Big Muddy Brown","state":"Iowa"},{"abv":5.6159248164555144,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":64,"name":"Zephyr Golden Ale","state":"Illinois"},{"abv":4.9000000954,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Wildcat is a popular priced, quality lager introduced in 1993. Conventional brewing processes are used to produce a quality mainstream lager using corn adjunct to deliver a light, dry flavour.","ibu":117,"name":"Labatt Wildcat","state":"Ontario"},{"abv":12.944867817715801,"address":"128 West Main Street","city":"West Dundee","coordinates":[42.0981,-88.2783],"country":"United States","ibu":112,"name":"Belgian Wit","state":"Illinois"},{"abv":12.685915352638062,"address":"3410 Sassafras Street","category":"North American Lager","city":"Pittsburgh","coordinates":[40.4616,-79.9653],"country":"United States","ibu":9,"name":"Black Jack Black and Tan","state":"Pennsylvania"},{"abv":9.37235740947118,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":52,"name":"Sasquatch Stout","state":"Arizona"},{"abv":10,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"We brewed THE VERMONSTER with 110 pounds of malt per barrel and jacked up the pour into a wide mouth thin glass goblet. For an amazing pairing get some Smoked Gouda from Taylor Farm Cheese and a friend!","ibu":103,"name":"The Vermonster","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":5.5,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"Proper Job is an authentic IPA brewed with Cornish spring water and malt made from a blend of malts including Cornish grown Maris Otter barley.","ibu":32,"name":"Proper Job","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":6.5,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":40,"name":"Cerise","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5,"address":"Cnr Turumaha and Herbert St","category":"Other Style","city":"Greymouth","coordinates":[-42.4505,171.207],"country":"New Zealand","description":"Monteith’s Summer Ale is a refreshingly different beer. The opportunity to rediscover some flavour highlights of beer styles enjoyed on summer days past, and bring them back to life.\n\n\nAt the end of last century, in England, Europe and the Americas and in New Zealand, there was still an adherence to brew with barley, wholesome grains, hops and other traditional brewing spices.\n\n\nMonteith’s Summer Ale is a bright gold beer with great body from four different malts. Spiced with a single hop variety and a touch of history - a little Rata honey. Subtle, but enough to make all the difference. The result is a truly refreshing herbal spiced beer brewed for the Summer Season — a splendid thirst quencher.\n\n\nMonteith’s Summer Ale enjoyed ice-cold with a simple range of fruits, perhaps refreshing wedge of orange or lime. Alternatively, match with summer salads and stir-frys to complement the light flavours.","ibu":116,"name":"Monteith's Summer Ale","website":"http://www.monteiths.com/nz/"},{"abv":4.3000001907,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Dark, smooth, delicious. Aromas of worn leather and cool autumn nights. Notes of sweet plum and toasted raisin, hints of coffee and cacao. Lingering tart and refreshing finish. Only available for a few short months. Not to be missed.","ibu":5,"name":"Bam Noire","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.1999998093,"category":"Other Style","country":"United States","description":"Made for Wedding","ibu":47,"name":"MonkeyBoy Ale"},{"abv":5,"address":"910 Division St","category":"German Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"An authentic example of a Bavarian Hefeweizen. “Hefe” means cloudy or yeasty and “weizen” means wheat. This beer is made with mostly wheat and uses a true Hefeweizen yeast that gives it a fruity, banana aroma with just a hint of cloves. The tart finish makes this the perfect summer beer.\n\n\nFood pairings: Almost anything goes well with Hefeweizen but it especially shines when paired with salads and omelets.\n\n\nOG: 12.0 Plato\n\nFG: 2.3 Plato\n\nIBUs: 13\n\nSRM: 3\n\n5.0% abv","ibu":23,"name":"Hefeweizen","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":8,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Maudite has a deep amber-red color with a rocky foam head and an appealing aroma of wild spices and floral hop notes. It is spicy, vinous, and deliciously complex with a crisp hop finish.\n\n\n\nThe robust maltiness and spiciness of our\n\namber-red ale is counterbalanced by an\n\nassertive hop finish, offering a distinctive\n\nflavor that is cognac-like in complexity.","ibu":35,"name":"Maudite","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.5,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A smooth, hoppy brown ale, full-bodied with caramel and chocolate malt flavors.","ibu":52,"name":"Ipswich Nut Brown","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":10,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":29,"name":"Lozen Boer Abt","state":"Oost-Vlaanderen"},{"abv":5.8000001907000005,"address":"621 Front Street","category":"German Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":26,"name":"Hefe-Weizen","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":1.4178982019394726,"address":"430 Old Jackson Highway","category":"North American Ale","city":"Victor","coordinates":[43.5984,-111.108],"country":"United States","ibu":2,"name":"Teton Ale","state":"Idaho","website":"http://www.grandtetonbrewing.com/"},{"abv":7.1999998093,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":9,"name":"Triple Moine","state":"Namur"},{"abv":4.011485319232053,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":45,"name":"Best Bitter","state":"California"},{"abv":2.3624640801390706,"address":"Rua Bahia, 5181","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":90,"name":"Eisenbahn Dourada","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":6.475147662524558,"address":"Rua Bahia, 5181","category":"North American Ale","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":36,"name":"Eisenbahn South American Pale Ale (S.A.P.A.)","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":8,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":36,"name":"Ultrablonde","state":"Hainaut"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":102,"name":"Old Foghorn 2002","state":"California"},{"abv":10.818407193561569,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":81,"name":"Jubel 2000","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":12.570316643721585,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":117,"name":"Alpine Glacier Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.9000000954,"address":"1265 Boston Avenue","category":"British Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":89,"name":"Left Hand Milk Stout","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":12.27439340977537,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":28,"name":"Lizard Lager","state":"Wisconsin"},{"abv":4.9499998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":86,"name":"Thunder Stout","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.659461499740902,"address":"700 North Milwaukee Avenue","category":"German Lager","city":"Wheeling","coordinates":[42.1511,-87.9144],"country":"United States","ibu":31,"name":"Schaumbergfest","state":"Illinois"},{"abv":9.309362192104416,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":58,"name":"5 Czars Imperial Stout","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":11.688131621265468,"address":"1800 North Clybourn Avenue","category":"German Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":82,"name":"Aviator Doppelbock","state":"Illinois"},{"abv":4.1999998093,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors Light is Coors Brewing Company's largest-selling brand and the fourth best-selling beer in the U.S. Introduced in 1978, Coors Light has been a favorite in delivering the ultimate in cold refreshment for more than 25 years. The simple, silver-toned can caught people's attention and the brew became nicknamed the \"Silver Bullet\" as sales climbed.","ibu":60,"name":"Coors Light","state":"Colorado","website":"http://www.coors.com"},{"abv":12.470656784787575,"city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":69,"name":"Lion Lev Export Lager"},{"abv":11.499558844166305,"address":"10-1 Ginza 7-chome, Chuo-ku","category":"North American Lager","city":"Tokyo","country":"Japan","ibu":57,"name":"Draft","state":"Kanto"},{"abv":8.623752237164135,"category":"Irish Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":72,"name":"Pau Hana Porter","state":"Hawaii"},{"abv":7.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":109,"name":"9th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.469156541131191,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":50,"name":"All-American Lager (discontinued)","state":"Nebraska"},{"abv":6.8000001907000005,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":30,"name":"MoJo India Pale Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.546739490876036,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":4,"name":"Alki Ale","state":"Washington"},{"abv":4.3000001907,"address":"611 North Pine","category":"German Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":43,"name":"Hefeweizen","state":"Washington"},{"abv":5.5,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":72,"name":"Green Valley Stone Mill Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.72587297857742,"address":"Kaiser-Ludwig-Platz 1","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":51,"name":"Kloster Dunkel","state":"Bayern"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":34,"name":"Creamy Dark","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":8.1000003815,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":6,"name":"Slaapmutske Triple Nightcap","state":"Oost-Vlaanderen"},{"abv":7.868928034286774,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":4,"name":"Sod Off, Baldrick","state":"Wisconsin"},{"abv":1.9089271071513725,"address":"40 Bowden Square","category":"German Lager","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":97,"name":"Double Ice Bock","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5,"address":"6-8 Romsey Industrial Estate","category":"North American Ale","city":"Romsey","coordinates":[50.9889,-1.4989],"country":"United Kingdom","ibu":38,"name":"Pride of Romsey IPA","state":"Hampshire"},{"abv":9.608715136343228,"address":"PO Box 1068","category":"North American Ale","city":"Belize City","coordinates":[17.497700000000002,-88.1867],"country":"Belize","ibu":4,"name":"Belikin Stout"},{"abv":5,"address":"Lenniksebaan 257","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","description":"A golden hue sets off the wonderful almost champagne like taste.","ibu":19,"name":"Gueuze Cuvée René","state":"Vlaams Brabant"},{"abv":7.1999998093,"address":"Vesterflledvej 100","category":"German Lager","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","ibu":79,"name":"Elephant"},{"abv":5.797854547011877,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":67,"name":"Big Horn Nut Brown Ale","state":"Minnesota"},{"abv":7,"address":"Bergstrae 2","category":"German Lager","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":26,"name":"Doppelbock Dunkel","state":"Bayern"},{"abv":4.3265563150332,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":102,"name":"Brown Ale","state":"California"},{"abv":2.3346922148232707,"address":"800 Vinial Street","category":"German Ale","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","ibu":110,"name":"Weizen","state":"Pennsylvania"},{"abv":5.6799998283,"address":"445 St.Paul Street","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":97,"name":"Dundee Kölsch-Style Ale","state":"New York"},{"abv":8.4099998474,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"A careful blending of select barrels of Flanders Reds and soured Belgian Triples aged in oak for up to 18 months. Then blended with fresh 25° Plato Blond Quadruppel. Hand-bottled, corked and then aged allowing lactic fermentation.","ibu":21,"name":"Cascade Cuvée Du Jongleur","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":6,"address":"4607 Wedgewood Blvd.","category":"Other Style","city":"Fredrick","coordinates":[39.3628,-77.4265],"country":"United States","description":"Our Fall Seasonal, Pumpkin Patch Ale, is the perfect beer for an autumn night. Pumpkin Patch pours a hazy orange with frothy, ivory colored head. The nose immediately conjures images of Grandma baking pumpkin pie with notes of nutmeg, cinnamon and ginger. Medium body and mild carbonation yield a spicy, pumpkin flavor - from the 300 lbs. of pumpkin we use to brew this unique beer.","ibu":52,"name":"Wild Goose Pumpkin Patch","state":"Maryland","website":"http://www.wildgoosebrewery.com/"},{"abv":9.501082297009383,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":63,"name":"Liquid Amber","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":9.3000001907,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"This strong alluring ale is two beers in one. Cracking open a fresh bottle unleashes hops and heat with more than 100 IBUs emanating from three hop varieties and sweet burn of 9.3% ABV. Cellaring the Flying Mouflan in a cool dark place at 50 degrees for a minimum of four months will mellow out the hops and wash away the heat. If you can resist temptation you will be rewarded with two memorable beers in a single bottle.","ibu":107,"name":"Flying Mouflan","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":7.338322068704927,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An English pale ale brewed by Otto's for the Mount Hill Tavern in Harrisburg Pennsylvania.","ibu":88,"name":"Mount Hill Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":14.871208697122208,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This light german style Helles Lager was brewed with a small percentage of beechwood smoked malt. Light and delicate east drinking lager","ibu":21,"name":"Smoked Helles Lager","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":5.5,"address":"75-5629 Kuakini Highway","category":"North American Lager","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":102,"name":"Longboard Lager","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":8,"address":"13351 Highway 101","category":"British Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":50,"name":"Eye of the Hawk","state":"California"},{"abv":6.1999998093,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"India Pale Ales are characterized by intense hop flavor and aroma accompanied by higher alcohol content. This style possesses medium maltiness and body while also being crisp and dry. Citrus flavors and aromas are moderate to very strong.\n\n\nAlaskan IPA is honey gold in color with a fruity, citrus aroma. An enticing blend of hops and our dry hopping process, in which hops are added directly to tanks during fermentation, give this brew a very intense, complex aromatic character with a refreshing hop finish.\n\n\nAlaskan IPA is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from more than 90 inches of rainfall each year.","ibu":54,"name":"Alaskan IPA","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Gold Coast Blonde is light in malt and hops and of course, golden in color. A great choice if you’re looking for true American beer flavor with a bit more malt than a light beer has to offer.","ibu":109,"name":"Gold Coast Blonde Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.9000000954,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Ale","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Norwegian Juleøl can be traced back more that 1000 years. The \"Gulatinglov\", one of the first Norwegian laws written in the 9th century, has a chapter on brewing beer for the midwinter celebration in January. The festivities were held to celebrate the Norse Gods; Odin, Frøy and Njord as well as the \"return\" of the sun.\n\nFurthermore, the tradition was adopted by the Vikings that brought Christianity to the country between 1000 and 1100. They moved the tradition to December in connection with the birth of Jesus. \n\nIn those days a farmer that did not set aside the best crop to produce the beer could lose his house to the king and the church. The law has been changed, but we promise you that we still use the very best of malt, yeast, hops, and pure Norwegian water to produce our Christmas beer.\n\n\nAass Juleøl has won most of the Norwegian Juleøl taste test conducted over time. For those of you that know what \"lutefisk\" is, Aass Juleøl is the perfect choice of beverage to this traditional Norwegian dish.","ibu":99,"name":"Juleøl","website":"http://www.aass.no"},{"abv":0.6588370185635872,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":61,"name":"Piper Down Scottish Ale","state":"Wisconsin"},{"abv":0.7906334592682496,"city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":30,"name":"Daze Scottish Ale","state":"Colorado"},{"abv":4.477849417484469,"address":"313 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":77,"name":"Hinterland Weizen Bier","state":"Wisconsin"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":82,"name":"Harvest Ale 1997","state":"Manchester"},{"abv":5,"category":"German Lager","city":"Böcs","country":"Hungary","ibu":28,"name":"Borsodi","website":"http://www.borsodisorgyar.hu/"},{"abv":5,"address":"540 Clover Lane","category":"German Lager","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A true German-style pilsener, fermented at 43 degrees and cold lagered for eight weeks.","ibu":40,"name":"Pilsener Bier","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5,"address":"Stoopkensstraat 46","city":"Hoegaarden","coordinates":[50.7778,4.8877],"country":"Belgium","description":"Hoegaarden, both unique and very refreshing, is an authentic Belgian wheat beer. In fact, it is the original “Wit” beer! First brewed in 1445, this top-fermented beer is refermented in the bottle or keg. Hoegaarden has a distinctive, cloudy yellow colour and a uniquely refined taste that balances a slight spiciness from a touch of coriander and orange peel.","ibu":6,"name":"Original White Ale","state":"Vlaams Brabant"},{"abv":6.907981028322936,"city":"San Rafael","coordinates":[37.9735,-122.531],"country":"United States","ibu":62,"name":"Ace Fermented Honey Cider","state":"California"},{"abv":8,"address":"Innerleithen EH44 6PW","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":114,"name":"Jacobite Ale","state":"Scotland"},{"abv":7.687938380542053,"address":"1809 Larkspur Landing Circle","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":85,"name":"Hoppy Holidaze","state":"California"},{"abv":12.580475865766042,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":44,"name":"Doubledecker Doppelbock","state":"Illinois"},{"abv":9,"address":"3115 Broad Street","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Deep mahogany and malty, layered hops, figs, raisins, sugar plums, cashews betwixt rum laden truffles.","ibu":14,"name":"Noel de Calabaza","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8,"address":"2051A Stoneman Circle","category":"Belgian and French Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":70,"name":"Imperial Cherry Saison","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A Russett colored brown ale with a thinner but well defined white head, grainy aromas with a touch of caramel flavors.","ibu":28,"name":"Bavarian Dark","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"DOUBLE BROWN 6°\n\nRed brown beer with a smooth gentle aroma, a full flavour and a slightly roasted aftertaste.","ibu":16,"name":"Tongerlo Dubbel Bruin","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":4.6999998093,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This wholesome combination of unfiltered wheat beer and real pomegranate juice makes a smooth refreshing beer with all the goodness of pomegranate. Look for a light body with a slight tart finish and golden straw color.","ibu":60,"name":"Pomegranate Wheat","state":"New York","website":"http://www.saranac.com"},{"abv":4.8000001907000005,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"A traditional European Pilsner light in body and color. This brew possesses mild hoppy flavors and a crisp clean finish. It is made with traditional European hops: Hallertau and Saaz.","ibu":33,"name":"Patriots Pilsner","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":10.352955762239178,"address":"One Busch Place","category":"German Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":26,"name":"Ziegenbock Amber","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"237 Joseph Campau Street","category":"North American Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Atwater Block beers are brewed using traditional German methods to create a distinctly fresh and flavorful character. Our classic Helles (German for Pale) is a crisp lager that is sure to please.","ibu":19,"name":"Hell","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.25,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"Our flagship beer, is amber to red in color with a medium body, slight caramel sweetness, and a balance more towards malt than hops. This beer is a true crowd-pleaser and keeps you coming back for more.","ibu":116,"name":"Manheim Red","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":5.0999999046,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Peroni its unique taste which is refreshing and dry, with a clear-cut, clean character and clarity, achieved through the exclusive brewing process. This ensures that the beer has both a fresh and natural quality. \n\n\nPositioned as ‘Italian style in a bottle’, from presentation to pouring the brand, Peroni has struck a chord with modern urbanites looking for cosmopolitan class. \n\n\nhttp://www.sabmiller.in/brands_peroni.html","ibu":63,"name":"Peroni Nastro Azzurro","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6,"address":"470 Prospect Village Dr.","category":"Other Style","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"We put close to a half a pound of Colorado honey per case in this wheat ale. The honey adds a sweetness and raises the alcohol content slightly. We use Mount hood and hallertau hops.","ibu":4,"name":"Stinger Wild Honey Wheat","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":4.9000000954,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Baron Schwarzbier is a classic German black lager, deep black with ruby and brown highlights. At first the Schwarzbier starts with a slight roasty nose and taste, followed by a faint chocolate-malty body with a very crisp, clean, lagered finish. Lagered for an average of 10-12 weeks to provide a very smooth, easy drinking Schwarzbier with full flavor provided by the dark malts. \n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":52,"name":"Baron Schwarzbier","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"British Ale","city":"Grimstad","country":"Norway","description":"We usually do not make compromises, but this is probably the exception. Norwegians are dead scared of dark beers. This is an attempt to show that there are gentle dark ales. As such Havre Stout is smooth and drinkable.","ibu":98,"name":"Havre Stout","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7.3000001907,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Hades is a Belgian-style strong golden ale brewed with a rare Belgian yeast strain that gives the beer a distinctive spicy flavor and aroma. Noticeable hops and medium malt character make it an extremely well-balanced, crisp ale.","ibu":99,"name":"Hades","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.4000000954,"address":"4120 Main Street","category":"German Lager","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"In strict accordance with the German purity law of 1516, we present to you this annually brewed festbier. Traditionally brewed in March and stored deep in the caves of Germany, this beer was brought to the masses to celebrate in October. It is a Vienna-style lager with a bit more malt and hops making a malty but balanced beverage. Copper-orange in color, it sports a toasty malt backbone that wonderfully compliments itself with many of our menu items.","ibu":24,"name":"Manayunk Lager","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":6.9000000954,"address":"Abbaye de Notre-Dame d'Orval","category":"Belgian and French Ale","city":"Villers-devant-Orval","country":"Belgium","ibu":98,"name":"Orval Trappist Ale","state":"Luxembourg"},{"abv":12,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":114,"name":"Scaldis / Bush Amber 12%","state":"Hainaut"},{"abv":6,"address":"404 South Third Street","category":"Irish Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":16,"name":"Highwater Porter","state":"Washington"},{"abv":14.909208920894228,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":22,"name":"Saison","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":112,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"North American Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":118,"name":"Oatmeal Stout","website":"http://www.youngs.co.uk"},{"abv":7.5,"address":"Krommekeerstraat 21","category":"German Lager","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":35,"name":"Urthel Vlaemse Bock","state":"West-Vlaanderen"},{"abv":5.5999999046,"address":"39176 Argonaut Way","category":"German Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":71,"name":"Hefeweizen","state":"California"},{"abv":5.4000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Historically Great Divide’s flagship beer, DPA’s record speaks for itself. By continually garnering national and international recognition, DPA has risen to become one of the most award-winning English-style pale ales in the world.\n\n\nSporting a brilliant copper hue and an assertive floral hop aroma, DPA is known for its smooth, malty middle, which is expertly complemented with hearty and complex hop flavor. DPA’s extraordinary hop finish is marked by crisp yet moderate hop bitterness. Its well-balanced profile makes DPA the perfect beer to accompany a hearty mountain picnic or a night on the town. For those who seek beers characterized by excitement, flavor and distinction, Denver Pale Ale is the natural choice.","ibu":97,"name":"Denver Pale Ale / DPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":0.4091001033587405,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":70,"name":"Vanilla","state":"Iowa"},{"abv":0.028790474521532827,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":94,"name":"Schlafly Kölsch","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.5,"address":"425 South Melrose Drive","category":"North American Lager","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":33,"name":"California Gold","state":"California"},{"abv":14.664429327091181,"address":"808 West Main Street","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":117,"name":"Chocolate Mint Stout","state":"Wisconsin"},{"abv":5.5,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":97,"name":"Winterfestival","state":"Bayern"},{"abv":5.6999998093,"address":"311 Tenth Street","category":"Other Style","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"This amber-colored, naturally pumpkin flavored ale is brewed only in the autumn and combines the flavor of vine-ripened pumpkin and spices. If you're in the mood for something unique and different to go along with the change of season, autumn is the perfect time to try Blue Moonâ„¢ Pumpkin Ale. Available mid-September through December.","ibu":74,"name":"Harvest Moon Pumpkin","state":"Colorado","website":"http://www.coors.com"},{"abv":5.0999999046,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":60,"name":"Apricot Wheat","state":"California"},{"abv":4.696724066499024,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":79,"name":"Melon Head Red","state":"North Carolina"},{"abv":7.377959323870602,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":92,"name":"Brown","state":"Texas"},{"abv":2.028455403729297,"address":"PO Box 1510","category":"North American Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Golden is a crisp, clean continental lager. Just four ingredients are all it takes.","ibu":16,"name":"Abita Golden","state":"Louisiana","website":"http://www.abita.com/"},{"abv":7.0999999046,"category":"North American Ale","city":"Eugene","country":"United States","ibu":97,"name":"Watershed IPA","state":"Or"},{"abv":7.1999998093,"address":"125B Roberts St","category":"British Ale","city":"Asheville","country":"United States","description":"English Style India Pale Ale, Maris Otter 2-row, Canadian Honey Malt and Belgian Crystal.\nCentennial, Kent Golding, and Cascade are added Five times during the process, including Dry Hopping.\n\nAroma: Earthy, Citrusy, and Resinous\nTasting/Flavor: Orangy and Sugary Apricots\nFinish: Malt Sweetness Balanced by Dry Hops","ibu":73,"name":"Iron Rail IPA","state":"NC","website":"http://wedgebrewing.com/"},{"abv":6.9000000954,"address":"715 Dunn Way","category":"North American Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"75% American Red Ale, 25% Ale Aged in American Oak Barrels. A brash American Red ale, dripping with citrusy Centennial hops, mellowed by a touch of oak. Aromas of toffee, citrus, crushed herbs, vanilla and fresh sawn oak. Complex!","ibu":10,"name":"Loakal Red","state":"California","website":"http://www.thebruery.com/"},{"abv":8.1999998093,"address":"407 Radam, F200","category":"Irish Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Our first barrel project is in kegs and on it’s way to beer bars around Austin. This is a bigger, bolder version of our mainstay Pecan Porter, with a richer finish. Two months on recently emptied Jack Daniels select barrels imparted a wonderful vanilla character from the oak and a pleasant amount of whiskey nose and flavor. All in all, I’m really proud of the hard work and effort put into this beer. Our first attempt at brewing it and our first attempt at managing barrels has paid off for everyone! Seek out this beer, but don’t put it off. There is a very limited number of kegs available and it might go fast…","ibu":67,"name":"(512) Whiskey Barrel Aged Double Pecan Porter","state":"Texas","website":"http://512brewing.com/"},{"abv":8.8999996185,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":95,"name":"Stone 09.09.09 Vertical Epic Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"Irish Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"Our brown porter is brewed with eight different malts to produce a smooth, well balanced, dark beer. A specially roasted barley provides a hint of chocolate. 5.6% ABV","ibu":81,"name":"Puget Brown Porter","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":6,"address":"2 Penhall Road","category":"Irish Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","description":"Whilst we wouldn’t recommend having this at breakfast with your bacon and eggs, our Coffee Beer is made with real coffee and has a caffeine hit to match. The natural flavours of the beans selected and hand roasted by our friends at the Union Coffee Roasters go well with the roast barley in the beer to give a silky-smooth drink with distinct chocolate and vanilla notes. \n\n\nOur first formulation of this beer was the first UK brewed beer to carry the Fairtrade logo, and, although we have reformulated it to create an even better blend of malt and roast coffee flavours, we can no longer get enough coffee in each bottle to qualify for Fairtrade status. However we are still using the same Faitrade Araba Bourbon beans from Rwanda’s Abuhuzamugambi Bakawa Co-operative.\n\n\nAt the Meantime Brewing Co we love flavour, so it wasn’t exactly difficult for us to see how the scents and aromas of coffee and barley would create a perfect match like just like mint and lamb, toffee and banana, peaches and cream, peanut butter and jam. Serve lightly chilled with as many chocolate truffles as your conscience allows.\n\n\nEach serving is equal to one cup of coffee","ibu":11,"name":"Meantime Coffee","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"This beer truly defies style. A portion of the fermentable sugars that make up this beer come from beet sugar. Real beet extract is used which gives the beer a beautiful light red color. It’s body is inviting and the taste is smooth. Hops are barely perceivable and are there to balance out the sweetness from the malt.","ibu":95,"name":"Wacko","state":"Vermont","website":"http://www.magichat.net/"},{"abv":6,"address":"Broughton","category":"North American Ale","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","description":"According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Mary Queen of Scots.\n\n \n\nThis golden coloured ale is brewed with a skilful blend of organically grown hops and malt, and pure Scottish water to the exacting standards required by Soil Association Certification Ltd. of the United Kingdom.\n\n\nThe end result is a light golden coloured, clean tasting beer with an excellent hop aroma and aftertaste.\n\n\nAt 6.0% ABV a premium ale for those who know and care about what they eat and drink.\n\n\nBorder Gold has won several awards, the most recent being a bronze medal in the International Brewing Awards in Munich 2005.","ibu":52,"name":"Border Gold Oranic Ale","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":5,"address":"112 Valley Road","category":"Other Style","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Hoffmann Hefeweizen is our newest offering and is a traditional German wheat beer made from 60% wheat malt and 40% barley malt. Wheat Ales such as this typically have banana and clove flavors but as Dave dislikes clove, he used a special yeast to strengthen the banana flavors. Hefeweizen is a nice, light, crisp summer beer that can be served with lemon or flavored syrups.","ibu":8,"name":"Climax Wheat Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":6.0999999046,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"To catch a bit of soft radiance in each bottle, we wait for fall colors to begin their bright and fleeting glow before brewing this wonderful ale under their autumn fire. Gentle amber malt blend smooth caramel notes, gently lapping against a shore of distant forgotten spice. A beer to sip, contemplate and enjoy.","ibu":27,"name":"Fuego del Otono","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":5.4000000954,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Octoberfest is a med-bodied, copper colored lager. It's rich, malty taste is subtly balanced by Saaz and Tettnang hops. The beer is aged slowly in the tradition of the Octoberfest beers of Munich.","ibu":72,"name":"Saranac Octoberfest","state":"New York","website":"http://www.saranac.com"},{"abv":4.3000001907,"address":"The Goods Store, Station Road","category":"North American Ale","city":"Carlow","coordinates":[52.7196,-6.846],"country":"Ireland","description":"Unlike the image, does not have the creamy head like many Irish stouts (Beamish, Guinness, Murphys) and as a result lighter on the stomach and nice with a meal. Very distinctive taste which may put off those not accustomed to drinking stouts.I would recommend it for the more adventurous pallette.\n\n\nRoast barley comes through in the taste.","ibu":84,"name":"O'Hara's Celtic Stout","website":"http://www.carlowbrewing.com"},{"abv":3.0999999046,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A traditional dry Irish Stout. Very Flavorful while low in calories and alcohol. An easy drinking “session beer” that has a nice caramel flavor an smooth finish.","ibu":37,"name":"Stud Service Stout","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Headbangerz Brown Ale is based on an English brown ale style. Its color is a demonic, dark reddish-brown. This beer is subtly sweet and punctuated with roasty, nutty flavors. The hops take a back seat and simply complement the malt character. Headbangerz Brown Ale is perfect for any Autumn outdoor activities or for relaxing on Summer evenings. Headbangerz Brown Ale is named in honor of Barbarian Chief's, Mike Hiller, hardworking former co-workers – heavy metal freaks and masters of metal fabrication.","ibu":36,"name":"Headbangerz Brown Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":5.6999998093,"category":"North American Ale","city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":10,"name":"Red Coat Ale","state":"Pennsylvania"},{"abv":6.8000001907000005,"address":"17070 Wright Plaza","category":"North American Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":49,"name":"Double IPA","state":"Nebraska"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":46,"name":"Old Stock Ale 2004","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":1.6865198949946092,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":25,"name":"Tip Top Pale Ale","state":"Nebraska"},{"abv":9.5,"address":"9368 Cabot Drive","category":"British Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":46,"name":"Wee Heavy","state":"California","website":"http://alesmith.com/"},{"abv":8.449049743369642,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":108,"name":"Hammerhead Ale","state":"Washington"},{"abv":6,"address":"The Eagle Maltings","category":"British Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":37,"name":"Bah Humbug","state":"Oxford"},{"abv":9.5,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":117,"name":"Nostradamus","state":"Namur"},{"abv":10,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The absolute top quality in the hierarchy of the St. Bernardus beers. It is also the beer with the highest alcohol content (10.50 %).\n\nA dark ivory coloured beer with a high fermentation. \n\n\nThe show piece of the brewery. Thanks to its soft and unconditionally genuine aroma, the beer can be smoothly tasted. The Abt has a very fruity flavour.","ibu":87,"name":"Abt 12","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":6.5,"address":"17070 Wright Plaza","category":"Belgian and French Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":58,"name":"Gueuze-Lambic","state":"Nebraska"},{"abv":12.189155550625443,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":59,"name":"India Pale Ale","state":"Nebraska"},{"abv":10.232222402352823,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":118,"name":"Drop Anchor Steam","state":"Wisconsin"},{"abv":12.053108034187245,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":114,"name":"Pre-Prohibition Lager","state":"Wisconsin"},{"abv":6.5999999046,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Big American Pale Ale with citrusy aroma- a hop lover’s cult beer and Three Floyds’ flagship beer Brewed with Cenntennial, Cascade & Warrior Hops","ibu":94,"name":"Alpha King Pale Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":2.551536404314285,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":55,"name":"Pilsner of El Salvador"},{"abv":9.117045200950905,"address":"Onuma","city":"Onuma","coordinates":[43.0646,141.347],"country":"Japan","ibu":63,"name":"Kolsch","state":"Hokkaido"},{"abv":1.9519496545021342,"address":"149 Steele Street","category":"North American Ale","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":108,"name":"Alligator Ale","state":"Colorado"},{"abv":7,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"11.2oz bottle. Slightly hazy golden color with a white head. Earthy clay, light molasses, and buttered cauliflower aromas. A crisp, frothy entry leads to a dryish medium body of figs, creamy caramel, and roasted carrot flavors. This St. Martin Blonde ale finishes with dried fruit and cashew fade.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":21,"name":"Abbaye de Saint-Martin Blonde","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.1999998093,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":112,"name":"Original","state":"Bayern"},{"abv":7.5,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":12,"name":"Urthel Tonicum Finiboldhus","state":"West-Vlaanderen"},{"abv":9.3227018588805,"address":"100 Industrial Way","category":"North American Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":32,"name":"Speciale Reserve Ale","state":"Maine","website":"http://www.allagash.com/"},{"abv":14.534000762187395,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":23,"name":"Toasted Oats & Molasses Brown Ale","state":"Wisconsin"},{"abv":13.579831027624248,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":111,"name":"Snake Chaser","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":6.756318129637782,"city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":45,"name":"Mankato Gold","state":"Minnesota"},{"abv":10.028725327253165,"category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2904,-76.6122],"country":"United States","description":"An 'American Farmhouse Ale.' It's a Belgian-inspired brew that uses a combination of European malts, hops from New New Zealand and the United States.. and a classic farmhouse yeast to achieve a fruity, yet spicy, melange of flavors and aroma.","ibu":50,"name":"Stateside Saison","state":"Maryland","website":"http://www.stillwaterales.com/"},{"abv":11.899999619,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This kick ass American Barley Wine is all about hops —Nugget, Chinook, Simcoe and Centennial. And, yeah, LoTs of ‘em. OK…there’s a substantial malt base on which these juicy Pacific NW hops lie down and do their dirty work. Maybe that’s too much info…","ibu":22,"name":"Big Slick American Barleywine Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":12.264542551220469,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"It is light with a bit of a citrus flavor. A pretty standard summer seasonal.","ibu":82,"name":"Brooklyn Summer Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":5.5,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Our pale ale is located toward the lighter side of the beer spectrum and we hope it will serve as a stepping stone into the more flavorful world of craft beer. Amber, caramel, fruity, hoppy and bitter.","ibu":96,"name":"Old Nick Pale Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":10.5,"address":"1601 Airport Road","city":"Ukiah","coordinates":[39.1326,-123.201],"country":"United States","ibu":27,"name":"Talon","state":"California"},{"abv":6,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":84,"name":"XX Bitter","state":"West-Vlaanderen"},{"abv":4.6999998093,"address":"515 Jefferson Street SE","category":"North American Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":93,"name":"Blind Pig Dunkelweizen","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":0.5117116925578102,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":17,"name":"Scarlet Fire IPA","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":2.325038188343005,"address":"Hoheneggstrae 41-51","category":"German Ale","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":86,"name":"Hefe Weizen Hell","state":"Baden-Wrttemberg"},{"abv":7.886520166260076,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":14,"name":"Bräustatt Gold","state":"Bayern"},{"abv":5,"address":"Melmerby Green Road","category":"Irish Ale","city":"Melmerby","coordinates":[54.1744,-1.4844],"country":"United Kingdom","ibu":106,"name":"Nightmare","state":"North Yorkshire"},{"abv":4.8000001907000005,"address":"500 Linden Street","category":"Other Style","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"SUNSHINE WHEAT is a great beer for trouncing thirst. Yet, it has a depth of character that inspires a quiet moment’s reflection. Sunshine Wheat swirls in the mouth with ripples of coriander and orange peel tartness, settling nicely into a tranquil sea of apple and honey tones. A filtered wheat beer, Sunshine offers a crisp, refreshing alternative to heavier-bodied heffe-weizens.","ibu":24,"name":"Sunshine Wheat","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":9.024617251302796,"category":"North American Lager","city":"Cincinnati","coordinates":[39.1361,-84.5031],"country":"United States","ibu":49,"name":"Black Honey Ale","state":"Ohio"},{"abv":3.031316532648125,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":87,"name":"Northwoods Lager","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":10.07952086148865,"address":"1535 Pearl Street","category":"North American Ale","city":"Boulder","coordinates":[40.019,-105.275],"country":"United States","ibu":0,"name":"Altmans Alt","state":"Colorado"},{"abv":8.184741850182359,"category":"German Ale","city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":31,"name":"Hefeweissbier","state":"Wisconsin"},{"abv":8.071566791353588,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":39,"name":"How Now","state":"Wisconsin"},{"abv":9.8999996185,"city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":11,"name":"Olde St.Nick","state":"Wisconsin"},{"abv":11.47523934266909,"address":"4301 West Wisconsin","category":"North American Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":16,"name":"Fox Light","state":"Wisconsin"},{"abv":4.9000000954,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":25,"name":"Michelob Honey Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.6999998093,"city":"Barranquilla","coordinates":[10.9639,-74.7964],"country":"Colombia","description":"La mejor cerveza de Colombia.","ibu":110,"name":"Club Colombia","website":"http://www.bavaria.com.co"},{"abv":14.614421550502039,"address":"2380 Larsen Drive","city":"Camino","coordinates":[38.7563,-120.679],"country":"United States","ibu":113,"name":"Best Bitter Ale","state":"California"},{"abv":7.769359915192297,"address":"2323 N Milwaukee Ave","category":"North American Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"An american blonde ale with bursts of fruity aroma and a dry finish.","ibu":63,"name":"Cross of Gold","state":"Illinois","website":"http://revbrew.com/"},{"abv":9.049049823054915,"address":"4301 Leary Way NW","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":50,"name":"Moss Bay Extra","state":"Washington"},{"abv":14.14842311313343,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":102,"name":"Hornet Tail IPA","state":"Florida"},{"abv":2.433590599749974,"category":"German Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":3,"name":"Canary Wheat","state":"South Dakota"},{"abv":10,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Brewed in the style of an American Double IPA in celebration of our 10th anniversary. This beer is golden in color, has medium to full body, intense hop bitterness, flavor and aroma. Ten additions of American hops are made throughout the brewing process.","ibu":18,"name":"Tenth Anniversery Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.8000001907000005,"address":"Römermauer 3","category":"German Lager","city":"Bitburg","coordinates":[49.974,6.5227],"country":"Germany","description":"Bitburger guarantees premium quality and enjoyment. Drawing on almost 200 years of expertise, the full-bodied, light, Bitburger Premium Beer is of course brewed according to the German Purity Law. Its popular, dry-finished, hoppy taste has secured Bitburger Premium Beer position as Germany's no. 1 draught beer.\n\n\n-http://www.bitburger.com/bitburger_beers/bitburger_premium_beer/product_bitburger_premium_beer/index.html","ibu":7,"name":"Premium Beer","state":"Rheinland-Pfalz"},{"abv":6.8499999046,"address":"24 North Pleasant Street","category":"German Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Brewed for August each year to celebrate our Anniversary this strong ales maltiness is balenced by a generous amount of hops","ibu":95,"name":"Olde #8 Anniversary Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":8.261541488239274,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":71,"name":"Aspen Meadow Black and Tan","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":2.1556204438603945,"address":"4301 West Wisconsin","category":"Irish Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":117,"name":"Titan Porter","state":"Wisconsin"},{"abv":7.375304495444146,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":45,"name":"Steam Beer","state":"New Jersey"},{"abv":12.61493619496336,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":7,"name":"Bamberger Schwärzla","state":"Bayern"},{"abv":0.20863749319452674,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":44,"name":"Bitter Woman From Hell Extra IPA","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":2.378658842518523,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":42,"name":"Shawano Gold","state":"Wisconsin"},{"abv":5.464259574233069,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":2,"name":"Autumnal Fire","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":2.9655863806370197,"address":"1327 North 14th Street","category":"Irish Ale","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":54,"name":"Port Washington Old Port Porter","state":"Wisconsin"},{"abv":6.0999999046,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":3,"name":"ESB","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":14,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","ibu":23,"name":"Samichlaus Bier 2003"},{"abv":3.837419291636045,"city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":12,"name":"Gingered Ale","state":"Wisconsin"},{"abv":14.459574207198706,"address":"3832 Hillside Drive","category":"German Lager","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":34,"name":"Frühlingzeit Maibock","state":"Wisconsin"},{"abv":5.4000000954,"address":"Chiswick Lane South","category":"Irish Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":31,"name":"London Porter","state":"London","website":"http://www.fullers.co.uk/"},{"abv":3.3811417644609243,"address":"35 E. First St.","category":"North American Ale","city":"Nederland","coordinates":[39.9619,-105.51],"country":"United States","ibu":118,"name":"Mister Hoppy IPA","state":"Colorado"},{"abv":5.5199999809,"address":"2015 Afond Court","category":"North American Ale","city":"Atlanta","coordinates":[33.9089,-84.3056],"country":"United States","ibu":71,"name":"Pale Ale","state":"Georgia"},{"abv":1.3729110500127795,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":5,"name":"Our Special Ale 1995","state":"California"},{"abv":5.656560148636212,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":90,"name":"Super Natural IPA","state":"Oregon"},{"abv":1.6811327696946765,"address":"2201 Sherman Street","category":"German Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":109,"name":"Doppelbock","state":"Wisconsin"},{"abv":8,"address":"PO Box 1661","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"St. Ides High Gravity Premium Malt Liquor is the brand of choice with the new generation of malt liquor drinkers. With its high quality, high strength flavor, St. Ides compliments the lifestyle of the fast paced, urban, edgy malt liquor drinker of today.","ibu":61,"name":"St Ides","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.4000000954,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Traditional Lager is an iconic American lager famous for its rich amber color and medium-bodied flavor. Brewed with roasted caramel malt for a subtle sweetness and a combination of cluster and cascade hops, this true original promises a well balanced taste with very distinct character. Its exceptional flavor and smooth finish is prevalently enjoyed by consumers with even the most discerning tastes. Our flagship brand, Yuengling Traditional Lager is an American favorite delivering consistent quality and refreshment that never disappoints. In fact, it's so widely known and unique in its class, in some areas you can ask for it simply by the name \"Lager.\";\"0","ibu":21,"name":"Yuengling Lager","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":12.468673457427105,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":45,"name":"Schlafly IPA","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":0.17457042715080195,"address":"275 East Kawili Street","city":"Hilo","coordinates":[19.706,-155.069],"country":"United States","ibu":6,"name":"Beer","state":"Hawaii"},{"abv":10.535552127158638,"category":"North American Lager","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":57,"name":"Poi Dog Wheat","state":"Hawaii"},{"abv":4.9000000954,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"The lightest of FiftyFifty's ales, Base Camp is a thirst quenching delight. Pale straw to light gold in color, this beer has a mild malt flavor combined with light bitterness and hop flavor. This beer finishes dry and is very light and refreshing on the palate. Base Camp is a \"session beer\", meaning you can easily toss back a few in one sitting. So go ahead, pull up a chair and camp out for awhile.","ibu":37,"name":"Base Camp Golden Ale","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":8.274490433597578,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Wheaten Ale","state":"California"},{"abv":0.9117507615685061,"category":"North American Ale","city":"Olathe","coordinates":[38.8814,-94.8191],"country":"United States","ibu":57,"name":"Tornado Ale","state":"Kansas"},{"abv":7.718608767353193,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":51,"name":"Klassic","state":"California"},{"abv":11.457681133956088,"city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":115,"name":"Blacksmith Bitter Ale","state":"Illinois"},{"abv":10.066152317153131,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":5,"name":"Panther Ale","state":"Illinois"},{"abv":11.504905191185822,"address":"12 Old Charlotte Highway","category":"British Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A style of Pale Ale, Black Mountain Bitter will be lightly hopped with traditional British hop varieties to balance the malt sweetness yet encourage it to tend toward the dry side. We recently received our organic certification from Clemson University after undergoing a rigid inspection and two-month compliance process. Although this represents a big step for Highland, the idea of an all organic product is consistent with our corporate ethos and embrace of natural traditional brewing methods.","ibu":29,"name":"Black Mountain Bitter","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":5.882963736180541,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":48,"name":"HopWhore Imperial India Pale Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.1999998093,"address":"229-255 Old Melbourne Road","category":"North American Lager","city":"Little River","coordinates":[-37.968,144.525],"country":"Australia","description":"King Lager is brewed to an all Australian full strength formula in Germany, by the Giessener Brauhaus who have over 100 years of brewing knowledge. Made 100% naturally, King Lager complies with the strict German Purity Law of 1516 resulting in a superior tasting lager of world standing.\n\n\nOnly the highest quality barley malt, hops, water and yeast, have been combined to give King Lager its unique malt character and crisp, distinctive taste.\n\n\nThe sophisticated King Lager packaging reflects the quality of this exceptional, full flavoured beer. The sleek, contoured bottle, stylish 4 pack design and premium labelling makes this lager stand out amongst the best in any environment. \n\n\nKing Lager is full strength with 5.2% alc/vol, 20 beers to a case and 375ml of classic, crisp, clean beer in every bottle.\n\n\nMake your move now to King Lager – it’s world class","ibu":45,"name":"King Lager","state":"Victoria","website":"http://www.australianbrewingcorporation.com/"},{"abv":10.5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"Gulden Draak is a beer in a class of its own. It is a beer that is rich and glowing, so full of its very own characteristic flavour, that it reminds some who try it of chocolate and others of coffee. In 1998 Gulden Draak was crowned “best beer in the world” by the American Tasting Institute! This beer has won many other awards too. Gulden Draak is named for the golden statue at the top of the clock tower of the Belgian city of Gent. The statue was originally given to the city of Constantinople by the Norse King Sigrid Magnusson in 1111, during the crusades; hence the form of a Viking ship that the beast was given. During a later crusade, Boudewijn IX (Count of Flanders and Emperor of Constantinople) took it back to Flanders with him because it was so beautiful. In 1382, the cities of Brugge and Gent did battle for the statue. Gent won.","ibu":33,"name":"Gulden Draak","state":"Oost-Vlaanderen"},{"abv":14.25691335147531,"address":"6901 Konica Drive","category":"German Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Battlefield Bock is a smooth and creamy Bavarian Style Bock Lager. It is brewed with our proprietary blend of Bavarian Dark Roasted Malts giving it a distinct taste with hints of coffee and chocolate. We add Noble Czech Saaz Hops to balance the flavor of this rich full bodied lager. Battlefield Bock is slow cold aged for a minimum of 8 weeks.","ibu":49,"name":"Battlefield Bock","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":4.8000001907000005,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Half-e-Weizen (formerly Mo Ale), was inspired by, and dedicated to, Mo and Dutch Niemi, real people inspiring a real product. Mo was a restaurateur and raconteur whose clam chowder is world-famous; Dutch a leader by example for coastal fisherman. Together their spirit indelibly shapes the daily lives of the Newport, OR waterfront.\n\n\nHalf-e-Weizen is a refreshing, unfiltered fusion of wheat and Northwest Harrington malts, coriander, ginger, and Saaz hops in the Belgium style. Half-e-Weizen is available in the classic 22-ounce bottle and on draft.","ibu":117,"name":"Half-E-Weizen","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"Other Style","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Our Holiday beer is made with real pumpkins, cloves, ginger, all-spice, nutmeg and cinnamon. This light copper colored winter ale will tantalize your taste buds. Pumkin pie in a glass!","ibu":113,"name":"Pumpkin Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":1.9582597784335987,"address":"30 Germania Street","category":"German Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Unfiltered wheat ale, fruity, bright, with a crisp flavor of wheat. Samuel Adams® Hefeweizen beer is a traditional spin on a classic American craft brewing style. The brewers of Samuel Adams® used both malted and unmalted wheat, and two row Pale barley for a clean malty, cereal note. This bright, fruity wheat ale is unfiltered, retaining a natural haze from malt proteins, crisp, bright flavors of wheat, and fresh, fruity ester complexity from our proprietary ale yeast. Accentuated with Noble Spalt-Spalter hops, Samuel Adams® Hefeweizen has an elegant and pleasant bitterness, finishing smooth and clean.","ibu":111,"name":"Samuel Adams Hefeweizen","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":10.210780206959992,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":76,"name":"Summer Bright Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.1999998093,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"For those who enjoy a clean, crisp, refreshing beer this medium copper colored brew is perfect. With its low level of hop bitterness and slightly sweet flavor it is one of our lightest ales. We use the lightest grains with Kent Goldings and Liberty hops. This beer is an excellent choice for the not so brave.","ibu":110,"name":"Golden Treasure","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":6.9000000954,"address":"Heitzerstrae 2","category":"German Lager","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":31,"name":"Asam-Bock","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":5.1999998093,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":88,"name":"Ivanhoe","state":"Oxford"},{"abv":1.9565838646447564,"address":"Ellhofer Strae 2","category":"German Lager","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":72,"name":"Festbier","state":"Bayern"},{"abv":8,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":59,"name":"Super"},{"abv":14.917236952602535,"address":"701 West Glendale Avenue","category":"North American Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":5,"name":"Pale Lager","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":11.273688539230571,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":79,"name":"Premium Pilsener","state":"Bayern"},{"abv":9,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":105,"name":"Urthel Hibernius Quentum Ale","state":"West-Vlaanderen"},{"abv":7.236821895852785,"address":"1327 North 14th Street","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","description":"0","ibu":86,"name":"Triple \\\"H\\\";\"4","state":"Wisconsin"},{"abv":6.1999998093,"address":"2401 Blake St.","category":"German Lager","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","ibu":11,"name":"Heller Hound Bock Beer","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":7,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Our Islander IPA is a powerful West Coast IPA. This beer bites back with an intense hoppy zing and high alcohol content. The Islander IPA is dry hopped with tons of Centennial & Chinook hops and its fruity aroma will win your approval.","ibu":30,"name":"Island Pale Ale (IPA)","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":6.4000000954,"address":"River Street, P.O. Box 276","category":"Irish Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Benchwarmer\" is a very smooth Porter brewed in accordance with the original \"high gravity\" porters of early London. More than 4% chocolate malt, which is the most similar to the brown malts of the early 1700’s, gives \"Benchwarmer\" its dry coffee-like finish. It is fermented with the Ringwood yeast which is an excellent yeast for the brewing of porters. The widely accepted theory of how porter got its name is that it was a very popular beer among the porters who hauled produce and goods around the marketplace of early industrialized London.","ibu":32,"name":"Benchwarmer Porter","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":5.1999998093,"category":"British Ale","country":"United Kingdom","ibu":52,"name":"Wells Bombardier English Bitter","website":"http://www.bombardier.co.uk/bombardier"},{"abv":8,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This Belgian beer is brewed in the style of the Trappist Monks. Belgian Candi Sugar, Pilsen, Aromatic and Caramunich malts are balance by E. Kent Goldings, Mt. Hood and Saaz hops to construct a \"Big Beer\". Traditional White Beer Yeast is used to make this beer have a large mouth-feel and lingering spice notes in the finish.","ibu":69,"name":"Dead Monk Abbey Ale","state":"Michigan"},{"abv":4.5,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":4,"name":"Gold Rush","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":9.055212644030199,"address":"127 South Grove Avenue","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":45,"name":"Vanilla Creme Ale","state":"Illinois"},{"abv":0.8092934581835709,"category":"Other Style","city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":16,"name":"Red Raspberry","state":"Colorado"},{"abv":6.3194120936549805,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":2,"name":"Bandit IPA","state":"Iowa"},{"abv":4.9000000954,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Our light copper pale ale has a delicate malt attribute balanced by an aggressive hop flavor and aroma. Many American micros have developed their own version of this classic English style beer. Our brewers anticipate that you will enjoy their variation. \n\nHikers on the Appalachian Trail are considered \"purist hikers\" if they cover every inch of the trail during the hike. Our brewers refuse to compromise the quality of our products with the \"purist hiker\" in mind.","ibu":5,"name":"Purist Pale Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.1999998093,"address":"Tvaika iela 44","city":"Rga","country":"Latvia","ibu":102,"name":"Luksusa"},{"abv":6.8000001907000005,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Traditionally India Pale Ales, the hoppiest of all pales, were brewed with more alcohol and large quantities of hops in order to survive the lengthy ocean journey from the U.K. to India. Unlike our brewing forefathers, Great Divide enjoys the modern benefits of refrigeration and we don’t have any plans to ship Titan IPA to India. Instead, we brew Titan IPA for hop disciples – independent beer drinkers seeking out robust, flavorful beers characterized by their abundance of hops flavor, aroma and bitterness. As a big, aggressively hopped India Pale Ale, Titan IPA fills this bill – beginning with piney hop aromas and citrus hop flavors, and finishing with a rich, malty sweetness that is carefully balanced with crisp hop bitterness.","ibu":68,"name":"Titan IPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.1999998093,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","description":"OUR FLAGSHIP BEER, the one for which we're known throughout the Puget Sound. Columbus hops impart intense bitterness with flavors of grapefruit and a hint of cedar.","ibu":47,"name":"IPA","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":4.6999998093,"address":"1253 Johnston Street","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":64,"name":"Marina Light Lager","state":"British Columbia"},{"abv":11.313224681874143,"address":"Chemin des Buissons 8","city":"Saignelgier","coordinates":[47.2543,7.0026],"country":"Switzerland","ibu":62,"name":"Cuvée du 7ème"},{"abv":6.4000000954,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":66,"name":"Special London Ale","website":"http://www.youngs.co.uk"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"The latest addition to Baltimore's own Clipper City Brewing Company - Mutiny Fleet is their holiday brew Yule Tide, a Belgian style triple ale, which like the rest of the Mutiny Fleet is distributed in 22 ounce bombers.","ibu":65,"name":"Yule Tide","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.1554810823486372,"address":"551 Clair Road West","category":"North American Lager","city":"Guelph","coordinates":[43.487,-80.2068],"country":"Canada","ibu":95,"name":"Sapporo Premium Beer","state":"Ontario"},{"abv":8.3999996185,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":7,"name":"Vertical Epic 07.07.07","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":73,"name":"Michelob Ultra","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.1999998093,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","description":"DUCHESSE DE BOURGOGNE\n\nfrom Brouwerij Verhaeghe is the traditional Flemish red ale. This refreshing ale is matured in oak casks; smooth with a rich texture and interplay of passion fruit, and chocolate, and a long, dry and acidic finish. After the first and secondary fermentation, the beer goes for maturation into the oak barrels for 18 months. The final product is a blend of younger 8 months old beer with 18 months old beer. The average age of the Duchesse de Bourgogne before being bottled is 12 months.","ibu":86,"name":"Duchesse de Bourgogne","state":"West-Vlaanderen"},{"abv":9.255968450896223,"category":"North American Lager","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":74,"name":"Rock River Lager Beer","state":"Minnesota"},{"abv":12.364218055885921,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":79,"name":"Raspberry Beer","state":"Wisconsin"},{"abv":6.953508684821886,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":31,"name":"White Ale","state":"Antwerpen"},{"abv":13.490935643701793,"address":"2840 Shawano Avenue","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":73,"name":"Light","state":"Wisconsin"},{"abv":9,"category":"British Ale","city":"Waukesha","coordinates":[43.0117,-88.2315],"country":"United States","ibu":76,"name":"Nocturn","state":"Wisconsin"},{"abv":7.4000000954,"address":"Alte Akademie 2","category":"German Lager","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":91,"name":"Korbinian","state":"Bayern"},{"abv":8,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":102,"name":"Double Enghien Bruin","state":"Hainaut"},{"abv":12.266418424046732,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":49,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":5.581570020852081,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":89,"name":"Backpacker IPA","state":"Colorado"},{"abv":12.859169067783865,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":10,"name":"Jamaica Brand Sunset IPA","state":"California"},{"abv":9,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","description":"Our Seasonal Offering. We honor the Harvest & Holidays each year by brewing a traditional Barleywine style ale, using a variety of ingredients. The Label, created by local artist Janis Taylor, is a folksy woodcut based on the tale of John Barleycorn in verse.\n\n\nBrewed in small 10-barrel batches with Certified Organic barley malt, this crimson hued ale has a sweet caramel nose with a zesty spicy, citrus taste. It has a slight hop finish and leaves a warm, tingling sensation on the tongue. A great winter warmer!\n\nStarting Gravity \t1.098\n\nFinish Gravity \t1.020\n\nABV \t9.5\n\nIBU \t96\n\n\n-http://www.madriverbrewing.com/pages/brews/john_barleycorn.html","ibu":63,"name":"John Barleycorn Barleywine Style Ale","state":"California"},{"abv":9,"address":"6 Cliffe High Street","category":"North American Ale","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":29,"name":"A. LeCoq Imperial Extra Double Stout 2000","state":"East Sussex"},{"abv":14.150527778868003,"address":"117 South First Street","category":"Belgian and French Ale","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":71,"name":"Pseudo Lambic Framboise","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":8.4099998474,"address":"701 West Glendale Avenue","category":"Belgian and French Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A Belgian Trappist triple yeast culture balanced with the finest imported pale barley, Belgian aromatic malt and oats, gives this golden ale a fruity bouquet and a light refined taste.","ibu":95,"name":"Sprecher Abbey Triple","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":13.376320226417418,"category":"North American Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":44,"name":"Double Eagle Brown Ale","state":"North Carolina"},{"abv":14.727773431825891,"address":"107 North Lincoln Avenue","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":90,"name":"American Pilsner","state":"Nebraska"},{"abv":8.717049448498905,"city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":6,"name":"Hibernator Winter Ale","state":"California"},{"abv":3.75,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":40,"name":"Atlas Lager"},{"abv":6.5,"address":"PO Box 1661","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"For over 4 decades, Colt 45 Premium Malt Liquor has been the \"class of all malt liquor brands\". With its smooth and distinct flavor and historic affiliation with Billy Dee Williams, it has become an urban American icon. If you're looking for a thick 40, or an ice cold shorty, Colt 45 is the malt liquor that works EVERYTIME!","ibu":49,"name":"Colt 45","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.6999998093,"address":"2401 Blake St.","category":"German Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"In-Heat Wheat Hefeweizen\n\nShe taunts and teases... In-Heat Wheat is our German-style Hefeweizen. She is a full flavor beer, perfect for the more adventurous craft beer drinker. The addition of malted white wheat gives this brew its smooth, full mouthfeel. A proprietary yeast creates intriguing flavors of bananas and cloves.","ibu":79,"name":"In-Heat Wheat","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"Our interpretation of a West Coast IPA is golden, medium-bodied ale that is very hop forward. The use of Cascade, Chinook, Columbus, Centennial and Crystal hops makes this beer a hophead’s dream.","ibu":101,"name":"5 C's IPA","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":9.388772634370538,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":37,"name":"Pilsner (discontinued)","state":"Wisconsin"},{"abv":6.5,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":22,"name":"Rare Vos","state":"New York"},{"abv":9.3000001907,"address":"235 Grandville Avenue SW","category":"British Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"This Old Ale conjures up thoughts of classic sea fairing ports, there local pubs and the weathered fisherman that frequent them. In traditional style Curmudgeon is brewed with an intense focus on the malt bill creating a very strong, rich, malty characteristic and a sweetness indicative of its cousin the barleywine. We are especially proud of the balance in this beer making it deceptively smooth and drinkable at 9.3% alcohol by volume.","ibu":32,"name":"Curmudgeon","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":3.8499999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"\"Lone Star Light mimics its full-bodied counterpart with an award winning premium light taste. This beer retains the complimentary ratio of barley, cereal grains, and hops of its parent brand.\";\"0","ibu":81,"name":"Lone Star Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":5.6999998093,"address":"540 Clover Lane","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A red ale dry hopped with three different hop varieties.","ibu":64,"name":"Dry Hop Red","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5.5,"address":"8938 Krum Ave.","category":"German Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A coppery amber lager that showcases a full bodied, malty flavor that is balanced by a refreshing bitterness derived from fine noble hops.","ibu":103,"name":"Octoberfest Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":7,"address":"8938 Krum Ave.","category":"Other Style","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A rich and powerful beer with tart cherry appeal, make this a fine stout.","ibu":51,"name":"Bell's Cherry Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.6999998093,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Oatmeal Stout. The origins of Oatmeal Stout go back hundreds of years when oats were added to Stouts to promote a healthier image than other beers available during that time period.\n\n\nThe unique blend of the oats and malts in Alaskan Stout produce a balanced, smooth beer with hints of coffee and caramel.\n\n\nAlaskan Stout is made from glacier-fed water and a generous belnd of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the from the more than 90 inches of rainfall Juneau receives each year.","ibu":78,"name":"Alaskan Stout","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.4000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Named one of the World's Ten Best Beers by Wine Spectator Magazine, Ipswich Ale has satisfied discerning craft beer drinkers since 1991. A North Shore classic, Ipswich Ale is a medium-bodied, unfiltered English style pale ale with subtle hoppiness and a smooth malty flavor.","ibu":57,"name":"Ipswich Original Ale","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":7,"address":"21 W. Bay St.","category":"North American Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Like its namesake, this ale is known for the sneak attack. Hop-heads will enjoy its assertive bitterness and huge floral, dry hop aroma.","ibu":82,"name":"Swamp Fox IPA","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":5.800892407463141,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This was the first draught on tap in November 2001. It has developed to a very quaffable ale. the slight sweet malt flavor is balanced with East Kent Golding hops to produce this delicious reddish-amber ale.","ibu":117,"name":"Bube's Red Ale","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.8000001907000005,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A deep amber colored American ale, featuring a rich malty body. Cascade and Willamette hops add a complex hop flavor and aroma. This ale is exceptionally balanced between malty sweetness and delicate hop bitterness.\n\n\nIBU: 32\n\nAlcohol content: 5.8% by volume\n\nHops: Chinook, Willamette and Cascade\n\n\nCalories per 12 oz. 172.5\n\nCarbs per 12 oz. 17.86","ibu":26,"name":"Gaelic Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":7.1999998093,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Here ye, here ye…All hopheads shall herewith rejoice! Terrapin has recruited ye old HOPSECUTIONER to execute the exact hop profile for this killer IPA!","ibu":91,"name":"Hopsecutioner","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8.6000003815,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"This Ale is Brewed in Honor of the 40th Anniversary Release of this Album.","ibu":119,"name":"Ruben & The Jets","state":"California","website":"http://www.lagunitas.com/"},{"abv":4,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Great summer memories are born out of uncomplicated times. We've made that the basis for our summer blonde recipe and kept this ale pure and simple. Relax and enjoy this all natural, light, golden beauty; a seasonal offering from the River Horse Brewing Company.","ibu":80,"name":"Summer Blonde","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":6.75,"address":"215 1/5 Arch St.","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"Pilzilla is a beer that I've been brewing for years. Each year it gets bigger and bigger. Nicknamed \"The beer that took over Tokyo\". It is an unfiltered Keller Bier. Nicley hopped at this point with 9 different kinds of hops at 10 additions and about 6.75 % alc. Each year we will add another variety of hop and bump the alc a bit. This is listed on Beer Advocate as the highest rated Kellerbier in the world. \n\n\nBottle Conditioned and Refermented. \n\n\nThis is not your average pilsner, get it before we drink it all! Prost!!","ibu":17,"name":"PILZILLA","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":7.3000001907,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Our India Pale Ale is brewed in a California IPA style. The beer is generously hopped for bitterness with Magnum hops and finished with fresh Amarillo, Ahtanum and Cascade hops.","ibu":65,"name":"Cobra-Hood IPA","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.6999998093,"address":"165 Patchway Road","category":"Other Style","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Our Light-Bodied, Pleasantly Tart, American-Style Wheat","ibu":93,"name":"Highway 22 Wheat","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":6.5999999046,"address":"312 North Lewis Road","category":"German Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":18,"name":"Helles Bock","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.5,"address":"Douvieweg 2","category":"North American Ale","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":110,"name":"Poperings Hommel Ale","state":"West-Vlaanderen"},{"abv":5.0999999046,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":6,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":5.3000001907,"address":"Camwal Road","category":"Irish Ale","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":48,"name":"Monkey Wrench Dark Ale","state":"North Yorkshire"},{"abv":9.16967869822491,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":114,"name":"India Pale Ale (IPA)","state":"California"},{"abv":8.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A dark ale brewed specially for the Christmas season, with a rich, complex taste of caramel. This is a strong, dark and rather sweet Christmas Beer – just the way we think a Christmas beer should be.","ibu":79,"name":"God Jul - Winter Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9.3999996185,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":72,"name":"Oak Aged Ebenezer","state":"Nebraska"},{"abv":5.1999998093,"address":"Marsstrae 46-48","category":"North American Lager","city":"München","country":"Germany","ibu":93,"name":"Münchner Hell / Premium Lager","state":"Bayern"},{"abv":3.971385383557968,"address":"Indira-Ghandi-Strae 66-69","city":"Berlin","coordinates":[52.5234,13.4114],"country":"Germany","ibu":17,"name":"Original Berliner Weisse","state":"Berlin"},{"abv":8.730059075119325,"address":"57 Hamline Avenue South","category":"North American Lager","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":24,"name":"Kabeelo Lodge Lager","state":"Minnesota"},{"abv":4.4000000954,"address":"600 East Superior Street","category":"North American Lager","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":72,"name":"Lighthouse Ale","state":"Minnesota"},{"abv":8.649993007420115,"address":"905 Yakima Valley Highway","city":"Sunnyside","coordinates":[46.3284,-120.008],"country":"United States","ibu":87,"name":"Roza Reserve","state":"Washington"},{"abv":9.899948521463948,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A brown ale brewed by Otto's for KClinger's Tavern in Hanover Pennsylvania.","ibu":33,"name":"KClinger's Brown Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":5.0999999046,"address":"195 Ottley Drive","category":"North American Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"It's definitely one of the finer American Brown Ales. A deep, copper colored, mild brown ale.\n\n\nSGB is accentuated by a slight nuttiness from its malt character. Designed to be a session beer it has a real smooth finish with a subtle hop character.","ibu":49,"name":"Georgia Brown","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":14.675932395048278,"address":"2195 Old Steese Highway","category":"North American Ale","city":"Fox","coordinates":[64.9583,-147.622],"country":"United States","ibu":98,"name":"Old 55 Pale Ale","state":"Alaska","website":"http://www.ptialaska.net/~gbrady/"},{"abv":5,"address":"2423 Amber St","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"The American poet WaltWhitman once portrayed a sunset over Philadelphia as, \"...a broad tumble of clouds, with much golden haze and profusion of beaming shaft and dazzle.\" Pour yourself a bottle of Walt Wit Belgian White-Style Ale and see what he was talking about. A pinch of spice and a whisper of citrus lend complexity to this fragrant, satisfying ale.","ibu":59,"name":"Walt Wit","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":9.606580721985058,"address":"200 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":66,"name":"Dousman Street Wheat","state":"Wisconsin"},{"abv":2.196586096278934,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":58,"name":"Blonde Ale","state":"Washington","website":"http://www.redhook.com/"},{"abv":6.078885623373203,"address":"18 East 21st Street","category":"German Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":59,"name":"Hefeweizen","state":"Nebraska"},{"abv":7.341385436276603,"address":"105 Edwards Village Boulevard","category":"North American Ale","city":"Edwards","coordinates":[39.6441,-106.596],"country":"United States","ibu":39,"name":"Fly Fisher Red","state":"Colorado"},{"abv":13.772332067887593,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","ibu":91,"name":"Gunslinger Imperial Stout","state":"Arizona"},{"abv":13.935060018117733,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":95,"name":"Cow Palace Scotch Ale 2000","state":"Wisconsin"},{"abv":8.1000003815,"address":"6 Cliffe High Street","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":112,"name":"Elizabethan Ale","state":"East Sussex"},{"abv":1.9419029577839997,"address":"622 Main Street","category":"North American Ale","city":"Lafayette","coordinates":[40.4194,-86.89],"country":"United States","ibu":10,"name":"Black Angus Oatmeal Stout","state":"Indiana"},{"abv":5.915577994727322,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":88,"name":"Old Knucklehead 1992","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":0.9230549952483069,"address":"8113 Fenton St.","category":"North American Ale","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"A smooth and refreshing beer loaded with flavor. Specialty malts balanced with just the right amount of cascade hops give it a roasted taste and beautiful brown color. This drinkable brown ale easily rivals an expensive import.","ibu":82,"name":"Hook & Ladder Backdraft Brown","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":8.8000001907,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Intense and warming, a meal in a bottle.\n\nOne can not help but appreciate Samuel Adams® Double Bock's huge malt character. We use an enormous amount of malt, half a pound per bottle, to brew this intensely rich lager. Its deep brown-ruby color is all made in the kettle - no black malt is used, resulting in a rich sweetness that is free of the rough taste of burnt malt. All that remains is the velvet smooth flavor and mouthfeel of the two row malt. Samuel Adams® Double Bock's intense malt character is balanced with a subtle piney, citrus hop note from the German Noble hops.\n\n\nDue to legal restrictions, Samuel Adams® Double Bock can not be sold in the states of Alabama, Arizona, Georgia, Iowa, Louisiana, Missouri, North Carolina, Ohio, South Carolina, Tennessee, and West Virginia.","ibu":33,"name":"Samuel Adams Double Bock","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.0999999046,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"More cunning than a snake in the bush... Snake Dog India Pale Ale is a Colorado-style IPA, power hopped with specialty hops from the Pacific Northwest. This is the brewery's hop monster, and the citrus fruit aroma will hypnotize the senses of the most hardcore of craft drinkers.","ibu":71,"name":"Snake Dog IPA","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.229820031777495,"address":"999 Samsen Road","city":"Bangkok","coordinates":[13.7783,100.509],"country":"Thailand","ibu":71,"name":"Singha Gold"},{"abv":8.302821988503078,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":35,"name":"Bighorn IPA","state":"Arizona"},{"abv":4.2883704988333635,"city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":44,"name":"Spiced Ale","state":"Washington"},{"abv":5.9000000954,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":50,"name":"Dry-Hopped APA","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.6999998093,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Brilliant golden ale with an inviting citrus fragrance of late added Cascade and Glacier hops. The fine hop and light malt aromas carry through to the palate to give an ale that is full but refreshing, with a clean caramel malt bitter finish.","ibu":11,"name":"Legbiter Ale","state":"County Down","website":"http://slbc.ie/"},{"abv":0.8799376213298105,"address":"511 S. Kalamazoo Ave.","category":"British Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"This beer is made with milk sugar (lactose) which gives this beer a nice creamy mouth feel which mingles with hints of chocolate and roasty flavors.","ibu":104,"name":"Too Cream Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":10,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":119,"name":"3rd Anniversary Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":5,"address":"Industrial Area, Thessaloniki","country":"Greece","ibu":114,"name":"Mythos Hellenic Lager","state":"Sindos","website":"http://www.mythosbrewery.gr/"},{"abv":14.624624642883402,"address":"108 Cabot St.","category":"North American Ale","city":"Holyoke","coordinates":[42.2012,-72.6104],"country":"United States","ibu":112,"name":"Holyoke Dam Ale","state":"Massachusetts"},{"abv":5.0999999046,"address":"14600 East Eleven Mile Road","category":"Other Style","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This German style wheat beer contains about 50% malted wheat and is balanced with Hallertau hops. This beer finishes low in gravity so the final taste is light on the palette and extremely drinkable. This is sure to be a favorite with first time and long time wheat beer drinkers.","ibu":61,"name":"Nagelweiss","state":"Michigan"},{"abv":7.5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":20,"name":"Petrus Gouden Tripel Ale","state":"West-Vlaanderen"},{"abv":6,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":94,"name":"Framboise"},{"abv":13.024064836164838,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":105,"name":"Red Rooster Pale Ale","state":"Nebraska"},{"abv":99.989997864,"address":"Woodbastwick","category":"British Ale","city":"Norwich","coordinates":[52.6842,1.449],"country":"United Kingdom","ibu":58,"name":"Norfolk Nog Old Dark Ale","state":"Norfolk"},{"abv":14.864863691603965,"city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":95,"name":"Full Moon Barley Wine Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":7,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":85,"name":"Nora"},{"abv":7.5,"category":"German Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":108,"name":"Hefeweizen","state":"California"},{"abv":4.5,"address":"357 East Taylor Street","category":"North American Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":92,"name":"Premium Light Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":11.5,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":108,"name":"1100 Wheat Wine","state":"Minnesota"},{"abv":5.25,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light brown medium bodied ale. Smooth, malty and slightly roasted flavor.","ibu":54,"name":"Massatucky Brown","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":9,"address":"1933 Davis Street #177","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":61,"name":"Jolly Roger","state":"California","website":"http://drinkdrakes.com/"},{"abv":5.23309168498991,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":17,"name":"Nut Brown","state":"Illinois"},{"abv":5,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":24,"name":"Traditional Ale","state":"Alberta"},{"abv":3.713633853011089,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":71,"name":"Adler Bräu 1848 Lager","state":"Wisconsin"},{"abv":5.6999998093,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"The first thing you notice when pouring a glass of this seasonal beer is the color. Samuel Adams® Octoberfest has a rich, deep golden amber hue which itself is reflective of the season. Samuel Adams® Octoberfest is a malt lover's dream, masterfully blending together five roasts of barley to create a delicious harmony of sweet flavors including caramel and toffee. The beer is kept from being overly sweet by the elegant bitterness imparted by the German Noble hops. Samuel Adams® Octoberfest provides a wonderful transition from the lighter beers of summer to the winter's heartier brews.","ibu":50,"name":"Samuel Adams OctoberFest","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6,"address":"Rue de Maredsous, 11","category":"North American Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Blonde Ales are one of the fastest growing beer styles in Belgium, France and the UK. Moorgat's Maredsous 6 is an easy drinking Blonde with a balance of graininess and aromatic hop.","ibu":64,"name":"6","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":12.218590030835196,"address":"50 East Washington Street","category":"German Lager","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":70,"name":"Spring Bock","state":"California"},{"abv":1.8159466426504844,"category":"Irish Ale","city":"Emeryville","coordinates":[37.8313,-122.285],"country":"United States","ibu":25,"name":"Porter","state":"California"},{"abv":12.541738334510198,"address":"2195 Old Steese Highway","category":"North American Ale","city":"Fox","coordinates":[64.9583,-147.622],"country":"United States","ibu":78,"name":"Anchorage Ale","state":"Alaska","website":"http://www.ptialaska.net/~gbrady/"},{"abv":9.923883055396326,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":101,"name":"Old Crustacean Barleywine 1996","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.387348349051262,"address":"2001 Second Street","category":"German Lager","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":25,"name":"Märzen","state":"California"},{"abv":6.5,"address":"2944 SE Powell Blvd","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Secession is a Black IPA, or Cacadian Dark Ale. This emerging beer style is characterized by an alliance of North-west hop flavors as formidable as the Cascade Mountain Range and roasted malts as dark as a moonless night. Join the party and uncap a revolution!","ibu":100,"name":"Secession Black India Pale Ale (CDA)","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7.5999999046,"category":"Belgian and French Ale","country":"Belgium","description":"Tournay Black is a bottle conditioned, Belgian stout brewed by Brasserie de Cazeau which is a farm-brewery located in the south of Belgium. It was originally brewed as a winter ale under the name Tournay de Noel, but later became a year-round release. They didn't provide much specific detail about how it was brewed except to say that it is made with water, malts, candi-sugar, hops, and yeast. It is 7.6% ABV with a recommended drinking temperature of +/- 50 degrees. The brewer states that the tasting notes are of, \"roasted malts, coffee, bitter chocolate, earth, and cigar ash.\" Well, I am a prodigious cigar smoker and I can't say that I would want to consume the ash.","ibu":101,"name":"Tournay Black"},{"abv":5.0999999046,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Peroni Nastro Azzurro is an intensely crisp and refreshing lager beer, with\n\nan unmistakable touch of Italian style\n\nhttp://www.sabmiller.in/brands_peroni.html\n\nPeroni Beer, Peroni Lager Beer, Peroni Nastro Azzurro Bee","ibu":33,"name":"Peroni","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":8,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our Summer seasonal, Trade Winds Tripel is a Belgian-style Golden Ale with a Southeast Asian twist. Instead of using candi sugar (typical for such a beer), we use rice in the mash to lighten the body and increase the gravity, and spice with Thai Basil. The result is an aromatic, digestible and complex beer made for a lazy summer evening.","ibu":89,"name":"Trade Winds Tripel","state":"California","website":"http://www.thebruery.com/"},{"abv":8,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"As the days grow shorter and frost becomes snow, our Belgian Freeze winter ale is the perfect remedy to loosen the spirits. This deep amber tonic is brewed with lots of roasted caramel malt for body and warmth to bring in the holidays and see you through the spring.","ibu":112,"name":"Belgian Freeze Winter Ale","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","description":"Building on a classic English style and adding some uniquely Northwest touches, Bhagwan's Best has developed fiercely loyal following wherever it is served. Bursting with local hop flavor, bitterness, and aroma, it is a particular treat when served dry-hopped and cask-conditioned on Big Time's beer engine. O.G. 16 Plato (1.064), alcohol is approximately 5% by weight.","ibu":8,"name":"Bhagwan's Best IPA","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":5.5,"address":"4519 W. Pine Street","category":"North American Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"Duck-Rabbit Amber Ale is a medium bodied beer with a lovely tawny copper or bronze color. This brew emphasizes malt complexity with layered caramel malt flavors. We put a lot of effort into getting this amber ale just right and we're extremely proud of the result!","ibu":3,"name":"Duck-Rabbit Amber Ale","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":2.0242296533585966,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":45,"name":"Capital Rustic Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":4.9000000954,"address":"Tbinger Strae 46","category":"German Lager","city":"Stuttgart","country":"Germany","ibu":5,"name":"CD-Pils","state":"Baden-Wrttemberg"},{"abv":6,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Crafted from the finest ingredients and originally intended for the cask-ale connoisseur, Extra Special Ale is a robust and hearty amber ale with a malt body and aromatic hop finish.","ibu":77,"name":"Yards Extra Special Ale","state":"Pennsylvania"},{"abv":5.5,"address":"91 S Royal Brougham Way","category":"Other Style","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Amber Weizen is left unfiltered for extra flavor and aroma. \n\n\nRich amber in color, Pyramid Amber Weizen features three different kinds of caramel barley malts and nugget hops resulting in an exceptionally smooth and well-balanced beer that follows in the tradition of our flagship style, Pyramid Hefe Weizen.","ibu":62,"name":"Pyramid Amber Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":6.721641974879265,"address":"1321 Celebrity Circle","category":"Other Style","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This brew combines the mild, tartness of a wheat beer with the flavor of real raspberries. The raspberry flavor is not overpowering. It has a wonderful berry aroma, and is a favorite even among those who claim to \"not like beer\".","ibu":38,"name":"Liberty Raspberry Wheat Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5,"address":"701 S. 50th Street","category":"Other Style","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A smooth refreshing American Wheat Ale brewed with fresh ginger. This Summer Session is much more exciting than the one you had to sit through in high school.","ibu":31,"name":"Summer Session","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":6.4000000954,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"This beer will surprise you with a big hop flavor and a toasty sweet aroma. Pours black from the chocolate and de-bitterized black rye malts. This ale is medium bodied and is well flavored with hints of toffee, nutty undertones and a dry crisp finish.","ibu":97,"name":"Founders Black Rye","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.1999998093,"address":"15 Knox Rd.","city":"Bar Harbor","coordinates":[44.3996,-68.334],"country":"United States","description":"A good, clean nutbrown ale with a malty body. This is our most popular ale due to its smooth and malty flavor.\n\n\nWe use a mixture of pale, crystal and black malts in this one, and our primary hop is Target, though we also add some Whitbread Goldings Variation as well.\n\n\nThe Real Ale is best fresh, so fresh in fact, that it's great right out of the bright tank.","ibu":15,"name":"Bar Harbor Real Ale","state":"Maine","website":"http://www.atlanticbrewing.com"},{"abv":8.8000001907,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"An amazing treat for hops lovers.\n\n\nSamuel Adams Hallertau Imperial Pilsner is a celebration of the extraordinary Hallertau Mittelfrueh hop variety. This rare Noble Bavarian hop, considered to be one of the best in the world, is prized for its quality and aromatic characteristics.\n\n\nThe beer, which is a deep golden color with a rich, creamy head, gives off an intense and complex Noble hop aroma unlike any other brew. With the first sip, beer enthusiasts will experience an explosion of hop flavor. The intensity of deep citrus, spicy Noble hop flavor is balanced with the slight sweetness from the malt. Due to the quality of the hops, this beer remains balanced and smoothly drinkable from beginning to end. The lingering \"hop signature\" is an amazing treat for hops lovers.","ibu":90,"name":"Samuel Adams Hallertau Imperial Pilsner","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.762926087738872,"address":"29 Laurier Ouest","city":"Montréal","coordinates":[45.5228,-73.5928],"country":"Canada","ibu":79,"name":"Péché Mortel","state":"Quebec","website":"http://www.dieuduciel.com/"},{"abv":7,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":30,"name":"Andelot Angelique","state":"Oost-Vlaanderen"},{"abv":7.4964334712610095,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":35,"name":"Old Crustacean Barleywine 2005","state":"Oregon","website":"http://www.rogue.com"},{"abv":1.1137903325035525,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":104,"name":"Jolly Roger","state":"Washington"},{"abv":6.5,"address":"7160 Oliver Street","category":"North American Ale","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":92,"name":"Oatmeal Stout","state":"British Columbia"},{"abv":14.55312928799923,"address":"871 Beatty Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":114,"name":"IPA","state":"British Columbia"},{"abv":3.7999999523,"address":"Hillfoots Business Village","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":109,"name":"Bitter and Twisted","state":"Scotland"},{"abv":9.14959111563347,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":31,"name":"Pale Ale","state":"California"},{"abv":4.6999998093,"address":"St Peter's Hall","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":116,"name":"Golden Ale","state":"Suffolk"},{"abv":0.4925686386221817,"address":"2029 Old Peshtigo Road","category":"German Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":78,"name":"Stout (discontinued)","state":"Wisconsin"},{"abv":11.536189652956635,"address":"Burg. van den Heuvelstraat 35","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":10,"name":"Holland Beer"},{"abv":4.54739762806026,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":72,"name":"Premier"},{"abv":0.3975934411617077,"category":"North American Ale","city":"Oak Bluffs","coordinates":[41.4548,-70.565],"country":"United States","ibu":10,"name":"Extra Stout","state":"Massachusetts"},{"abv":10,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":59,"name":"Abbot Pennings Grand Cru","state":"Wisconsin"},{"abv":2.743711512045892,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":105,"name":"Fox Tail Amber Ale","state":"Wisconsin"},{"abv":2.073496291180983,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":17,"name":"Stone of Scone Scotch Ale","state":"Wisconsin"},{"abv":9.21339054337465,"address":"299 Main Street","category":"North American Lager","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":96,"name":"Laughing Ass","state":"Iowa"},{"abv":14.244746949324846,"address":"The Cider Mills","city":"Hereford","coordinates":[42.2626,-71.8023],"country":"United Kingdom","ibu":67,"name":"Woodpecker","state":"Hereford and Worcester"},{"abv":5.5999999046,"address":"15 South Orange Avenue","category":"German Lager","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":110,"name":"Harvest Ale","state":"New Jersey"},{"abv":14.216361452224461,"address":"Durmakker 23","city":"Evergem","coordinates":[51.1007,3.6934],"country":"Belgium","ibu":71,"name":"Bière du Boucanier","state":"Oost-Vlaanderen"},{"abv":6.8000001907000005,"address":"14 Wickliffe Street","city":"Dunedin","coordinates":[-45.872,170.518],"country":"New Zealand","ibu":80,"name":"Taieri George"},{"abv":8.1000003815,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":62,"name":"Mocha Joe","state":"California"},{"abv":10.891389056699373,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":2,"name":"Special Ale","state":"Pennsylvania"},{"abv":14.298671073394374,"category":"North American Ale","city":"Moultonborough","coordinates":[43.7548,-71.3967],"country":"United States","ibu":15,"name":"Lucknow India Pale Ale","state":"New Hampshire"},{"abv":12.515937080610215,"address":"729 Q Street","category":"German Lager","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":55,"name":"Empyrean Oktoberfest","state":"Nebraska"},{"abv":2.8086248106910094,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":20,"name":"Hex Nut Brown Ale","state":"Illinois"},{"abv":14.857785174573472,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":48,"name":"Smooth Oatmeal Stout","state":"Illinois"},{"abv":14.000725942847186,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":45,"name":"Red","state":"Indiana"},{"abv":8.275032208307403,"address":"2400 State Highway 69","category":"Other Style","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":7,"name":"Apple Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":7.849573931962274,"city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":105,"name":"Barbary Coast Brand Gold Rush Style Beer","state":"Minnesota"},{"abv":14.349653182583646,"category":"North American Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":91,"name":"Nut Brown","state":"Wisconsin"},{"abv":9.3000001907,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Merry Monks' Ale is a Belgian style Abby Trippel without limitation. This style was created by Trappist Monks in Belgium over 500 years ago. To be true to the style, Merry Monks' Ale is bottle conditioned. This means we add a bit of sugar and yeast just prior to bottling. This imparts a special effervescence to the beer, a creamier carbonation, and also extends the shelf life. The on-going fermentation inside the bottle will change the character of the beer as it ages, and you'll find it becomes dryer with age. You may want to lay down a few bottles for future evaluation. We suggest storing at cellar temperatures -around 55 degrees F- and away from light.\n\n\nWhen you try this beer you're in for a unique treat. The special effervescence and creaminess are immediately apparent when pouring. The Pilsner malts combined with the Belgian yeast strains yield a remarkable and complex flavor- perhaps you'll note subtle hints of fruit or spice. The flavor is nicely balanced and the finish moderate to dry , begging for the next sip.\n\n\nYou might ask why we go through all this trouble and expense for just a beer, but one taste and you'll know the Merry Monks' Ale (9.3% ABV) will more than complement any meal it accompanies. Enjoyed best around 48 degrees F, it also makes a fine after-dinner drink.","ibu":31,"name":"Merry Monks","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5,"address":"150 Simcoe Street","category":"North American Ale","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"John and Hugh Labatt, grandsons of founder John K. Labatt, launched Labatt 50 in 1950 to commemorate 50 years of partnership. The first light-tasting ale introduced in Canada, Labatt 50 was Canada’s best-selling beer until 1979 when, with the increasing popularity of lagers, it was surpassed by Labatt Blue. Labatt 50 is fermented using a special ale yeast, in use at Labatt since 1933. Specially-selected North American hops and a good balance of dryness, complemented by a fruity taste, provide Labatt 50 with all the distinguishing features of a true ale.","ibu":81,"name":"Labatt 50","state":"Ontario"},{"abv":5.5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Extra Dry was the first national launch of a dry beer in Canada. Labatt Extra Dry is mashed longer than regular beers to leave less carbohydrate in the finished product, giving a lighter flavour with little aftertaste.","ibu":79,"name":"Labatt Extra Dry","state":"Ontario"},{"abv":3.742244629553928,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":54,"name":"Albino Rhino (discontinued)","state":"Alberta"},{"abv":12.258593476060717,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":84,"name":"Bock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":1.4010005733408004,"category":"North American Lager","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Haymarket Pilsner","state":"Illinois"},{"abv":9.700650654735973,"category":"North American Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":87,"name":"Golden Hawk Wheat Beer","state":"Iowa"},{"abv":10,"address":"600 Brea Mall","category":"Belgian and French Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":53,"name":"BJ's Annual Grand Cru","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5,"address":"196 Alps Road","category":"Other Style","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Terrapin Beer Company was started by two guys who love big, bold beers. We are known for using a ton of flavorful ingredients and for pushing the envelope with the brews we create.\n\n\nWe have also been known to take pleasure in hiking, biking, kayaking, and just plain having fun in the great outdoors. When we get hot and sweaty even hopheads like us want nothing more than to enjoy a beer that is crisp and refreshing.\n\n\nWhich is why we created the perfect session beer – the Terrapin Golden Ale.","ibu":59,"name":"Terrapin Golden Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A commemorative brew styled after the Sebewaing Brewing Company's signature beer. The Sebewaing Brewing Company brewed from 1880 until 1965. This brew was commissioned for the town of Sebewaing's 150th anniversary celebration.","ibu":95,"name":"Sebewaing Beer","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7,"address":"pastoor de katerstraat 24","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"copper -coloured complex tasting ale with a soft smokey taste combined with some caramel-malt to give it a long lasting chocolate-like aftertaste","ibu":30,"name":"Bravoure","website":"http://www.dedochtervandekorenaar.be"},{"abv":8.5,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"As spring emerges, Golden Fleece Maibock captures center stage. This fine lager is a pleasurable reward for enduring the doldrums of Erie Pennsylvania’s harsh Lake-Effect ice and snowstorms. Celebrate the transition into spring! Golden Fleece Maibock’s deep golden color leads into a sweet malty flavor with a light hop finish. Maibock says, “RAM IT” to winter with 8.5% alcohol by volume – just enough to take the chill off your day.","ibu":119,"name":"Golden Fleece Maibock","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Brown Ale is brewed with American malt and hops, and traditional ale yeast. Look for a sweet, chocolaty taste, with balanced bitterness resulting in a full flavored but smoothly drinkable beer.","ibu":23,"name":"Saranac Brown Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.25,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light gold in color, slightly malty and hoppy, with a mild flowery hop finish.","ibu":17,"name":"North Pleasant Pale Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":20,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A bigger, bolder version of our Raison D'Etre.\n\n\nThis is a bulbous, brown ale brewed with a bunch of malt, brown sugar and raisins.\n\n\nIn case you care... the average 12 oz. serving has approximately 425 calories.","ibu":88,"name":"Raison D'Extra","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.1999998093,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","ibu":64,"name":"Keystone Light","state":"Colorado","website":"http://www.coors.com"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","description":"Often called “mild” if it is on draft, brown ale is a walnut-colored specialty of the North of England. A festive-occasion beer, brown ale is one of the oldest English brewing styles, mentioned in literature in the 16th century. Beers brewed at the old brewery have a round, nutty flavor because of the Yorkshire square system of fermentation.","ibu":47,"name":"Nut Brown Ale","state":"North Yorkshire"},{"abv":6.044219746650433,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":82,"name":"Luna Sea Amber","state":"Nebraska"},{"abv":1.6131293200332741,"address":"1525 St. Charles Avenue","category":"North American Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":23,"name":"Category 5 Strong Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":6.001928446739555,"address":"Dobroovsk 130","category":"German Lager","city":"Nchod","country":"Czech Republic","ibu":101,"name":"Primátor Blonde Bock Beer"},{"abv":6.6999998093,"address":"803 SE School Street","category":"North American Ale","city":"Enterprise","coordinates":[45.419200000000004,-117.272],"country":"United States","ibu":106,"name":"IPA","state":"Oregon"},{"abv":5.4000000954,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"A rich, malty beer made with classic American hops for a full and complex flavor. Very smooth in aroma and palate. The caramel overtones leave a nice finish.","ibu":25,"name":"Calico Jack Amber Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":3.421965103643748,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":71,"name":"Kristall Weizen","state":"Baden-Wrttemberg"},{"abv":6.615493837564389,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":3,"name":"Kristall-Weizen","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":11,"name":"Dunkel"},{"abv":5.1999998093,"address":"One Busch Place","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":77,"name":"Spring Heat Spiced Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":66,"name":"White Christmas","state":"California","website":"http://www.moylans.com/"},{"abv":9.25,"address":"925 Cherry Street SE","category":"Belgian and French Ale","city":"Grand Rapids","country":"United States","description":"A classic golden ale, with subtle esters of banana and bubblegum. This beer pours with a creamy head and ends with a sweetness of light Belgian candi sugars. Our brewmaster aged this ale for an extended period to round out the flavors. A great traditional Belgian brew.","ibu":39,"name":"Vivant Tripel","state":"MI","website":"http://breweryvivant.com"},{"abv":4.1999998093,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"This is a light bodied mildly hoppy ale brewed with a 2-row malted barley, Crystal, and a special Vienna malted barley. Golding and Cascade hops are used to provide the balanced palate for this fine session beer. 4.2% ABV","ibu":53,"name":"Pinnacle Peak Pale Ale","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":5.6999998093,"address":"715 Dunn Way","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or “black wit”, if you will. This dark but surprisingly light bodied beer is very drinkable while still having character and complexity. Chamomile is added for its floral aroma, while the coriander and citrus peel give the characteristics of a traditional witbier.","ibu":25,"name":"Black Orchard","state":"California","website":"http://www.thebruery.com/"},{"abv":11,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"A Jahva-Choklat hybrid.","ibu":95,"name":"Imperial Mokah Blended Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.5,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"The copper-colored body and generous foam\n\nhead of this amber ale tantalize the eyes but\n\nit's the complex flavor of Seigneuriale that\n\ndelivers a pleasant surprise. It is slightly\n\nsweet, malty and spicy, but a distinctive hop\n\ncharacter and notes of apricot brandy give\n\nSeigneuriale a truly unique character. \n\n\nWe recommending pairing it with carved ham,\n\napricot-glazed duck or squab, Thai shrimp\n\ncurry or a holiday fruit cake.","ibu":42,"name":"Seigneuriale","state":"Quebec","website":"http://www.unibroue.com"},{"abv":6.129277793612528,"category":"North American Ale","city":"Portland","coordinates":[43.6615,-70.2553],"country":"United States","description":"Below-average but drinkable IPA, cheaply priced (~$1/bottle), and available at Trader Joe's.","ibu":78,"name":"Kennebunkport IPA","state":"Maine"},{"abv":6.3000001907,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Our IPA is an unfiltered cross between an English and American IPA, with a strong, dry bitterness balanced with a slight malty sweetness. A mixture of first-rate U.S. and Belgian malts, combined with English roasted barley and highly hopped with Cascade and Warrior hops make our IPA a brewery favorite.","ibu":12,"name":"Ipswich IPA","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":8.893050797145227,"address":"2605 South Stoughton Road","category":"North American Ale","city":"Madison","coordinates":[43.0598,-89.3085],"country":"United States","ibu":115,"name":"Altbier","state":"Wisconsin"},{"abv":7.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":50,"name":"Ruination IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":7.5,"address":"Bridge Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":2,"name":"Empire India Pale Ale","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":4.4000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":119,"name":"Levitation Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9.815983422846571,"address":"980 NE Fourth Street","category":"Irish Ale","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":70,"name":"Dundee Porter","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":11.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":77,"name":"Doggie Claws 2004","state":"Oregon"},{"abv":5.759617683511641,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":51,"name":"Adler Bräu Holiday Ale","state":"Wisconsin"},{"abv":4.8460281646085415,"category":"North American Lager","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":37,"name":"Lighthouse Amber Lager","state":"Wisconsin"},{"abv":1.9276779538211763,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":101,"name":"Symposium Eisbock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.880819185950267,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":31,"name":"Stonehenge Stout","state":"Colorado"},{"abv":9.399919173911911,"address":"149 Steele Street","category":"North American Ale","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":77,"name":"Thoroughbred Red","state":"Colorado"},{"abv":4.9000000954,"address":"2522 Fairway Park Drive","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A true German-style Kölsch. Originally brewed in Cologne, this beer is light yet has a sweet malty body that is balanced by a complex, citrus hop character. Multiple additions of German Hallertauer hops are used to achieve this delicate flavor. We use a special Kölsch yeast, an ale yeast that ferments at lager temperatures, to yield the slightly fruity, clean flavor of this beer. Fancy Lawnmower Beer is a world class brew yet light enough to be enjoyed by Texans after strenuous activities, like mowing the lawn.\n\n\nSaint Arnold Fancy Lawnmower Beer is best consumed at 35-45° Fahrenheit.","ibu":41,"name":"Fancy Lawnmower Beer","state":"Texas","website":"http://www.saintarnold.com"},{"abv":9.971728073708054,"address":"895 Bolger Court","category":"North American Lager","city":"Fenton","coordinates":[38.5405,-90.4607],"country":"United States","ibu":55,"name":"Beer","state":"Missouri"},{"abv":4.0999999046,"address":"639 Conner Street","category":"Irish Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":23,"name":"Rust Belt Porter","state":"Indiana"},{"abv":9.156259217982214,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":108,"name":"Schlafly Hefeweizen","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":0.6350934478017867,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":49,"name":"Stout","state":"South Carolina"},{"abv":5.0999999046,"address":"4120 Main Street","category":"British Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"A true English session ale brewed in the pale ale style using ye olde techniques of yesteryear. Specially crafted to inspire you and your thirstiest mates barstool conversations. Light copper in colour. This pint is quite malty with just enough East Kent hops for a nice, earthy hoppiness. Naturally cask conditioned, this may be served a little cold for a true Brit but is a \n\ncomplimentary double nod to one of the 1st beer styles. Cheers mate!","ibu":64,"name":"Brilliant Barstool","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":9.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":78,"name":"Avec Les Bons Voeux","state":"Hainaut"},{"abv":8,"address":"Brusselse Steenweg 282","city":"Melle","country":"Belgium","ibu":3,"name":"Duinen Dubbel","state":"Oost-Vlaanderen"},{"abv":13.252218666823389,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":23,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":13.38244844811127,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":73,"name":"English Ale","state":"Suffolk"},{"abv":9.463154555154038,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":103,"name":"Prairie Pale","state":"Kansas"},{"abv":4.5,"address":"390 Capistrano Road","category":"German Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":99,"name":"Sandy Beach Blonde Hefeweizen","state":"California"},{"abv":9.5,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":58,"name":"Organic Barley Wine Ale 2005","state":"California"},{"abv":5.6999998093,"address":"Franz-Brombach-Strae 1-20","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":76,"name":"Oktoberfest Weizen","state":"Bayern"},{"abv":5,"address":"155 Mata Way Suite 104","category":"North American Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Because everyone needs a friend. It seems only natural that with San Diego being one of the closest cities to the Mexican Border that you would find a beer like Amigo. Brewed in the San Diego Lager style, this all malt lager is a refreshing way to start or finish a drinking session. The product of a true lager fermentation, this beer is crisp and lighter in body than most ales of similar strength making it a friendly choice for any occasion.\n\n\nMalts- Pilsner and Two Row\n\nHops- German Magnum and Czech Saaz\n\nYeast- White Labs German Lager \n\n\nOriginal Gravity- 1.048\n\nTerminal Gravity- 1.010\n\n5.0% ABV\n\n\nDraft- Available in Southern California and Arizona","ibu":14,"name":"Amigo Lager","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.1000003815,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"With a huge, Pacific Northwest hop aroma & character upfront, Storm King subsides into massive, roast malt complexity. More flavor than mere words can adequately describe. Rich and substantial, it will warm your heart.","ibu":46,"name":"Storm King Imperial Stout","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.40104101885131,"address":"471 Kalamath Street","category":"North American Lager","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":114,"name":"Mountain Wheat","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":0.7312989820825477,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":77,"name":"Porter","state":"California"},{"abv":5.064257867447464,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":14,"name":"Alexander Alt","state":"California"},{"abv":9.320516116065551,"address":"249 North Redwood Highway","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":81,"name":"Light","state":"Oregon"},{"abv":7.102597408334189,"address":"426 St.Peter Street","category":"North American Lager","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":87,"name":"Honey Wheat","state":"Minnesota"},{"abv":0.7285507291186455,"address":"2201 Sherman Street","category":"German Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":50,"name":"Schwarzbier","state":"Wisconsin"},{"abv":12.166908322683428,"address":"392 George Street","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":67,"name":"Golden Blonde","state":"New Jersey"},{"abv":13.92469432381623,"address":"PO Box 271","category":"German Lager","city":"Manila","coordinates":[14.5833,120.967],"country":"Philippines","ibu":41,"name":"Dark Lager"},{"abv":12.142405771195936,"city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":41,"name":"Pils","state":"Nordrhein-Westfalen"},{"abv":0.45789408433629664,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":18,"name":"Goldenshine","state":"Wisconsin"},{"abv":11.339419655897059,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":104,"name":"Poorter","state":"Antwerpen"},{"abv":11.490919195525958,"address":"14250 Sweetwater Lane","category":"Irish Ale","city":"Centreville","coordinates":[38.8289,-77.4393],"country":"United States","ibu":90,"name":"Flying Armadillo Porter","state":"Virginia"},{"abv":14.898550559590781,"address":"3929 Shelbyville Rd.","category":"North American Ale","city":"Louisville","coordinates":[38.253,-85.654],"country":"United States","ibu":47,"name":"Altbier","state":"Kentucky","website":"http://www.bbcbrew.com"},{"abv":4.19073606646139,"address":"1208 14th Avenue","category":"North American Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":90,"name":"Berghoff Genuine Dark","state":"Wisconsin"},{"abv":5.3000001907,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Heaps of hops give this pale lager a bracing, herbal bite over layers of soft and smooth malt flavor. This refreshing combination of tastes makes Prima a classy quencher in the tradition of the great pilsners of Europe. Dry and delightful, this is an elegant beer.","ibu":85,"name":"Prima Pils","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.9000000954,"address":"91 S Royal Brougham Way","category":"British Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"A rich, full-bodied winter warmer crafted in the British tradition of holiday beers. This deep mahogany colored brew balances complex fruit flavors with a refreshingly smooth texture, making Snow Cap a highly drinkable and desirable cold weather companion.","ibu":67,"name":"Snow Cap","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":1.2007256705383473,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":113,"name":"Stout","state":"California"},{"abv":8.233358362036185,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":15,"name":"Nut Brown Ale","state":"North Carolina"},{"abv":2.951294794582476,"address":"1800 North Clybourn Avenue","category":"Irish Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":8,"name":"Porter","state":"Illinois"},{"abv":10.59151766427036,"address":"200 North Tenth Street","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":57,"name":"Tallgrass Prairie Gold","state":"Iowa"},{"abv":6.1999998093,"address":"111 Marble Ave NW","category":"North American Ale","city":"Albuquerque","coordinates":[35.0928,-106.647],"country":"United States","description":"Congratulations! By drinking Marble Brewery India Pale Ale, you show exceptionally good taste. Our obsession with quality and attention to detail ensures that every bottle will meet your high expectations. The Columbus, Amarillo and Centennial hops lend a fragrant citrus aroma and snappy hop character. We think you will agree that this is one rock solid beer.","ibu":62,"name":"Marble India Pale Ale","state":"New Mexico","website":"http://marblebrewery.com/"},{"abv":4.8000001907000005,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"Named after the little birds that fly by the brewery looking for grain after the weather turns cold, this was originally to be a Fall/Winter seasonal. Clearly we underestimated the market for this smooth and malty brown ale, and we have decided to keep it for year round enjoyment.","ibu":57,"name":"Brown Bird Brown Ale","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":6.8000001907000005,"address":"545 Turner Drive","category":"North American Ale","city":"Durango","country":"United States","ibu":28,"name":"Modus Hoperandi","state":"Colorado","website":"http://www.skabrewing.com/"},{"abv":6.5,"address":"Rue de Panneries 17","category":"North American Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Amber copper color with a beige head.\n\nCaramel malt aromas reminiscent of vanilla, along with toffee, butterscotch and ripe fruits. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nHazy amber to brown coloured beer, with a fluffy off-white head. Nice aroma of spices, yeast and oak. The alcohol subtle. Flavour is moderately spicy and slightly fruity, with balanced hops. \n\nThis beer is certified organic.","ibu":64,"name":"Brasserie de Brunehaut Bio Bière Ambrée (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":1.0120930741796785,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":105,"name":"Ponderosa IPA","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.9000000954,"address":"110 Barley Park Lane","category":"North American Ale","city":"Mooresville","coordinates":[35.6231,-80.8011],"country":"United States","description":"This brew is a favorite for those who love hops! This medium copper-colored ale is dry hopped for a strong hop nose with medium malt overtones and hint of caramel that blend for one great tasting beer!","ibu":29,"name":"Cottonwood Endo India Pale Ale","state":"North Carolina","website":"http://www.carolinabeer.com/"},{"abv":8.55462076908086,"address":"2 Sagamore Street","category":"British Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Cooper's Cave Pale Ale is an English Pale Ale throughout.It is a full bodied light colored ale with evenly pronounced hop bitterness. The grain bill consists of two English Pale Malts and an English Crystal Malt. The brewer's favorite...need we say more.","ibu":100,"name":"Cooper's Cave Pale Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":4.9000000954,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":118,"name":"Anchor Steam","state":"California"},{"abv":11.711131254879435,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":53,"name":"Tecate","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":4.5,"address":"Stoke Lacy HR7 4HG","city":"Stoke Lacy","coordinates":[52.1496,-2.5507],"country":"United Kingdom","ibu":71,"name":"Butty Bach","state":"Hereford and Worcester"},{"abv":10.5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Topped by a sumptuous head of foam, La Terrible possesses a fruity aroma enriched with notes of roasted malt and Madeira. Its long lasting flavour is both elegant and full bodied.\n\n\nLa Terrible is a dark brown beer on lees and is part of a collection of exotic and refined Unibroue beers brewed using 100% natural raw materials. It may be drunk as an aperitif or as an after dinner digestive. It is equally a perfect accompaniment to the above-mentioned dishes or a pleasant alternative to coffee.","ibu":92,"name":"Terrible","state":"Quebec","website":"http://www.unibroue.com"},{"abv":12.123168547959116,"address":"St. Jakobstrasse 37","city":"Sankt-Gallen","coordinates":[47.4301,9.3794],"country":"Switzerland","ibu":24,"name":"St. Galler Landbier"},{"abv":10.791985955961142,"address":"Dominikanerstrae 6","category":"North American Lager","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":66,"name":"Aecht Schlenkerla Rauchbier Weizen","state":"Bayern"},{"abv":6,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":102,"name":"Oatmeal Stout","state":"California"},{"abv":11.482670694501763,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":117,"name":"Summer Common","state":"Nebraska"},{"abv":5.5,"address":"1705 Mariposa Street","category":"German Lager","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":64,"name":"Bock","state":"California"},{"abv":6.5,"address":"2880 Wilderness Place","category":"British Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":6,"name":"Cold Hop","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":12.500941345599992,"address":"1900-B East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","ibu":91,"name":"Chocolate Stout","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":8.862365647028255,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":40,"name":"Red","state":"Wisconsin"},{"abv":4.406902617202712,"address":"336 Ruth Carney Drive","city":"Windsor","coordinates":[43.513,-72.4015],"country":"United States","ibu":36,"name":"ESB","state":"Vermont","website":"http://www.harpoonbrewery.com/"},{"abv":5.4000000954,"address":"Taikos aleja 1","city":"Panevys","country":"Lithuania","ibu":105,"name":"Export"},{"abv":4,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":31,"name":"Unicorn Amber Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":8,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"A true leader in the hop-wars of the west coast, Pliny the Elder hits you over the head with hoppy bitterness and manages to smooth the rough edges out enough to become an enjoyable brew.","ibu":78,"name":"Pliny the Elder","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":9.243537578218211,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":101,"name":"Hemp Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":0.5663756982677437,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":80,"name":"Railyard Ale","state":"Iowa"},{"abv":7.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Our latest release in the V Series of bottle conditioned, Belgian-inspired ales is heady with an earthy, aromatic hop start. Involving hops from the Czech Republic, Germany and England, this flavorful ale slides into flavors of honey and mildly tart fruit. Leaving a refreshing impression of dryness, this is a quenching, invigorating ale, despite it substantial strength at 7.5% abv.","ibu":79,"name":"V-Saison","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.8000001907000005,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Perfectly balanced, this authentic version of a German helles-style lager satisfies gloriously. Lean, German malts and fine European hops offer subtle harmony.","ibu":89,"name":"Victory Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":0.7863922071765994,"address":"5417 Trumpeter Way","category":"North American Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"In Montana, many classic memories are made right after someone says, “Hold my beer and watch this.” These bold, assertive moments deserve a bold, assertive beer – Big Sky IPA. A distinct hop presence and malty backbone will leave you refreshed and ready for your moment of glory. Hang on tight and enjoy the ride.","ibu":100,"name":"IPA","state":"Montana"},{"abv":13.918935611211728,"address":"901 Gilman Street","category":"British Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":11,"name":"Snow Cap Ale","state":"California"},{"abv":5.0999999046,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":2,"name":"Amber Ale","state":"Washington"},{"abv":9.88979443734303,"address":"Hlinky 12","city":"Brno","coordinates":[49.1911,16.5918],"country":"Czech Republic","ibu":33,"name":"Czech Premium Lager"},{"abv":10,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":118,"name":"15","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.3000001907,"address":"1253 Johnston Street","category":"North American Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":56,"name":"Cartwright Pale Ale","state":"British Columbia"},{"abv":3.8504432797097876,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":91,"name":"Brotherhood Black & Tan","state":"British Columbia"},{"abv":4,"address":"Unit 1-B, Blk. A, Edf. Ind. Fei Tong","category":"North American Lager","city":"Macao","coordinates":[19.7219,-101.225],"country":"Macao","ibu":113,"name":"Lager"},{"abv":8.679037461161506,"address":"519 Seabright Avenue #107","category":"North American Lager","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":112,"name":"Brew Ribbon","state":"California"},{"abv":4.086229042146252,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":26,"name":"Irish Red","state":"Nebraska"},{"abv":3.1412286703385686,"address":"Stadtplatz 14","category":"German Ale","city":"Grieskirchen","coordinates":[48.2351,13.8292],"country":"Austria","ibu":10,"name":"Jörger Weiße Hell"},{"abv":5.138116677744586,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":59,"name":"Chapeau Fraises Lambic","state":"Vlaams Brabant"},{"abv":13,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Brewed in honor of the 1000th batch at our original Clybourn brewpub. A liquid as dark and dense as a black hole with thick foam the color of a bourbon barrel. The nose is an intense mix of charred oak, chocolate, vanilla, caramel and smoke. One sip has more flavor than your average case of beer. A great cigar beer.","ibu":50,"name":"Bourbon County Stout","state":"Illinois"},{"abv":5.2001836412747675,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":36,"name":"1916 Irish Stout","state":"Wisconsin"},{"abv":13.940348155570824,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":4,"name":"Regia Extra"},{"abv":9.332161111300922,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":84,"name":"Royal Arms IPA","state":"Colorado"},{"abv":5.141773894902805,"city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":79,"name":"Kenosha Gold","state":"Wisconsin"},{"abv":6.545240796710706,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":95,"name":"Red Lager","state":"Michigan"},{"abv":10.082603569664636,"category":"German Ale","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":42,"name":"Kristall Weiss","state":"Colorado"},{"abv":8.59051012038115,"address":"Little Telpits Farm, Woodcock Lane","category":"North American Ale","city":"Maidstone","coordinates":[51.2047,0.6813],"country":"United Kingdom","ibu":35,"name":"Whitstable Oyster Stout","state":"Kent"},{"abv":2.2537832360742858,"address":"1722 South Fremont Drive (2375 West)","city":"Salt Lake City","coordinates":[40.7326,-111.954],"country":"United States","ibu":32,"name":"Gelande Amber Lager","state":"Utah","website":"http://www.uintabrewing.com/"},{"abv":5.210754242664151,"address":"138 Nassau Street","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":62,"name":"Winter Wonder","state":"New Jersey"},{"abv":4.9000000954,"address":"Knallhtte","city":"Baunatal","coordinates":[51.2615,9.4494],"country":"Germany","ibu":27,"name":"Luxus Pils","state":"Hessen"},{"abv":12.544860661274337,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":58,"name":"2nd Street Amber","state":"Wisconsin"},{"abv":0.3696882109733224,"address":"110 Wisconsin Dells Parkway South","category":"German Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":53,"name":"Blonde Bock","state":"Wisconsin"},{"abv":9,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":102,"name":"Tripel Reserve","state":"Maine","website":"http://www.allagash.com/"},{"abv":7.1999998093,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":66,"name":"Grand Cru","state":"Maine","website":"http://www.allagash.com/"},{"abv":10.645915665062923,"address":"316 Main Street","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":84,"name":"Off KIL Ter Scottish Ale","state":"Iowa"},{"abv":10.92829612828491,"address":"79 North Eleventh Street","category":"Other Style","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"A seasonal winter beer from Brooklyn","ibu":19,"name":"Winter Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":10,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","description":"A bourbon barrel aged Imperial Stout infused with coffee.","ibu":59,"name":"Black Xantus","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.1999998093,"address":"103 West Michigan Avenue","category":"British Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"Somewhat of a cousin to Barleywine, Big Dick’s is a classic English-style Olde Ale. Sweet and full-bodied malt flavors are complemented by a fragrant but mild hop bitterness. Sweet, bready malt aromas combine with rich flavors of dark fruit, brown sugar, caramel, and sweet nuts. A beer for keeping, Big Dick’s Olde Ale will age gracefully, while fruity flavors continue to develop and bitterness will subside.\n\n\nThis is not only a BIG beer, it is a Well-Endowed Ale! We took a traditional English-style Ale and made it our own. Delightful on its own or as a digestif with a full-bodied cigar, Big Dick’s is also big enough to stand up to many boldly-flavored foods.","ibu":20,"name":"Big Dick's Olde Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":3.615383997425705,"address":"101 Oak Street","category":"German Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"This unfiltered wheat ale has very low bitterness. A Bavarian hefeweizen yeast is used which imparts a banana and clove aroma.","ibu":37,"name":"Standing Stone Hefeweizen","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":5.6999998093,"address":"4519 W. Pine Street","category":"British Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Milk Stout is a traditional full-bodied stout brewed with lactose (milk sugar). The subtle sweetness imparted by the lactose balances the sharpness of the highly roasted grains which give this delicious beer its black color.","ibu":42,"name":"Duck-Rabbit Milk Stout","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":3.639090382634552,"address":"339 Fairground Rd","category":"Irish Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"Our Porter has a deep dark color and a light creamy head. The aroma and flavor lingers of burnt grains and roasted coffe. We hope you enjoy this special brew.","ibu":88,"name":"Potbelly Porter","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":5.9000000954,"address":"2201 Arapahoe Street","category":"Irish Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"St. Bridget, a legendary Irish saint, created a sensation by turning her bathwater into beer. What better way to celebrate her worthy miracle than with our zymurgistic tribute to her feat: St. Bridget’s Porter. St. Bridget’s is a smooth and elegant brown porter. Brimming with coffee and chocolate characteristics from dark barley malts, St. Bridget’s is carefully hopped to provide the perfect complement to its malty robustness. This beer is a “must have” beer for all porter lovers.\n\n\nPrepare yourself for a religious experience","ibu":109,"name":"St. Bridget's Porter","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Making Jerry proud with an amber ale that's slightly malty and very tasty.","ibu":115,"name":"Grateful Red","state":"Michigan"},{"abv":3.449964308373765,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This red is a rich, malty, ruby-colored ale with a smooth finish.","ibu":21,"name":"Station 33 Firehouse Red","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":11,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":118,"name":"Schlafly Barleywine","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":3.880768988199547,"address":"1100 New York Ave, NW","category":"German Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","ibu":111,"name":"St. Adrian's Alt","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":10.800000191,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Aged Barleywine Ale infused with the copper glow of more than 1,000 setting suns. This exceptional offering has infinite body... a big, sweet malty tumult followed by a long, balanced, hop symphony.","ibu":22,"name":"Chaotic Chemistry","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.069584738345355,"address":"2051A Stoneman Circle","category":"Irish Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":28,"name":"Raspberry Porter","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Wild Blue is brewed with a blend of German hops from the Hallertau region in Bavaria and classic Aroma hops from the Willamette Valley in the Pacific Northwest. A combination of two- and six-row barley malt was also chosen specifically for this recipe. Beer lovers will also appreciate this specialty fruit-infused lager's striking burgundy color, ripe blueberry aroma and its ability to stand up to the strongest of foods.","ibu":105,"name":"Wild Blue Blueberry Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.0999999046,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":33,"name":"Lindener Spezial","state":"Niedersachsen"},{"abv":3.9634378038917797,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":10,"name":"Raspberry Ginger Mead","state":"Wisconsin"},{"abv":11.632800103048057,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":97,"name":"Eldridge Grade White Knuckle Ale","state":"California"},{"abv":8.869628183224894,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":94,"name":"Taverner Nut Brown Ale","state":"Wisconsin"},{"abv":8.188735915070083,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":10,"name":"Wilsteraner Altbier","state":"Wisconsin"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"Four types of malted barley, including a specially roasted Belgium barley make up the grain bill. Centennial, Sterling, and Amarillo hops provide the big hoppy flavor. Double dry-hopped, once with raw Centennial hops and once with raw Amarillo hops present this beer's huge hop aroma.","ibu":33,"name":"Point Defiance IPA","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":13.471057618485162,"address":"2711 West Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":104,"name":"Sir Duluth Oatmeal Stout","state":"Minnesota"},{"abv":10.57235778096916,"category":"North American Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":37,"name":"Southport Amber","state":"Wisconsin"},{"abv":10.966764684062586,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":43,"name":"Whitetail Ale","state":"Wisconsin"},{"abv":8.1999998093,"address":"1401 Miner Street","category":"German Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"High Gravity Butt Head Doppelbock Lager is brewed with a generous amount of roasted malts producing caramel sweetness and rich mouthfeel. Why Butt Head? Try one. You'll enjoy \"big brew\" flavor with the intensity of a \"head butting\" Bighorn Ram!","ibu":34,"name":"Butthead Doppelbock","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.5,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"Iron City has been the ‘Burgh’s signature beer since 1861. This premium lager has become a proud tradition of the city and its people. Just try to imagine a Pittsburgh football, baseball or hockey game without an ice cold Iron.\n\n\nWe still brew Iron City fresh daily – but now, instead of delivering it to Pittsburgh neighborhoods in horse-drawn buggies, we deliver it to your favorite hangouts. You can get an Iron at national restaurant chains, upscale eateries, and – of course – your favorite local bar. You can also find it at more than 330 regional beer distributors. Because Iron City is brewed locally, it goes from the brewery to you within a matter of days. You won’t find a fresher beer anywhere in Pittsburgh!","ibu":86,"name":"Iron City","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"When the loveable \"hopheads\" at Humpy's Great Alaskan Alehouse requested a winter version of alehouse favorite Sockeye Red IPA, our brewers instinctively spawned CoHoHo Imperial IPA.\n\n\nCoHoHo begins with generous measures of pale two-row and specialty malts along with spirit-boosters like maple syrup, brown sugar and honey. Hefty doses of Cascade, Centennial and Simcoe hops beautifully balance that outrageous malt bill and heighten the festive character of this exuberant beer.","ibu":97,"name":"CoHoHo Imperial IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Blind Pig IPA was originally brewed by Vinnie at Blind Pig Brewing Co. in Temecula CA. Inspired by the original Blind Pig IPA, this beer is loaded with hop character but only has 6.0% ABV.","ibu":24,"name":"Blind Pig IPA","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.6999998093,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Reflective of the traditional German style, Stoudt's Pils is delicately dry with firm bitterness. This crispness of Saaz hops and a dry malt finish make the Pilsener an excellent aperitif.","ibu":92,"name":"Stoudt's Pils","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4,"address":"800 Vinial St.","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Munich and various roasted malts give it a very malty, rich flavor with a hint of burnt flavor. 100% imported Hallertau hops, moderate bitterness and aroma.","ibu":103,"name":"Penn Dark","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":12.024053207437737,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":118,"name":"HefeWeizen","state":"California"},{"abv":14.28092329442227,"category":"Other Style","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":10,"name":"Apricot","state":"North Carolina"},{"abv":8.829103623146644,"address":"6863 Lundy's Lane","category":"British Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":117,"name":"Old Jack","state":"Ontario"},{"abv":5.635596420763252,"address":"906 Washington Street","category":"North American Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":109,"name":"Gray Whale","state":"California"},{"abv":13.789348783004069,"category":"British Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":37,"name":"Wee Heavy","state":"California"},{"abv":2.9152599257201395,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":44,"name":"Brown Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":5.5999999046,"address":"2105 N. Atherton St.","category":"German Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A well hopped medium bodied lager brewed in the Czech style of pilseners. \n\nThis beer displays the distinct flavor and aroma of saaz hops.","ibu":117,"name":"Pilsener Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.719512520321416,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Our American Ale is a favorite everywhere - an amber ale with a wonderful balance of caramel sweetness and hop flavor. The aroma has a slight note of citrus and rock candy. There is not an imported Ale on the market that tastes this fresh!","ibu":35,"name":"Circket Hill American Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":5.6999998093,"category":"North American Ale","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":73,"name":"Tap Room No. 21 Amber Ale","state":"Wisconsin","website":"http://www.taproom21.com/"},{"abv":9.5,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Fermented with the legendary Ardennes strain of Belgian yeast, 10.10.10 is a Belgian Strong Pale Ale brewed with pale malt and triticale (a cross of wheat and rye), hopped with German Perle hops, and steeped with chamomile during the whirlpool stage. In secondary fermentation, we added a juice blend of Muscat, Gewurztraminer, and Sauvignon Blanc grape varieties.","ibu":71,"name":"Vertical Epic 10.10.10","state":"California","website":"http://www.stonebrew.com/"},{"abv":5,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","description":"The name Vigneronne Cantillon was given in 1987. This name reminds us that, while it belongs to the beer patrimony, the spontaneous fermentation, the ageing in the barrels for several years and the addition of grapes make it a distant cousin of certain white wines.\n\n\nIn spite of its success, the Vigneronne represents less than 5% of the total production of the Cantillon brewery. In order to obtain grapes which are as mature as possible, we buy them at the end of the season. Every year, 1000 kilos of white italian grapes are delivered at the Cantillon brewery in the beginning of October.","ibu":95,"name":"Vigneronne","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":6.0999999046,"address":"491 Ontario Street","category":"German Lager","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Although it’s named after our most famous weather event, this beer has nothing in common with the harsh bite of winter. In fact it’s smooth slightly chocolaty flavor helps you forget Jack Frost altogether. German pale and Munich malts form the base flavors with hints of chocolate and caramel. Very soft, floral German hops ease the finish into dryness. Available on draft and in bottles from November to March.","ibu":1,"name":"Blizzard Bock","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":7,"address":"1214 East Cary St","category":"Belgian and French Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"This recipe is meant to replicate a Belgian Abbey-style ale. Tart from the Belgian yeast but malty and sweet from the addition of rock candy sugar. Reddish brown in color.","ibu":75,"name":"Richbrau Abbey-Style Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.5,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":88,"name":"Phoenix Pale Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5.4000000954,"address":"603 East Brewery Street","category":"German Ale","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":26,"name":"Shiner Hefeweizen","state":"Texas","website":"http://www.shiner.com"},{"abv":9.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A hop lover’s dream! Mango and peach aromas with a crisp citrus finish.","ibu":87,"name":"Dreadnaught Imperial IPA","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":8,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":37,"name":"Goudenband 2002","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":6.359254284044833,"address":"4120 Main Street","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","ibu":106,"name":"Slam Dunkel","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":5.8000001907000005,"address":"2401 Blake St.","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Proving the French may actually know something we don't... Garde Dog is a traditional French Biere de Garde or \"beer for keeping\". This classic farmhouse ale was brewed in March for drinking during the spring and summer months. With it's toasted aroma and spicy, malty sweetness Garde Dog will liberate you from the winter doldrum.","ibu":25,"name":"Garde Dog","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":4.5,"address":"Lierput 1","category":"Belgian and French Ale","city":"Kobbegem","coordinates":[50.9098,4.2505],"country":"Belgium","ibu":90,"name":"Mort Subite Gueuze Lambic","state":"Vlaams Brabant"},{"abv":1.5270659652775687,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":114,"name":"Pale","state":"California"},{"abv":11.610179996277882,"category":"North American Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":73,"name":"Amber","state":"California"},{"abv":7.732964026258951,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":79,"name":"Schlitz","state":"Florida"},{"abv":14.967423287534373,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":84,"name":"Hex Nut Brown Ale","state":"Illinois"},{"abv":1.5639350347161851,"city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":26,"name":"Dunkelweisse","state":"Iowa"},{"abv":0.7990078254765554,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":71,"name":"Pointer Brown Ale","state":"Iowa"},{"abv":8.5,"address":"1680-F East Waterloo Rd.","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"American hops and Belgian abbey beer flavors intermingle to create a spicy and assertive beer style all their own. Citrusy character from select hops dominate this assertive Double I.P.A., complimented by a unique Belgian flavor to add complexity and ultimate beer satisfaction. The result is a flavor combination that’s a whirlwind of taste sensations.","ibu":36,"name":"Hop Master's Abbey Belgian-style Double IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.0999999046,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In honor of Oktoberfest, we give you Scratch #23-2009, Kellar Fest. This unfiltered lager features all German malts and noble hops. Fermented with the Augustinerbrau yeast strain, Kellar Fest is a blend of Bohemian Pils, Munich and Vienna malts. The Magnum hops provide a crisp bitterness and the Hallertau noble hops impart a slight earthy taste. Kellar Fest finishes crisp and dry with hints of fruit. Grab a lamb handle and savor this Kellar Fest.","ibu":2,"name":"Scratch #23 2009 Kellar Fest","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.758205623536993,"address":"1321 Celebrity Circle","category":"Other Style","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This light ale is an American interpretation of a German classic. It's not filtered and has a pleasantly tart flavor. Served with a lemon wedge.","ibu":113,"name":"Liberty Unfiltered Wheat Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5.25,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Sundog is an amber ale as deep as the copper glow of a Lake Michigan sunset. Its biscuit malt give Sundog a toasty character and a subtle malty sweetness. Sundog brings out the best in grilled foods, caramelized onions, nutty cheese, barbecue, or your favorite pizza.","ibu":101,"name":"Sundog","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":9.29738189149518,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Bube's rendition of this classic style is made with fine 2-row malted barley and West Coast hops. A wonderful malt finish with a delicate citrus aroma, reminiscent of its Old-World cousin.","ibu":63,"name":"Bube's India Pale Ale (IPA)","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.8000001907000005,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A simple well-made Classic American Lager brewed with only choice ingredients. It is extremely mellow refreshingly smooth, glass after glass.","ibu":83,"name":"Saranac Lager","state":"New York","website":"http://www.saranac.com"},{"abv":4.8000001907000005,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A smooth and creamy medium-bodied stout with soft malty notes and dry finish.","ibu":6,"name":"Ohio City Oatmeal Stout","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5.5,"address":"514 South Eleventh Street","category":"British Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"A Silver Medal winner at the 2005 Great \n\nAmerican Beer Festival in the Bitter category, our \n\nExtra Special Bitter (ESB) is a medium-bodied ale \n\nhighly hopped and loaded with flavor.","ibu":4,"name":"Firehouse ESB","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.679344200241583,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","ibu":8,"name":"1084 Barleywine","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":5.5,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":70,"name":"Red Ale","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":9.317063501775827,"address":"13300 Bothell-Everett Highway #304","category":"North American Lager","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":63,"name":"Wheat Beer","state":"Washington"},{"abv":6,"address":"Mendoza","category":"North American Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":67,"name":"Rubia"},{"abv":0.10942545609335386,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":85,"name":"St. Paul Triple","state":"Antwerpen"},{"abv":5.3000001907,"address":"30 Germania Street","category":"German Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"For our take on the classic hefeweizen style our search for unique ingredients led us to the Eureka and Lisbon varieties of lemon grown in three different regions of California. These particular lemons added the perfect balance of citrus tartness and sweetness to accent the taste of the beer. The spiciness of the Hallertau Mittelfruh and Spalt Spalter hops balance out the slightly sweet character of our brewery’s own signature wheat malt, resulting in a crisp and refreshing wheat beer with a subtle lemon aroma and flavor.","ibu":83,"name":"Samuel Adams Coastal Wheat","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.52885282759223,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":118,"name":"Hinterland Packerland Pilsner","state":"Wisconsin"},{"abv":9.834388833218156,"city":"Horsham","coordinates":[51.0638,-0.327],"country":"United Kingdom","ibu":9,"name":"Worthington White Shield","state":"West Sussex"},{"abv":1.3271126287737012,"address":"1809 Larkspur Landing Circle","category":"Irish Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":74,"name":"Point Reyes Porter","state":"California"},{"abv":10.007204309811202,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":117,"name":"Whitetail Ale","state":"Michigan"},{"abv":3.881257617631496,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":58,"name":"Scotch Ale","state":"Scotland"},{"abv":9.856305811458636,"address":"1860 Schell Road","category":"German Ale","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":44,"name":"Weizen","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":1.456688465975059,"address":"1800 North Clybourn Avenue","category":"German Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":7,"name":"Oktoberfest","state":"Illinois"},{"abv":1.3525541565895371,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":9,"name":"Hacker-Pschorr Weisse","website":"http://www.paulaner.com/"},{"abv":5,"address":"Chelsea Piers, Pier 59","category":"North American Ale","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":90,"name":"Sunset Red Ale","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":6.404848139029569,"address":"Chelsea Piers, Pier 59","category":"Other Style","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":13,"name":"Blueberry Wheat","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":14.262253995523398,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":12,"name":"Scottish Ale","state":"Wisconsin"},{"abv":8.446575644318187,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":9,"name":"Dark","state":"Bremen"},{"abv":13.724660788024789,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":107,"name":"William Capen Bitter Ale","state":"Wisconsin"},{"abv":5.0999999046,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Hold onto your beer mugs, because this medium-bodied beer has been overwhelmed with hop additions. Brewed as an American pale ale, it's a celebration of American hop varieties: Cascade, Crystal, Centennial and Chinook. You won't be disappointed.","ibu":110,"name":"Ironbound Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4.522288747765995,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Wheat is a lager, not ale, and contains a generous amount of wheat which produces a clean, simple flavor.","ibu":65,"name":"Wheat","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"American style double IPA, full bodied malt flavor supports a ridiculous amount of hops, giving it pronounced bitterness and overwhelming hop flavor and aroma. Made with 5 pounds of hops per barrel.","ibu":89,"name":"Kryptonite Imperial IPA","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6.5,"address":"445 St.Paul Street","category":"Irish Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"More and more we’re becoming a nation of milquetoasts. And nowhere is that more evident than in our beer—puny liquids without calories, carbs, or cojones. \n\n\nBut it needn’t be that way, my friend! Sure, we don’t want to make a living shoveling coal or washing clothes on a rock. But we can recapture the more robust spirit of a time gone by.\n\n\nDundee Porter is a throwback to a different era—when times were tough and so were the people. They drank big beers, slapped each other on the back, and toasted the good life—even though they only saw it from a distance. \n\n\nWith Dundee Porter, you can get a taste of it.\n\n\nBig and malty flavor from aromatic dark-roasted grains balanced by a subtle hint of hops. Deep color and rich caramel flavor.","ibu":53,"name":"Dundee Porter","state":"New York"},{"abv":3.9031787857304066,"address":"3301-B East Fifth Street","category":"North American Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"A delicious example of the \"neo-classical\" American beer style. It has a beautiful copper color and is topped with a thick rich head. With a hint of ale fruitiness in the nose, Pale Ale starts out malty, finishes dry and has plenty of Cascade hops in between. It is sure to satisfy the most discerning ale aficionados.","ibu":117,"name":"Live Oak Pale Ale","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":14.187677410447042,"ibu":116,"name":"07/22/10 08:00 PM"},{"abv":5.349278251561116,"address":"302 N. Plum St.","category":"Belgian and French Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","ibu":68,"name":"Lancaster Limited Triple","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":9.5,"address":"701 Galveston Ave","category":"Other Style","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"This is a special edition of Rahr's Winter Warmer. This fine English ale has been aged in freshly emptied Kentucky oak whisky barrels. The barrel aging has given this already big ale a beautiful whiskey nose along with notes of vanilla and oak. A perfect ale for sipping around a winter fire.","ibu":61,"name":"Bourbon Barrel Aged Winter Warmer","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":6.9000000954,"address":"1999 Citracado Parkway","category":"Belgian and French Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":64,"name":"Stone Cali-Belgique","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.347080999705607,"address":"Piazza V Luglio, 15","category":"British Ale","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":88,"name":"Noël"},{"abv":10,"address":"515 Jefferson Street SE","category":"British Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":104,"name":"Old Woody 2005","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.5999999046,"address":"1524 West Marine View Drive","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":110,"name":"Homeport Blonde","state":"Washington"},{"abv":5.5999999046,"address":"Doktor-Waibel-Strae 2","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":61,"name":"Spezial"},{"abv":8.5,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":37,"name":"Ondineke Oilsjtersen Tripel","state":"Oost-Vlaanderen"},{"abv":6.6999998093,"address":"2380 Larsen Drive","city":"Camino","coordinates":[38.7563,-120.679],"country":"United States","ibu":108,"name":"Farm House Ale","state":"California"},{"abv":12.493556378565643,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":13,"name":"Oatmeal Stout","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":14.765383385275483,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":97,"name":"Cream Ale","state":"Wisconsin"},{"abv":5.064726071846608,"address":"7791 Egg Harbor Road","category":"Irish Ale","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":83,"name":"Peninsula Porter","state":"Wisconsin"},{"abv":5.847079716159449,"category":"North American Lager","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":97,"name":"Wild Boar Wild Wheat","state":"Iowa"},{"abv":12.841895286250766,"address":"4301 West Wisconsin","category":"North American Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":108,"name":"Rye","state":"Wisconsin"},{"abv":5.0753417751218945,"category":"North American Lager","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":42,"name":"The Yank Cream Ale","state":"Wisconsin"},{"abv":8.214384175300161,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":36,"name":"Platte Valley Pale Ale","state":"Colorado"},{"abv":12.640898993357077,"address":"7665 US Highway 2","city":"Iron River","coordinates":[47.3812,-94.6669],"country":"United States","ibu":31,"name":"Dry Mead","state":"Wisconsin"},{"abv":7.9000000954,"address":"800 Paxton Street","category":"German Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Red and white wheat combined with darker malts add body to this hazy, unfiltered ale. Fermented with the same yeast as DreamWeaver Wheat replicating the pepper, clove and all-spice flavors found in our year-round beer.","ibu":68,"name":"Scratch #7 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.1999998093,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"The opaque blackness and beige-colored\n\nfoam mousse of Chambly Noire belie its light,\n\nrefreshing body and clean, long finish,\n\nfeaturing hints of roasted coffee beans, toast\n\nand toffee. \n\n\nWe recommend pairing it with grilled salmon,\n\nsteak or tuna au poivre, smoked meats,\n\ncoffee-crusted rack of lamb, or chocolate\n\nespresso flan.","ibu":38,"name":"Chambly Noire","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8.5,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":78,"name":"Abbey Dubbel","state":"New York"},{"abv":5.0999999046,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":69,"name":"Rodenbach","state":"West-Vlaanderen"},{"abv":10.076319908585795,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A blonde ale that is very light in color and body with no bitterness. A thirst quenching, American light-bodied blonde ale.","ibu":87,"name":"Airship Light","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":10,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A biting, bitter, tongue bruiser of an ale. With a name like Hopslam, what did you expect?","ibu":5,"name":"Hopslam Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6.1999998093,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Hops Infusion is loaded with piney, citrusy notes, much hops complexity, and a strong foundation of malt underneath it all.. Glowing a deep amber color, Hops Infusion is brewed with seven types of hops. Simcoe, Magnum, Cascade, Liberty, Saaz, Fuggles and E. Kent Goldings give this beer the complexity that's so interesting. Our brewers intention on Hops Infusion was to create a complexity of hops flavor and aromas, not found in any other beer.\n\n\nOriginally developed for our BrewPub (no longer open), Hops Infusion was ahead of its time in 1998, but eventually became over shadowed by plethora of entries from other brewers in the India Pale Ale category, with everyone pushing the envelope on hops content more and more. So, in late 2005 we redesigned this beer with an entirely new recipe and new packaging as well. The results are unmistakable, Hops Infusion is clearly a leading IPA once again.\n\n\nWe brew Hops Infusion (6.2% ABV, 1.068 OG) all year 'round. So if your local beer store doesn't have it, tell 'em to get moving!","ibu":64,"name":"Hops Infusion","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":11.100000381,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"At Weyerbacher, we prefer to brew things true to European style guidelines. Consequently our barley wine is on the malty side, yet not overly sweet. Notes of date or perhaps fig on the palate follow a pleasurably malty aroma to your taste buds. The finish is warm and fruity, and begs for the next sip.\n\n\nEnjoy Blithering Idiot in a brandy snifter or wine glass, preferably in front of the fire, or accompanying a literary classic. This is the finest life has to offer and should be treated as such. Moments of reflection make all the toil worthwhile, and Blithering Idiot is for moments like these. Share it with your family over the holiday dinner. Lay a few down, aging only helps a barley wine develop more class. At 11.1 % ABV (alcohol by volume) this fine ale will keep for years. Our expected maximum shelf-life is 2 to 3 years. Although it might see a decade, beyond the 3rd year most barley-wines have a tendency to decrease in complexity, so don't wait too long","ibu":59,"name":"Blithering Idiot","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":3.1600000858,"address":"303 Sorg Street","city":"St. Mary's","coordinates":[41.4277,-78.5539],"country":"United States","ibu":41,"name":"Straub Light","state":"Pennsylvania","website":"http://www.straubbeer.com/index.htm"},{"abv":4.6999998093,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Blue is the best-selling Canadian beer in the world. Introduced in 1951 as Labatt Pilsener, it was named for the colour of its label by fans of the Winnipeg Blue Bombers football team. Blue was the first brand in Canada with a twist-off cap and won the silver medal in the International Lager category at the 1998 Brewing Industry International Awards. Labatt Blue, brewed using specially selected aromatic hops, is a well-balanced, fully matured, full-flavoured beer with a fruity character and a slightly sweet aftertaste.","ibu":59,"name":"Labatt Blue","state":"Ontario"},{"abv":8.6999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Our Barley Wine is dark red in color and has an original gravity of 1.120 (24 Plato). The malt complexity of this classic ale style is incredible.\n\n\nThe Broad Street Market is located just blocks from the Appalachian Brewing Company. This indoor farmers market was built in 1863 and is one of the oldest continuously operating farmers markets in the United States. The beautiful brick façade and natural wood doors are typical of the structures in Downtown Harrisburg; including our own building.","ibu":22,"name":"Broad Street Barleywine","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":7.16178346872616,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":96,"name":"Over The Line Stout","state":"California"},{"abv":13.433050545462372,"category":"North American Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":109,"name":"Moonset Lager","state":"Hawaii"},{"abv":7.3000001907,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":41,"name":"Atta Boy IPA","state":"California"},{"abv":12.816486232023758,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":12,"name":"Weizenberry","state":"California"},{"abv":6.478126121754293,"address":"901 Gilman Street","category":"German Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":0,"name":"Oktoberfest","state":"California"},{"abv":7.569279105123322,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":30,"name":"Wicked Winter Brew","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":2.1785437862354406,"category":"North American Lager","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":41,"name":"Summer Wheat","state":"California"},{"abv":6.4000000954,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Pours a spectacular crimson red with a creamy tan head. Brewed with four varieties of Belgian caramel malts imparting a sweet richness. Red's Rye is impressively balanced with its hop bitterness and huge citrus bouquet achieved from the immense amarillo dry hop. The generous amount of malted rye used accentuates a spicy crisp finish.","ibu":75,"name":"Founders Red's Rye","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":13.882669837489122,"address":"426 St.Peter Street","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":106,"name":"Capitol ESB","state":"Minnesota"},{"abv":8.79060750865463,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":53,"name":"Winter SkÃ¥l","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":14.635232364949545,"address":"1413 Fifth Avenue","category":"North American Ale","city":"Moline","coordinates":[41.5059,-90.5171],"country":"United States","ibu":34,"name":"Pale Ale","state":"Illinois"},{"abv":6,"address":"11197 Brockway Road","category":"British Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"Everyone has their price. For some, it's measured in dollars per hour, for others it's powder days. For those that have the gift of passion for the dark side, it's measured in pints of Oatmeal Stout. Another one of FiftyFifty's seasonals, the Roundabout Oatmeal Stout is brown to black in color and nearly opaque. It has a velvet like mouthfeel, moderate hints of dark dried fruit, espresso beans and Dark Chocolate... and just a hint of hop bitterness. The addition of Flaked Oats gives this brew its wonderful creamy texture. Roundabout Oatmeal Stout is one of a series of Stouts that FiftyFifty Brewing Co. will produce during the course of the year. Enjoy!","ibu":61,"name":"Roundabout Oatmeal Stout","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":9.0611578998876,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":104,"name":"Big Easy Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8.8000001907,"address":"1280 North McDowell Boulevard","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":63,"name":"The Hairy Eyeball","state":"California","website":"http://www.lagunitas.com/"},{"abv":3.2258420663881724,"address":"146 Snelling Avenue North","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":13,"name":"Cork Brown Ale","state":"Minnesota"},{"abv":6.3000001907,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":28,"name":"Buffalo Gold","state":"Colorado"},{"abv":5.5999999046,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","ibu":106,"name":"Superhop Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":6.03014565995046,"category":"Irish Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":42,"name":"Burntwood Black Ale","state":"Wisconsin"},{"abv":4.681275138977549,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":108,"name":"Mad Badger Barley Wine","state":"Wisconsin"},{"abv":10.590147961659198,"city":"Nagoya","coordinates":[35.1814,136.906],"country":"Japan","ibu":2,"name":"Beer Works Ale Golden","state":"Chubu"},{"abv":6.5,"address":"1012 North California Street","category":"North American Ale","city":"Socorro","coordinates":[34.0701,-106.893],"country":"United States","ibu":102,"name":"Pick Axe IPA","state":"New Mexico"},{"abv":13.673908578375112,"address":"905 Yakima Valley Highway","city":"Sunnyside","coordinates":[46.3284,-120.008],"country":"United States","ibu":103,"name":"Extra Special Bitter","state":"Washington"},{"abv":5.5999999046,"address":"50 North Airport Parkway","category":"Irish Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":80,"name":"Snake Pit Porter","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":0.38428544596548875,"address":"103 West Michigan Avenue","category":"Irish Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":38,"name":"London Porter","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":6.321716880793584,"address":"5417 Trumpeter Way","category":"North American Lager","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Summer Honey is a full-flavored summer seasonal ale. Brewed with a unique, balanced blend of spices, Northwest Hops, and Montana honey. Summer Honey is brewed during the early days of spring and released around the first of May each year. Light colored, light bodied, and very drinkable, Summer Honey sacrifices nothing to create a flavorful beer that can be enjoyed during the height of the Summer. Available April through September","ibu":28,"name":"Summer Honey Seasonal Ale","state":"Montana"},{"abv":3.2524778698314574,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":19,"name":"Sunset Red","state":"California"},{"abv":5.5999999046,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":0,"name":"Acme California Brown Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":0.4150856967211536,"address":"580 North Nimitz Highway","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":86,"name":"S-Team","state":"Hawaii"},{"abv":11.711489406144374,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":39,"name":"Winterhook Robust Winter Ale 1993","state":"Washington","website":"http://www.redhook.com/"},{"abv":10.994353037506091,"category":"German Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":78,"name":"Helles Honey Bock","state":"Iowa"},{"abv":9,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"Belgian and French Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Features the intense aroma of fresh-picked, slow ripened Northwest apricots warmed by the summer sun. Based on a Belgian Tripel, this beer went through 16 months lactic fermentation and aging in French oak wine barrels.","ibu":46,"name":"Cascade Apricot Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":9.431961875970327,"address":"1025 Owen Street","category":"Other Style","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","ibu":75,"name":"Bitter Woman in the Rye","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.5,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Old Slugger\" is a hearty Pale Ale, copper in color, crisp malty fullness on the front of the palate and lingering hop bitterness on the back with a dry finish. It is brewed with four barley malts, including two-row English pale and crystal malts, balanced with Mt. Hood, Cascade and Fuggle hops, and fermented in open vessels by Ringwood Yeast, a true top-fermenting ale yeast. \"Old Slugger\" is the flagship beer of the Cooperstown Brewing Company and was first brewed in July 1995 and bottled in November 1995.","ibu":119,"name":"Old Slugger Pale Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":8.5,"address":"3804 S.W 30th Ave","category":"Belgian and French Ale","city":"Fort Lauderdale","coordinates":[26.0745,-80.1806],"country":"United States","ibu":58,"name":"Holy Mackerel Special Golden Ale","state":"Florida","website":"http://holymackerelbeers.com/"},{"abv":8,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A neo-traditional Rye Bok brewed to commerate the 375th Anniversary of the First Town in the First State.","ibu":48,"name":"Zwaanend,ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.8000001907000005,"address":"1634 18th Street","category":"Other Style","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Anunfiltered wheat beer, weiss beer is a bavarian tradition. Our version is immensely refreshing and authentic, delivering the classic weiss aromas of clove and banana. A two-time Great American Beer Festival Medal winner in the German Style Wheat Ale category.","ibu":73,"name":"Wixa Weiss","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":6.3000001907,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","description":"Hofbräu brews a rich, full-bodied beer which goes down ideally with traditional Bavarian cuisine. With its deliciously bitter taste and alcoholic content of 6.3% volume, Hofbräu Oktoberfestbier is as special as the Beer Festival itself.\n\n\nType: Bottom-fermented, light festive beer","ibu":95,"name":"Hofbräu Oktoberfestbier","state":"Bayern"},{"abv":6.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"ach and every fall, we experience a coastal experience in San Diego known as the \"Super High Tide.\" This happens later in the Fall Season when the tidal swings reach a range of about 8 feet in difference between low and high tides. When this happens, there are days when the tide just gets too high and flattens out the surf. The lineups shut down and surfers are left to wait until the High Tide recedes.\n\n\nWhile waiting for the tides to shift in your favor, might we suggest a High Tide IPA? Brewed only once each year to coincide with the Hop Harvest in Yakima Washington, High Tide IPA is made with 180 lbs of Fresh Hops per batch that are plucked from the vines and sent straight to our brewery. We skip the whole drying and processing stage which means the hops are ultra fresh and full of flavors we can't normally get. Like grapes, Hops are only harvested one time each year and as such, we make what we can when we get them.","ibu":102,"name":"High Tide IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":3.33398823771852,"address":"1321 Celebrity Circle","category":"North American Lager","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This beer is an all-malt lager, brewed with a subtle blend of German hops. Cool fermentation, followed by extended aging, produces a delicate and mild flavor.","ibu":88,"name":"Miss Liberty Lager","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":7.0999999046,"address":"2105 N. Atherton St.","category":"German Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A south German style wheat ale. This beer is served traditionally cloudy due to the suspended yeast (hefe=yeast). Strong spicy clove flavors and light banana esters are characteristics of a different yeast strain we are trying.","ibu":19,"name":"Otto's Hefeweizen","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":11.800000191,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A big, bold ale brewed in the style of classic barleywines. Served lightly carbonated through the handpump at cellar temperature.","ibu":49,"name":"Old Fugget","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.5,"city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":60,"name":"Achel Trappist Extra","website":"http://www.achelsekluis.org/"},{"abv":2.534425983994686,"ibu":11},{"abv":4.6999998093,"address":"Route 4 & 100A","category":"Belgian and French Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Our Belgian White Ale is modeled after the original Belgian Witbiers brewed in monasteries during the early 14th century. The soft notes of citrus and spice are topped with a light, fluffy head that finishes clean and crisp. This all natural ale is our latest seasonal brew, perfect for lounging lake-side or celebrating at trail's end.","ibu":1,"name":"Belgian White","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":5.5,"address":"Brouwerslaan 1","category":"Other Style","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Premium Weizen is the main wheat beer made by Grolsch.\n\nIt is made according to the German Reinheitsgebot (\"German Beer Purity Law\"), meaning that it is made exclusively with (wheat)malt, water, hoppes and barley.","ibu":92,"name":"Grolsch Premium Weizen","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":11.710285997583629,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An American style wheat beer and an Issaquah Brewhouse origina. Light in color and body and served with a lemon, Bullfrog is crisp, refreshing and goes down easy. Take a flying leap!\n\n\nBullfrog Ale took the Silver Medal at the 2004 Great American Beer Festival in the American Wheat category.","ibu":69,"name":"Issaquah Bullfrog Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"2439 Amber Street","category":"Irish Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"By George, I think we've got it.\n\n\nDays of debate and deliberation at Independence Hall were often followed by nights of debate and deliberation (and a few libations) at the City Tavern, where our forefathers would gather to exchange revolutionary ideas.\n\n\nRich and warming with a deep garnet hue, the molasses-based Tavern Porterâ„¢ reflects Washington's admiration of Philadelphia-style porters and follows a recipe Washington used himself, when brewing beer to satisfy his thirsty field officers.\n\n\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.\n\n\nHistorical note: Our new brewery is located just blocks away from the site of Robert Hair's brewery, where Washington's favorite Philadelphia Porter was crafted.","ibu":90,"name":"General Washington Tavern Porter","state":"Pennsylvania"},{"abv":5,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"HotShot ESB is an easy-drinking and remarkably smooth Extra Special Bitter, brewed in the classic-English style. More assertively hopped than ordinary bitters, light copper-colored HotShot showcases clean hop flavors, balanced by its slightly fruity nose and light-caramel malt character.\n\n\nWhile HotShot is one of Great Divide’s easiest-drinking and lower alcohol beers, its complex flavor profile makes it the perfect session beer for craft beer lovers.","ibu":53,"name":"Hot Shot ESB","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":10,"name":"Warm Welcome Nut Browned Ale","state":"Oxford"},{"abv":13.106306897863751,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":92,"name":"Red Sled Winter Ale","state":"Nebraska"},{"abv":5,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":71,"name":"X Extra Pale Ale","state":"California","website":"http://alesmith.com/"},{"abv":1.6164053510337872,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":105,"name":"Old Rip Oatmeal Stout","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":4.380525769568963,"address":"Florhofstrasse 13","category":"North American Lager","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":90,"name":"Single-Malt-Bier"},{"abv":7.3000001907,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":103,"name":"Manchester Star Ale","state":"Manchester"},{"abv":5.8000001907000005,"address":"39176 Argonaut Way","category":"Irish Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":102,"name":"Penalty Shot Porter","state":"California"},{"abv":0.7303818479017177,"address":"3945 Second Street South","category":"North American Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":115,"name":"Victory Lager","state":"Minnesota"},{"abv":6.461773312330765,"address":"426 St.Peter Street","category":"British Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":112,"name":"Old Bastard","state":"Minnesota"},{"abv":7.942523668506513,"category":"North American Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":92,"name":"Amber","state":"New Jersey"},{"abv":7.3000001907,"address":"Jszbernyi t 7-11","category":"German Lager","city":"Budapest","coordinates":[47.4921,19.1422],"country":"Hungary","ibu":112,"name":"Bak"},{"abv":10.58767290196032,"category":"North American Ale","city":"Idaho Falls","coordinates":[43.4666,-112.034],"country":"United States","ibu":65,"name":"Dr. Hops Amber Ale","state":"Idaho"},{"abv":14.850825255864859,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":17,"name":"Fuggles IPA","state":"Maine","website":"http://www.shipyard.com/"},{"abv":14.39773682812251,"category":"North American Ale","city":"Michigan City","coordinates":[41.7075,-86.895],"country":"United States","ibu":6,"name":"Salmon Tail Pale Ale","state":"Indiana"},{"abv":11.41861342958616,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":30,"name":"Red Trolley Ale","state":"California"},{"abv":5,"address":"1001 16th Street #A-100","category":"German Lager","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":19,"name":"Rocktoberfest","state":"Colorado"},{"abv":1.7013162043128427,"address":"316 Main Street","category":"North American Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":95,"name":"Long Face Amber","state":"Iowa"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"The extensive distance between two breweries on the West Coast – 3767 miles – is bridged by this collaboration beer. Brewers Gabe Fletcher of Midnight Sun Brewing Company [Anchorage, AK] and Colby Chandler of Ballast Point Brewing Company [San Diego, CA] designed and brewed an exciting representation of their passions: hops, Belgian yeast, oak aging and Brettanomyces. \n\n\nJust prior to the Great Alaska Beer & Barley Wine Fest in JAN 2009, Gabe and Colby brewed a West Coast-worthy IPA at Midnight Sun Brewing Company. This hop-centric beer became the jumping-off point for other intense flavors. During its course to completion, 3767 was affected by three different yeast strains--including Brettanomyces, aged for several months in French oak Cabernet Sauvignon barrels, and then bottle- and keg-conditioned. \n\nThe plan is for 3767 to hit Anchorage, Seattle, Portland, San Francisco and San Diego in NOV 2009 for a West Coast Toast. Here’s to the collaborative spirit readily found in our brewing industry. Clink!","ibu":12,"name":"3767 Belgian-style IPA with Brett","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":1,"name":"Mojo Risin' Double IPA","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":1.220288966091464,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":13,"name":"Timmermans lambicus Blanche","website":"http://www.anthonymartin.be/"},{"abv":9,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":98,"name":"Shark Attack Double Red Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":10.08189908068549,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":106,"name":"HefeWeizen","state":"California"},{"abv":11.724065948023657,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":60,"name":"Brown Bear Brown Ale","state":"California"},{"abv":4.6999998093,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":38,"name":"Helles Golden Lager","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":10,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":84,"name":"Leviathan 2004","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":7.1999998093,"address":"Viale Venezia 9","category":"German Lager","city":"Udine","coordinates":[46.0597,13.2269],"country":"Italy","ibu":4,"name":"La Rossa"},{"abv":8.5,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":95,"name":"Tatonka Stout","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5.5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":36,"name":"Petrus Oud Bruin","state":"West-Vlaanderen"},{"abv":8.3999996185,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":41,"name":"Maximus Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":4.6999998093,"address":"Gallowgate","category":"North American Ale","city":"Newcastle-upon-Tyne","coordinates":[40.8918,-76.7975],"country":"United Kingdom","ibu":30,"name":"Newcastle Brown Ale","state":"Northumberland"},{"abv":6.390345696078159,"address":"4301 West Wisconsin","category":"German Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":56,"name":"Foxtoberfest","state":"Wisconsin"},{"abv":5.864000716645464,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":109,"name":"Helles","state":"Wisconsin"},{"abv":4.399596288777806,"address":"220 North Randall Road","category":"North American Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":88,"name":"American Cream Ale","state":"Illinois"},{"abv":12.791066038484248,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":3,"name":"Schlafly ESB","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.9000000954,"address":"3525 Liberty Avenue","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"When the British introduced draught pale ale to America, the Pipe Organ Pale Ale is what they had intended. It is truly British in character. Brewed with pale ale malt and a touch of caramel malt, it has a light copper color and subtle body. The maltiness is carefully balanced with only the best English hops - East Kent Goldings. Although this beer has a fair amount of hops, the caramel maltiness perfectly balances its profile.","ibu":109,"name":"Pipe Organ Pale Ale","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":7.430896169540234,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":90,"name":"Old Scratch Barleywine 1997","state":"Wisconsin"},{"abv":6.207525614881302,"address":"61 Bridge Street","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":116,"name":"ESB","state":"New Jersey"},{"abv":4.439619887869486,"address":"23 White Deer Plaza","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":99,"name":"Gold","state":"New Jersey"},{"abv":3.9000000954000003,"address":"Brauhausplatz 1","category":"German Lager","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":52,"name":"Black Abbot / Schwarzer Abt","state":"Brandenburg"},{"abv":0.5535678701724445,"address":"Einsteinstrae 42","city":"Mnchen","coordinates":[48.1355,11.6009],"country":"Germany","ibu":111,"name":"Helles Naturtrub","state":"Bayern"},{"abv":2.9265748392770563,"address":"2617 Water Street","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":59,"name":"White Bière","state":"Wisconsin"},{"abv":13.040075977549439,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":106,"name":"Black Forest","state":"Louisiana"},{"abv":8.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":49,"name":"Vintage Ale 1999","state":"London","website":"http://www.fullers.co.uk/"},{"abv":1.7223573609144172,"address":"1800 West Fulton Street","category":"German Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":56,"name":"Oktoberfest","state":"Illinois"},{"abv":9,"address":"rue du Castel, 19","city":"Irchonwelz","coordinates":[50.620400000000004,3.7592],"country":"Belgium","ibu":50,"name":"Gouyasse / Goliath","state":"Hainaut"},{"abv":11.587444874077269,"address":"57 Hamline Avenue South","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":56,"name":"Gunflint Gold Ale","state":"Minnesota"},{"abv":9.691168769808916,"address":"7050 Monterey Street","category":"North American Ale","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":2,"name":"Desperado Pale Ale","state":"California"},{"abv":12.445760574560946,"city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":86,"name":"Equinox E.S.B.","state":"Illinois"},{"abv":4.6999998093,"address":"302 N. Plum St.","category":"Other Style","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Just in time for summer, this American wheat lager style beer with the subtle suggestion of real, fresh strawberries, is the perfect pint of true refreshment. Light and crisp, our Strawberry Wheat is a \"must try\" for fruit and beer lovers alike.","ibu":36,"name":"Lancaster Strawberry Wheat","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":2.072052710073704,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":83,"name":"Thomas Kemper Porter","state":"California"},{"abv":4.448638469259478,"address":"1875 South Bascom Avenue #700","category":"North American Lager","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":72,"name":"Pilsner","state":"California"},{"abv":1.7038797608434708,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":115,"name":"Triple Treat","state":"Wisconsin"},{"abv":5,"address":"5080 Rue St-Ambroise","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":116,"name":"St-Ambroise Pale Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":0.421644204099918,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":55,"name":"Rainbow Trout Stout","state":"Colorado"},{"abv":4.687374243524337,"address":"4057 Erie Street","category":"Irish Ale","city":"Willoughby","coordinates":[41.6416,-81.4066],"country":"United States","ibu":107,"name":"Wenceslas","state":"Ohio"},{"abv":7.983820645687052,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":102,"name":"Enkel Biter","state":"Wisconsin"},{"abv":8,"address":"Kerkstraat 92","category":"Belgian and French Ale","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","description":"LOOK:\n\nTripel Karmeliet is a very refi ned and complex golden-to-bronze brew with a fantastic creamy head. These characteristics derive not only from the grains used but also from restrained hopping with Styrians and the fruity nature (banana and vanilla) of the house yeast.\n\n\nSMELL:\n\nVery refined and complex. Hints of vanilla mixed with citrus aromas.\n\n\nTASTE:\n\nTripel Karmeliet has not only the lightness and freshness of wheat, but also the creaminess of oats together with a spicy lemony almost quinine\n\ndryness.","ibu":44,"name":"Triple Karmeliet","state":"Oost-Vlaanderen"},{"abv":6.550097627499016,"address":"23 Commerce Street","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":18,"name":"American Blonde","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":10.05958728399482,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":23,"name":"Biloxi Light","state":"Mississippi"},{"abv":5.5,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Launched in March 1995, Raftman is a beer with a coral sheen that is slightly robust. It contains 5.5 percent alcohol and combines the character of whisky malt with the smooth flavours of choice yeast. It has a subtle and exceptional bouquet that creates a persistent smooth feel. Raftman complements fish, smoked meat and spicy dishes. .\n\n\nIt is brewed to commemorate the legendary courage of the forest workers These hard working men knew when to settle their differences and share their joie de vivre with a beer and a whisky.","ibu":105,"name":"Raftman","state":"Quebec","website":"http://www.unibroue.com"},{"abv":11.380707969170897,"address":"529 Grant St. Suite B","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":9,"name":"Dierdorfer Gold","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.9000000954,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","description":"From the Goose Island website:\n\n\n\"Our IPA recalls a time when ales shipped from England to India were highly hopped to preserve their distinct taste during the long journey. The result, quite simply a hop lover's dream. And this classic ale adds a fruity aroma, set off by a dry malt middle, to ensure that the long hop finish is one you'll remember.\";\"0","ibu":11,"name":"Goose Island IPA","state":"Illinois"},{"abv":10,"category":"Belgian and French Ale","city":"Breendonk","coordinates":[51.0442,4.3257],"country":"Belgium","description":"In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\n\n\n \n\n\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\n\n\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \n\n\nAbout Maredsous\n\n\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\n\n\"These beers have long been my favourites. Above all the 10° is an especially tasty beer.\";\"0","ibu":99,"name":"Maredsous 10 Tripple"},{"abv":6.3000001907,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our India Pale Ale is a full-bodied, golden-colored ale that is exceptionally refreshing. The “Double” refers to the beer’s huge hop character and malt base that give this beer its great complexity.","ibu":25,"name":"India Pale Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.8000001907000005,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"History states that the first Oktoberfest was on October 12, 1810: For the commemoration of the marriage between Crown Prince Ludwig and Princess Therese of Saxe-Hildburghausen. Keeping up with Erie Brewing’s German brewing influence, our brewer creates Fallenbock, a classic Oktoberfest lager that is a harmonious marriage of classic malts and hops that has a wonderful clean and crisp flavor to celebrate Autumn and Oktoberfest.","ibu":71,"name":"Fallenbock","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":7.0999999046,"address":"545 Canal Street","category":"North American Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Wickedly tasty red ale packed with a full aroma from dry hopping and a massive hop flavor. Specially brewed with all European malts and West Coast whole flower hops. The result is a rich ruby red color; lacy collar and a feast of hop aroma and flavor.","ibu":23,"name":"Hedonism Ale","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":8.3000001907,"address":"100 Industrial Way","category":"Belgian and French Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":115,"name":"Allagash Fluxus 09","state":"Maine","website":"http://www.allagash.com/"},{"abv":9.5,"address":"22 Park Place","category":"German Lager","city":"Butler","coordinates":[41.0016,-74.3403],"country":"United States","description":"Also referred to as a Doppelbock, this is the strongest beer made by High Point. Rich creamy head with bouquet of wheat malt, black current, clove, and apple. Deep full flavors of caramel and chocolate malt balance with hops for a smooth warming character. The finish is smooth and malty leading to a subtle alcohol and dark caramel finish. The wonderful balance of this beer provides a complex profile that hides the 9.5% alcohol content. The perfect companion for a cold winter night.","ibu":14,"name":"Ramstein Winter Wheat","state":"New Jersey","website":"http://www.ramsteinbeer.com/"},{"abv":10.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":47,"name":"Behemoth Barley Wine","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":7,"address":"2519 Main St.","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"Brewed to give the stout a smoother, almost slick, mouthfeel with a nice finish of coffee provided by Cumberland Coffee and Tea Company. Dark malts are used to give this beer a very complex roast flavor. Lower bittering rates ~30 IBU’s helps put the flavor highlighting the maltiness, and roasted malt. ABV is coming in around 7% on this one!","ibu":68,"name":"Planet Bean Coffee Stout","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Our Black Cat Stout is brewed using a blend of Chocolate, Carafa, Crystal and Munich malts. A small amount of wheat and oatmeal are added to give the beer body and mouth feel. Small amounts of roasted malts are added to give the beer a dry \n\ncoffee finish.","ibu":62,"name":"Black Cat Stout","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.5,"address":"2713 El Paseo Lane","category":"Belgian and French Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","ibu":57,"name":"Abbey Extra","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":3.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"This ale is the product of brewing with a selection of barley and wheat malt, and with no added sugar. This traditional brewing approach provides the smooth malt character which is balanced by a triple hopping of the brew with Pride of Ringwood and Saaz hops. The brew has fermented similarly to its stablemates Pale and Sparkling Ale, with the customary secondary fermentation in the bottle and can.","ibu":25,"name":"Coopers Mild Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.1999998093,"address":"Rue de l'Abbaye 8","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"Yellowish-brown colour, with a more pronounced aroma, more fruits and a slight amount of Demi-Sec. This variety constitutes the largest proportion of production.","ibu":99,"name":"Rochefort 8","state":"Namur"},{"abv":14.02814757274012,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":63,"name":"Oak Stout","state":"Washington"},{"abv":9.210130361482774,"address":"300 West Fourth Street","category":"North American Ale","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":32,"name":"Hopluia","state":"Nebraska"},{"abv":14.48591024181651,"address":"Brenplatz 7","category":"German Ale","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":30,"name":"See-Weizen Bio-Hefeweizen","state":"Baden-Wrttemberg"},{"abv":6.8000001907000005,"address":"2804 13th Street","category":"British Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":97,"name":"Cow Palace Scotch Ale","state":"Nebraska"},{"abv":10,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","ibu":117,"name":"Delirium Noël","state":"Oost-Vlaanderen"},{"abv":6.397422222536892,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":33,"name":"Belgian Tripel","state":"California"},{"abv":6.659628359073237,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":106,"name":"Steelie Brown Ale","state":"Washington"},{"abv":5.5999999046,"address":"175 Bloor Street East","category":"Belgian and French Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","description":"This full-bodied ale is brewed with roasted malts and a hint of Dark Belgian sugar for a perfectly balanced taste.","ibu":18,"name":"Full Moon Winter Ale","state":"Ontario"},{"abv":6.016452350490113,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":32,"name":"Bière de Mars","state":"Luxembourg"},{"abv":4.8000001907000005,"address":"Wielandstrae 14-16","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2292,6.7925],"country":"Germany","ibu":22,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":13.160845571192741,"address":"1080 West San Marcos Boulevard","category":"British Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":62,"name":"Old English Ale","state":"California"},{"abv":13.780431098974159,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":79,"name":"Tripel Vision","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.5,"address":"20, rue d'Houdeng","city":"Le Roeulx","coordinates":[50.5018,4.1086],"country":"Belgium","ibu":80,"name":"Brune / Bruin","state":"Hainaut"},{"abv":2.915223542096955,"address":"620 South Madison Street","category":"North American Lager","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":83,"name":"Light Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4,"address":"1213 Veshecco Drive","category":"Belgian and French Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Hot, Hazy summer days call for a craft beer that refreshes. Have no fear – Sunshine Wit is here! Sunshine Wit is a refreshingly smart-assed ale that will satisfy, especially when the mercury is rising. Add a slice of orange for an extra blast of flavor! Sunshine Wit is a “white ale” or “wit” – a hazy yellow wheat beer with a subtle citrus flavor and remarkable drinkability at 4.0% alcohol by volume. Let sunshine wit help you chill out on the hottest, humid, heat-stricken days of summer.","ibu":6,"name":"Sunshie Wit","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":12.953636064536111,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":61,"name":"Silver Cream","state":"Wisconsin"},{"abv":8.547218119330038,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":73,"name":"Honey Lager","state":"Nebraska"},{"abv":12.618262267567733,"category":"German Ale","city":"Sanctuary Cove","coordinates":[-27.8539,153.359],"country":"Australia","ibu":119,"name":"Golden Harvest Weizenbier","state":"Queensland"},{"abv":13.007494334431986,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":12,"name":"1845 Celebration Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":5.570675003331223,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":90,"name":"5th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.8000001907000005,"address":"639 Conner Street","category":"North American Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":43,"name":"Blind Tiger Pale Ale","state":"Indiana"},{"abv":1.8506422821641633,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":51,"name":"Schlafly Pilsner","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":2.7831048035526464,"address":"4301 West Wisconsin","category":"German Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":23,"name":"Winnebago Wheat","state":"Wisconsin"},{"abv":11.436448961734015,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":28,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":12.960956713199264,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":32,"name":"Thomas Kemper Porter","state":"California"},{"abv":9.681704721592258,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":96,"name":"Black Hawk Stout","state":"California"},{"abv":7.730934976510632,"address":"2920 North Henderson Ave","category":"North American Lager","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":10,"name":"Golden Wheat","state":"Texas"},{"abv":12.229570315207829,"category":"North American Lager","city":"Rose City","coordinates":[44.4214,-84.1167],"country":"United States","ibu":29,"name":"Amber Lager","state":"Michigan"},{"abv":4.9000000954,"address":"Brauerei-Diebels-Strae 1","category":"North American Ale","city":"Issum","coordinates":[51.5331,6.4213000000000005],"country":"Germany","ibu":86,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":6,"address":"3178-B Bladensburg Rd. NE","category":"North American Ale","city":"Washington","country":"United States","description":"The Public","ibu":21,"name":"The Public","state":"DC","website":"http://www.dcbrau.com/"},{"abv":3.3092869787338253,"address":"One Busch Place","category":"Irish Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Born of Irish tradition, this all-malt ale uses kilned and toasted malts to produce its all-natural, signature red shade. A beer with exceptional balance, Irish Red displays an initial sweetness that fades to a clean, dry finish.","ibu":59,"name":"Michelob Irish Red","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"(512) India Pale Ale is a big, aggressively dry-hopped American IPA with smooth bitterness (~65 IBU) balanced by medium maltiness. Organic 2-row malted barley, loads of hops, and great Austin water create an ale with apricot and vanilla aromatics that lure you in for more.","ibu":59,"name":"(512) IPA","state":"Texas","website":"http://512brewing.com/"},{"abv":4.6999998093,"address":"12 Old Charlotte Highway","category":"Other Style","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"An invigorating wheat beer with 100% organic grains, a hint of rye and the tang and hue of organic hibiscus, this refreshing brew is as cool as the breeze that blows down from Mount Mitchell to Cattail Peak. Enjoy this delicious creation when the hottest summer day demands the best of the Blue Ridge.","ibu":96,"name":"Cattail Peak","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":10,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Chicken Killer Barley Wine is the revolutionary beer that will someday define America's unique Barley Wine style. It is brewed with twice the ingredients of the Santa Fe Brewing Company's other beers, and only half the usual amount of liquid is extracted from these ingredients. This makes one substantial beer. At over ten percent alcohol, Chicken Killer is actually as substantial as wine, but this is not to say that it is difficult to drink. On the contrary; be careful with this one. The flavors of the beer are at first as overwhelming as the intense Santa Fe sun. But in the same way our sun gives us the unrivaled brilliant colors of Santa Fe, the potency of Chicken Killer gives us the remarkable spectrum of flavors that can be found in no other beer, in no other city. If you did not have the opportunity to try last year's vintage, come try this year's!","ibu":65,"name":"Chicken Killer Barley Wine","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":3.5,"address":"209 Lakeside Avenue","category":"Other Style","city":"Coeur d'Alene","coordinates":[47.6745,-116.784],"country":"United States","ibu":44,"name":"Huckleberry Ale","state":"Idaho","website":"http://www.cdabrewing.com/"},{"abv":7.5,"address":"9750 Indiana Parkway","category":"Irish Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":67,"name":"Alpha Klaus Xmas Porter","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6.75,"address":"215 1/5 Arch St.","category":"Other Style","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This Wheat ale is made with a little Voodoo Twist. We use our house Belgian Ale yeast and add the average unmalted wheat, wheat, barley,raw oats, malted rye and just add more of each. Hopped evenly and spiced with coriander, bitter and sweet orange peel, juniper berries, 12 varieties of peppercorns,lemon grass and caraway. About 6.75% alc by vol. \n\n\nBottle Conditioned and Refermented. NOT A WIT BIER!!! Just stuff we like in beer that goes great with food. \n\n\nThis beer is to be the answer to those hot summer days. Blows away carbonated water!!!!!","ibu":115,"name":"White Magick of the Sun","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":8.5,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"Barley Wine Style Ale is a big beer made with six different malts (Pale Ale, Crystal, Caramunich, Wheat, Chocolate and Roasted Barley) and balanced with a very full hop charge of Summit, Challenger and Fuggles hops. It is a deep reddish brown color with a complex fruity nose, a very full body, and an interesting balance between grains and hops which ends with a pleasing dry taste. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit.","ibu":55,"name":"Pugsley's Signature Series Barley Wine Style Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.5,"address":"2804 13th Street","category":"German Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":62,"name":"Tin Lizzie Hefeweizen","state":"Nebraska"},{"abv":4.5999999046,"address":"2804 13th Street","category":"Irish Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":44,"name":"Princess of Darkness Porter","state":"Nebraska"},{"abv":4.141040444889757,"address":"35-C West Sunset Way","category":"North American Ale","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":83,"name":"Frosty Frog","state":"Washington"},{"abv":4.6999998093,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":19,"name":"Cypress Honey Lager","state":"British Columbia"},{"abv":3.2680782512313944,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":96,"name":"Nut Brown Ale","state":"British Columbia"},{"abv":5.0999999046,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":62,"name":"Ur-Pils"},{"abv":11.085080813963746,"address":"Zornedinger Strae 2","category":"German Ale","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":87,"name":"Ur-Weisse","state":"Bayern"},{"abv":7.5,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The flavour of this beer is pleasantly soft and is characterized by a delicate bitterness where the balance between malt and hop is based upon a fruity orange taste with a straight fresh after taste (7.5% alcohol content)","ibu":103,"name":"Watou Tripel","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":4.9000000954,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Velvety black and perfectly opaque, our bottled Dry Stout is the somewhat livelier companion to our popular draught version of this enduring style. This surprisingly smooth, drinkable beer is a delightful harmony of smoky roasted flavors and tangy, coffee-like notes.","ibu":50,"name":"Boulevard Dry Stout","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5.5999999046,"address":"39176 Argonaut Way","category":"North American Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":111,"name":"Grid Iron Amber Ale","state":"California"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":25,"name":"Flemish Primitive Wild Ale (Spoon Whacker)","state":"Oost-Vlaanderen"},{"abv":4.4000000954,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":12,"name":"Silk Lady","state":"Washington"},{"abv":14.268860112355096,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":47,"name":"Brunette Nut Brown Ale","state":"Nebraska"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our take on a classic summer ale. A toast to weeds, rays, and summer haze. A light, crisp ale for mowing lawns, hitting lazy fly balls, and communing with nature, Hocus Pocus is offered up as a summer sacrifice to clodless days.\n\n\nIts malty sweetness finishes tart and crisp and is best apprediated with a wedge of orange.","ibu":7,"name":"Hocus Pocus","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.465561481324226,"address":"800 LaSalle Plaza","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":94,"name":"St. Paul Pilsner","state":"Minnesota"},{"abv":4.5999999046,"address":"33 Main Street","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":2,"name":"Cappa Cappa Crusher","state":"New Jersey"},{"abv":3.8434220923720375,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":20,"name":"Hard Times Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":2.597626430307197,"address":"Einsteinstrae 42","category":"German Lager","city":"Mnchen","coordinates":[48.1355,11.6009],"country":"Germany","ibu":67,"name":"Unimator","state":"Bayern"},{"abv":7.261499035714685,"address":"Augsburgerstrae 41","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":90,"name":"König Ludwig Dunkel","state":"Bayern"},{"abv":14.800897276911616,"address":"Lichtenfelser Strae 9","category":"German Ale","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":19,"name":"Kapuziner Weißbier","state":"Bayern"},{"abv":9.14485399001074,"address":"Taipei","category":"North American Lager","city":"Taipei","coordinates":[25.026,121.472],"country":"Taiwan, Province of China","ibu":47,"name":"Beer"},{"abv":8.616888864880682,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":64,"name":"XXXXX Stout","state":"Washington"},{"abv":1.2691479412820383,"address":"617 Fourth Street","category":"North American Lager","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":59,"name":"Hefeweizen","state":"California","website":"http://www.lostcoast.com/"},{"abv":6.789439977885486,"address":"16 East Route 66","category":"Irish Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":51,"name":"Blackbird Porter","state":"Arizona"},{"abv":0.12370529633249694,"city":"Kulmbach","coordinates":[50.1077,11.453],"country":"Germany","ibu":55,"name":"Original Pils","state":"Bayern"},{"abv":0.5297224720434357,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":35,"name":"Capital Maibock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":2.728802922338586,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":9,"name":"Hopping Turtle Pale Ale","state":"Wisconsin"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Genuine Honey Lager was introduced in 2005 in response to consumer demand for honey lagers. Labatt Genuine Honey uses genuine, all-natural, 100% Canadian honey to give consumers a softer, smoother taste. This naturally-aged lager is brewed to the same uncompromising standards applied to every Labatt beer. Genuine Honey Lager is the real thing!","ibu":40,"name":"Genuine Honey Lager","state":"Ontario"},{"abv":9.516771193436096,"address":"PO Box 316","category":"Irish Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":93,"name":"4868 Dark Wheat","state":"California"},{"abv":5.1999998093,"category":"Other Style","country":"United Kingdom","description":"A silky, crisp, and rich amber-colored ale with a fluffy head and strong banana note on the nose.","ibu":66,"name":"Wells Banana Bread Beer","website":"http://www.bombardier.co.uk/bombardier"},{"abv":6,"address":"High Street","category":"Other Style","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":96,"name":"Winter Welcome 2008-2009","state":"North Yorkshire"},{"abv":5.8000001907000005,"address":"Vesterflledvej 100","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","description":"Original Dark Lager is brewed according to J.C. Jacobsen's original recipe. The colour is chestnut. It has a Hersbrucker hiop aroma while the floor malted Munich malt adds a caramel character. The carbonisation is gentle and the hop bitterness is soft. Enjoy at 6-8C.","ibu":98,"name":"Jacobsen Dark Lager"},{"abv":5.6999998093,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Orchard White is an unfiltered, bottle conditioned Belgian-style witbier. This hazy, straw yellow beer is spiced with coriander, citrus peel and lavender added to the boil and whirlpool. A spicy, fruity yeast strain is used to add complexity, and rolled oats are added for a silky texture.","ibu":85,"name":"Orchard White","state":"California","website":"http://www.thebruery.com/"},{"abv":4.5,"address":"80 LAMBERT LANE","category":"British Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"It's been with us from the start and hasn't changed since that first brew way back in 1996. Ample quantities of caramel malt give this English ale a soft copper hue and the colorful addition of carapils malt adds a slight sweetness you might mistake for honey.","ibu":30,"name":"River Horse Special Ale","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":8,"address":"339 Fairground Rd","category":"Belgian and French Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"The Dubbel is a nice brown creamy sweet, malty and strong ale. It is a traditional Belgian dubbel ale with a secondary fermentation. This complex ale has many flavor characteristics. At 8% abv you will notice a slight alcohol warmth at the finish .","ibu":8,"name":"Eislin Dubbel","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":6,"address":"140 North Third Street","category":"Other Style","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This Belgian style pumpkin ale was inspired by the legendary midnight ride of Ichabod Crane. It is a Belgian style ale complimented by a light touch of pumpkin and spice. Fresh toasted pumpkins are added in the mash with the grains adding a touch of the season to the brew. The complex fruitiness and dryness of the yeast is enhanced by the addition of sugars during fermantation. The beer is lightly spiced with pumpkin spice, all spice, and brown sugar. The pale and toasted malts used, provide a pie crust taste and smell in the beer as the higher alcohol's produced round out the finish.","ibu":4,"name":"Ichabod's Midnight Ride","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":7.844195257839369,"address":"140 North Third Street","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"0","ibu":58,"name":"Lovitz Lager \\\"Watermelon Lager\\\";\"8","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":5,"category":"Belgian and French Ale","city":"Tournai","coordinates":[50.6059,3.3884],"country":"Belgium","description":"The Daas Organic Witte is very well received by women beer drinkers; it is a naturally cloudy Belgian wheat beer. Its fruity blend of subtle citrus (baked oranges) and spice (coriander) flavors compliment its crispy dry and bitter hop finish.","ibu":57,"name":"Daas Organic Witte","website":"http://www.daasbeer.com/"},{"abv":5.3000001907,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Sun Dog is an unfiltered beer, with a naturally cloudy appearance and fuller texture which allows it to stand up to spicy foods like Thai noodle salads and Cuban sandwiches. The beer is best served in a tall, wide-mouthed glass which opens up the aromas of the beer and showcases its beautiful long-lasting head of white foam.","ibu":100,"name":"Sun Dog Amber Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":12,"name":"Alena","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":6,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Black Diamond Bock is a rich, malty brew, made with traditional German malts and hops and fermented with a lager yeast. Aged for months for a rich but smooth malty taste. A nice reward for enduring your winter months.","ibu":23,"name":"Saranac Black Diamond Bock","state":"New York","website":"http://www.saranac.com"},{"abv":5,"category":"British Ale","country":"United Kingdom","ibu":31,"name":"Duchy Originals Organic English Ale"},{"abv":5.1999998093,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A German style Pilsner, pale gold in color, medium bodied with a malty aroma and a crisp hop bitterness (100% Sterling hops). Uber Pils is brewed with three Great Western and two Weyermann malts, Czech Pils Yeast and Free Range Coastal Waters. UberFest Pils is available in the classic Rogue 22-ounce bottle and kegs, from late autumn through early spring. No Chemicals, Additives, or Preservatives","ibu":112,"name":"Über Pilsner","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Weldspatter IPA is not your typical India Pale Ale. First of all, it isn’t as aggressively hopped as many other American versions. Second, it isn’t quite as pale. Balance is a lovely thing in beers and Weldspatter IPA achieves balance without compromising hop presence. The hop flavor and aroma abound, but the bitterness is held in check to give our IPA a pleasant malt character as well.","ibu":83,"name":"Weldspatter IPA","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":8,"address":"152 Avenue St Simond","city":"Aix les Bains","coordinates":[45.7075,5.9153],"country":"France","ibu":93,"name":"Yeti"},{"abv":10.199999809,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"By far the biggest dog in the yard... Horn Dog Barley Wine is a dark and malty English-style Barely Wine that is aged for a minimum of three months before being packaged. Like a fine wine, this beer will only get better with age when stored at optimum conditions.","ibu":15,"name":"Horn Dog","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.6999998093,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"Fish Tale Organic India Pale Ale is a medium-bodied beer with a rich golden color. The organic pale and crystal malts lay down a firm malt body. This provides the backbone for an assertive hop profile featuring organic Pacific Gem. The moment the Mighty Fish Brewers sampled this pungent and resinous New Zealand hop, they knew it would be perfect for their Organic I.P.A. The result: A Cascadian treasure.","ibu":48,"name":"Organic India Pale Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.8834245498579705,"address":"13300 Bothell-Everett Highway #304","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":93,"name":"Golden","state":"Washington"},{"abv":12.245452367429003,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":99,"name":"Lager","state":"British Columbia"},{"abv":5,"address":"Oberdorferstrae 9","category":"German Ale","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":47,"name":"Weizen"},{"abv":9.313137028681512,"address":"39176 Argonaut Way","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":31,"name":"Red Ale","state":"California"},{"abv":8,"address":"15 Rowland Way","category":"British Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":43,"name":"Kilt Lifter Scottish Ale","state":"California","website":"http://www.moylans.com/"},{"abv":11.03562694982872,"address":"33180 Cape Kiwanda Drive","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","ibu":3,"name":"Bridal Ale 2005","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":7.456711545382543,"address":"7791 Egg Harbor Road","category":"Other Style","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":69,"name":"Door County Cherry Wheat","state":"Wisconsin"},{"abv":4.9000000954,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","ibu":70,"name":"Columbus Pils","website":"http://www.stieglbrauerei.at/"},{"abv":9.821479707553655,"category":"Irish Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":117,"name":"Railroad Street Porter","state":"Wisconsin"},{"abv":0.7196508647816413,"category":"North American Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":32,"name":"Transcendental Wheat Beer","state":"Wisconsin"},{"abv":0.5808150254220845,"address":"2100 Casino Drive","city":"Laughlin","coordinates":[35.1584,-114.573],"country":"United States","ibu":33,"name":"Colorado Belle Dark","state":"Nevada"},{"abv":4.784469232773433,"category":"North American Lager","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":56,"name":"Smoked Porter","state":"Illinois"},{"abv":4.9000000954,"address":"Inagh","city":"Ennis","coordinates":[32.3293,-96.6253],"country":"Ireland","ibu":58,"name":"Red Biddy / Real Biddy"},{"abv":9.110960348853304,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","ibu":84,"name":"Echte Kriek","state":"West-Vlaanderen"},{"abv":5,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":104,"name":"Pale Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":13.46952829749715,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":4,"name":"Clearview Light","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":7,"address":"ul. Bolesawa Chrobrego 26","category":"German Lager","city":"Namysłów","country":"Poland","ibu":112,"name":"Rycerskie"},{"abv":6,"category":"Irish Ale","city":"Rochester","coordinates":[43.161,-77.6109],"country":"United States","ibu":74,"name":"Ironhead Porter Old No. 3","state":"New York"},{"abv":8.393152983889522,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"This Wit beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing.","ibu":34,"name":"Satsuma Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":1.8555408583803112,"address":"300 West Fourth Street","category":"North American Lager","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":26,"name":"Cortland Wheat","state":"Nebraska"},{"abv":11.897016371604911,"category":"North American Lager","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":9,"name":"Icemaster","state":"Wisconsin"},{"abv":5,"address":"50 North Airport Parkway","category":"Other Style","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":76,"name":"Razz-Wheat","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":9.284950654646124,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":118,"name":"Chapeau Tropical Lambic","state":"Vlaams Brabant"},{"abv":8.284925874346747,"address":"161 Duke Street","category":"North American Lager","city":"Glasgow","coordinates":[55.8593,-4.2324],"country":"United Kingdom","ibu":36,"name":"Lager","state":"Scotland"},{"abv":0.9785016417935133,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":42,"name":"Capital Munich Dark","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":11.86626283726126,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":113,"name":"Nitro Pale","state":"Wisconsin"},{"abv":13.473434941770758,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":104,"name":"Moll Dubh Irish Ale","state":"Wisconsin"},{"abv":0.19730777232505714,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":47,"name":"White Fathers Witbier","state":"Wisconsin"},{"abv":6,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":66,"name":"Blanche des Honnelles","state":"Hainaut"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced nationally in 1982, Bud Light is brewed using a blend of domestic and imported hops as well as a combination of barley malts and rice. It contains more malt and hops by ratio of ingredients than Budweiser, which gives the brew a distinctively clean and crisp taste.","ibu":115,"name":"Bud Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.126195817719632,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":35,"name":"Meyer ESB","state":"California"},{"abv":11.20186796470929,"address":"249 North Redwood Highway","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":99,"name":"ESB","state":"Oregon"},{"abv":5.4000000954,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":32,"name":"Extra Pale Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":4.5,"address":"Oostrozebekestraat 43","category":"Belgian and French Ale","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":62,"name":"St. Louis Gueuze","state":"West-Vlaanderen"},{"abv":14.515191619394388,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":113,"name":"Windy City Pilsner","state":"Illinois"},{"abv":7.1999998093,"address":"231 San Saba Court","category":"British Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Our winter seasonal is inspired by the great ales of the UK but brewed with a distinctively American attitude. English crystal malt gives Phoenixx its subtle toffee and caramel notes, but this ale is about hops. The blend of English hops, highlighted by its namesake, Phoenix, yields a complex hop character that dominates this special brew.","ibu":113,"name":"Phoenixx Double ESB","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":8.5,"address":"3924 West Spruce Street Suite A","category":"British Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Big Sound Scotch Ale is dedicated to our good buddy Gino, the most punk rock bagpiper you'll ever meet, and the rest of the men and women of Tampa Bay Pipes and Drums. Brown in color, Big Sound has huge notes of dark sweet toffee with underlying mild notes of coffee in the aroma. The flavor starts with a slight note of cherry and then opens into a Goliath of a malt character with notes of dark sweet toffee, slight hints of coffee and mild notes of toasted bread in the finish. Big Sound Scotch Ale pairs well with Haggis, Highland Games, Huge Heads and Enormous Pillows and of course Bagpipe music.","ibu":79,"name":"Big Sound Scotch Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":8,"address":"Guido Gezellelaan 49","category":"Belgian and French Ale","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","description":"Gouden Carolus Hopsinjoor completes the taste pallet of the gamma Carolus-beers. \n\n\n\"Hopsinjoor\" is a wordplay to for one thing the several hops which were used, and on the other hand the typical character of Mechelen of Gouden Carolus: the figure \"opsinjoor\" is intertwined with the history of Mechelen. \n\n\n4 types of hops are used: Golding, Spalt, Hallertau and Saaz. These hops were fractioned at several times in the cooking process in order to keep a maximum of aroma.\n\n\nRegarding to taste we can say that the beer has a gentle, but nevertheless bitter aftertaste. Gold-yellow colour. Hoppy aroma.","ibu":115,"name":"Gouden Carolus Hopsinjoor","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5.8000001907000005,"address":"16 Tobey Road","category":"German Lager","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Originally brewed to celebrate the beginning of the German brewing season and the 1810 wedding of crown prince Ludwig of Bavaria and his bride-to-be, princess Therese of Saxon-Hildburghausen. This amber beer was brewed in March (\"Marzenbier\") and left to age in cool lagering caves during the heat of the summer. Our rich and satisfying Bavarian-style OctoberFest comes from a special blend of imported German malts that creates a full-bodied brew and stresses a malty flavor and lingering aroma. Gently hopped and delicately balanced, its true-to-style, slow fermentation and long, cold maturation produces a luxuriously smooth, award-winning brew.","ibu":45,"name":"Hooker Oktoberfest","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":5.8000001907000005,"address":"33180 Cape Kiwanda Drive","category":"North American Ale","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","description":"Our American Brown Ale has a dark brown color, with a balanced aroma of roasted malts and Northwest-grown hops. The sweetness of the ale and crystal malts blend beautifully with the assertive flavors of Cascade and Mt. Hood hops. A brew to be savored.\n\n\nThis beer originated as a prize-winning homebrew many years ago. When Darron, the Head Brewer, began designing the beers for the Pelican Pub and Brewery, he adapted his old 5 gallon homebrew recipe to his new 15 bbl (465 gallon) brewery. It was well worth the effort, for not only has the Doryman's Dark Ale been a perennial favorite here at the Pelican Pub, but it has garnered prestigious professional awards.","ibu":63,"name":"Doryman's Dark Ale","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":4.9000000954,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Foster's® Lager is a uniquely Australian beer, brewed with the finest sun-dried malted barley, the purest water, and Foster's® own specially bred 'Pride of Ringwood' hops imported directly from Australia to give the beer an authentic flavor. Foster's® Lager Beer has always been at the forefront of brewing technology and the Foster's® Lager brewed today is the result of over a century of attention of the brewing art. Quality has been the strength of Foster's® since its earliest days and remains a paramount concern at every stage of the beer's journey from brewery to consumer. Foster's® crisp, clean flavour won it immediate international acclaim when it was first brewed in Melbourne in 1888. Today, more than one hundred years later, it is still recognized as one of the world's best beers.","ibu":10,"name":"Foster's Lager Beer","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":7.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":91,"name":"Helios","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":8.8999996185,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Enjoy the ‘twilight’ for the bright and brassy hops!","ibu":14,"name":"Yakima Twilight","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.595216373623831,"address":"701 Galveston Ave","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","ibu":29,"name":"Pecker Wrecker","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":7.1999998093,"address":"Viale Venezia 9","category":"German Lager","city":"Udine","coordinates":[46.0597,13.2269],"country":"Italy","description":"Birra Moretti La Rossa is a double boch beer produced using high quality 100% malted barley, giving it a rich sweet taste and an intense fragrance of roasted malt. The amber color that characterizes the beer, comes from the kind of malt used in the recipe (malt is dried, roasted barley). Another key ingredient is hops, the variety used is particularly aromatic, giving a characteristic bitter aftertaste and a delicate fragrance to the beer. The Master Brewers advise a service temperature between 10° and 12° C.","ibu":112,"name":"Birra Moretti La Rossa"},{"abv":4.1999998093,"address":"PO Box 271","city":"Manila","coordinates":[14.5833,120.967],"country":"Philippines","ibu":1,"name":"San Miguel 1516"},{"abv":3.2184306621862016,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Dark Amber Ale","ibu":99,"name":"Sharkbite Red","state":"California","website":"http://www.portbrewing.com/"},{"abv":6,"address":"529 Grant St. Suite B","category":"German Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A traditional old world German Oktoberfest made with German grains, yeast and hops.","ibu":114,"name":"Barktoberfest","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":11.542495840173322,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":85,"name":"Solar Flare Summer Ale","state":"Nebraska"},{"abv":5.5,"address":"50 North Airport Parkway","category":"North American Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":72,"name":"Gnaw Bone Pale Ale","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":6.062919484578591,"address":"Bolkerstrae 41-47","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2261,6.7745],"country":"Germany","ibu":82,"name":"Altbier","state":"Nordrhein-Westfalen"},{"abv":12.06065045213114,"address":"3560 Oakwood Mall Drive","category":"Irish Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":80,"name":"Poplar Porter","state":"Wisconsin"},{"abv":11.339359272226762,"address":"1327 North 14th Street","category":"German Lager","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":44,"name":"Maslifter Oktoberfest","state":"Wisconsin"},{"abv":8.690356761764646,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":70,"name":"Oude Kriek","state":"Vlaams Brabant"},{"abv":3.89064524260635,"category":"German Lager","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":38,"name":"Adler Bräu Doppel Bock Beer","state":"Wisconsin"},{"abv":13.126517888251234,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":59,"name":"Ding Ding Double IPA","state":"California"},{"abv":0.6504332389622036,"address":"24 Lake Mary Road","category":"North American Ale","city":"Mammoth Lakes","coordinates":[37.6484,-118.983],"country":"United States","ibu":35,"name":"Amber","state":"California"},{"abv":5.9784424099796984,"address":"1004 South Olde Oneida","category":"Irish Ale","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":29,"name":"Masterpiece Porter","state":"Wisconsin"},{"abv":8,"address":"Nieuwbaan 92","city":"Merchtem-Peizegem","coordinates":[50.985,4.2226],"country":"Belgium","ibu":50,"name":"Satan Red","state":"Vlaams Brabant"},{"abv":6,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":16,"name":"Jenlain St Druon de Sebourg"},{"abv":6.6999998093,"address":"1201 First Avenue South","category":"North American Ale","city":"Seattle","country":"United States","ibu":86,"name":"Thunder Head IPA","state":"Washington"},{"abv":6.8000001907000005,"address":"390 Capistrano Road","category":"German Lager","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":19,"name":"Illuminator Doppelbock","state":"California"},{"abv":8.6999998093,"address":"901 SW Simpson Avenue","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":21,"name":"Bond Street 19th Anniversary","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.663343891488996,"address":"417 North Broadway","category":"North American Ale","city":"Red Lodge","coordinates":[45.1913,-109.247],"country":"United States","ibu":62,"name":"Bent Nail IPA","state":"Montana"},{"abv":6,"address":"800 East Lincoln Avenue","category":"Other Style","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Ever been in a warm, cozy cabin and had a secret desire to get snowed in? To celebrate the winter season, we offer our Isolation Ale - a traditional winter brew made with premium malts imported from England. It's just one of the reasons Isolation Ale stands alone.","ibu":21,"name":"Isolation Ale","state":"Colorado"},{"abv":9.989445250787355,"address":"75-5629 Kuakini Highway","category":"Other Style","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","description":"Wailua is Hawaiian for two fresh water streams mingling. This was just the inspiration we needed for our Limited Release wheat ale brewed with tropical passion Fruit. A refreshing citrusy, sun-colored ale with the cool taste of Hawaii.","ibu":26,"name":"Wailua","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":5,"address":"905 Line Street","category":"German Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"A Brewer's Select Series, Golf is a fest-weisse hybrid or 'Festeweizen.' It will weigh in at 5.0% and is made with Munich, Wheat, and CaraVienna malts and Spalt hops.","ibu":81,"name":"Golf","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8,"address":"196 Alps Road","category":"British Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Terrapin Midnight Project Brew Two 2009. Sometime around midnight in a city nobody can agree on, the idea for Terrapin and Left Hand to brew a collaboration beer was born. Depth Charge is the second in the series of one-time releases between the two breweries. Be wary of the calm before the storm. This creamy, deeply delicious milk stout will seduce you into submission while the explosion of hand roasted gourmet espresso will blow you into next week. We Shall Drink in the breweries. We Shall Drink in the pubs, We Shall Drink the the comfort of our homes. We Shall Never Surrender.","ibu":119,"name":"Terrapin Midnight Project Depth Charge Espresso Milk Stout","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8.8000001907,"address":"No-254, Colombo Road","city":"Colombo","coordinates":[38.7548,-9.1883],"country":"Sri Lanka","description":"Lion Imperial Lager, from Sri Lanka, is brewed using the finest natural ingredients - delivering a rich smooth taste and refreshment. Enjoy its bite.","ibu":115,"name":"Imperial Premium Malt Pilsner","website":"http://www.lionbeer.com/"},{"abv":4.702795292179856,"address":"10983 Hills Road","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Kölsch style beer is a golden-blonde ale that is our version of Cologne's native style. Soft, subtle maltiness and a clean finish make it a great thirst-quencher. Kölsch pairs well with spicy foods, or by itself. Enjoy with friends and in good health. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":12,"name":"Round Barn Kölsch Style","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":6.6999998093,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"This Farmhouse Ale traces its roots to the small rustic breweries of Southern Belgium. The word Saison comes to us from the French language and it means Season. Lightly spiced with Organic Ginger, Orange Peels, Black Pepper and Grains of Paradise, this brew promises to quench your thirst on the hottest Southern California days or wherever your travels may take you. Available in 750 ml bottles and on draft at select inspired locations.","ibu":38,"name":"Red Barn Ale","state":"California","website":"http://www.lostabbey.com/"},{"abv":4.5,"address":"3115 Broad Street","category":"Other Style","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Ruddy golden, with yeast driven esters of banana, spicy clove, and nutmeg all wrapped up with a generous dose of rapscillion delight.","ibu":102,"name":"Weizen Bam Bière","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":5.25,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A kölsch-style beer, Full Circle is a refreshing celebration of our brewery’s belief in balance. The soft, well-rounded malt character, light hop profile and crisp finish bring us back around to the familiar tastes of classic, thirst-quenching beer. We recommend Full Circle with fish and just about anything from the grill.","ibu":98,"name":"Full Circle","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":6.5,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"TONGERLO CHRISTMAS 6,5°\n\nCopper-coloured beer of pure spring barley, with a touch of vanilla in the aroma, a fruity and complex flavour and a smooth aftertaste.","ibu":62,"name":"Tongerlo Christmas","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":6.928579295122974,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Pale Ale is a golden amber brew, made with Cascade hops from the Yakima Valley. Adding Cascades during conditioning captures the rich aroma of the hop, and completes the clean, well-balanced flavor of our American pale ale. Crisp, refreshing, exotically aromatic, and available all year.","ibu":69,"name":"Pale Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A Northwest Style IPA. Nice Balance of Malt and Hops, not too extreme in either direction. 2 Ingredients: Maris Otter Malt, Amarillo Hops.","ibu":6,"name":"Hoppy Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"5 Bartlett Bay Road","category":"Other Style","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our Holiday Offering\n\nIn pre-christian times, the Celebration of darkness and light was marked with great halls filled with smoke & mirrors. Guilded goblets brimming with seasonal brews were lifted to lips, speaking a language no longer known. \n\nCenturies pass.\n\n\nThe winter wind finds its way through heavy wood doors. There is a solemn business of monks to be done. But also brewing, a season of celebration is about to begin....\n\nMore years pass.\n\nThe modern age. \n\nThe present connects the past through the brewer's art and a new beer is born.\n\nFeast of Fools... \n\nA perfect dessert beer brewed exclusively for the holiday season. Hand bottled, champagne corked. \n\nOur inky, rich, black stout, with the addition of raspberries.","ibu":90,"name":"Feast of Fools","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Amber Colored lager with a nice caramel malt flavor backed by a nice dose of Imported Hersbrucker Hops for a nice easy drinking lager.","ibu":41,"name":"Fegley's Amber Lager","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":3.8564641538519115,"address":"200 Dousman Street","category":"Irish Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":4,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":1.8217625825174422,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":17,"name":"Caber Tossed","state":"California"},{"abv":12,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":76,"name":"Malheur Black Chocolate 2003","state":"Oost-Vlaanderen"},{"abv":4.7300000191,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":35,"name":"Redwing","state":"Colorado"},{"abv":5.314462843843989,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":14,"name":"Frozen Tundra","state":"Wisconsin"},{"abv":5.400529328287414,"address":"701 West Glendale Avenue","category":"Other Style","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":105,"name":"Anniversary Ale","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":6.8000001907000005,"address":"Pramons gatv 12","category":"Irish Ale","city":"Utena","country":"Lithuania","ibu":68,"name":"Porter"},{"abv":4.103092325945314,"address":"Hartington","city":"Buxton","coordinates":[53.1407,-1.8084],"country":"United Kingdom","ibu":44,"name":"Old Izaak","state":"Derby"},{"abv":10.986336177381311,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":58,"name":"Winterfest","state":"South Carolina"},{"abv":9.079025480164425,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":20,"name":"Pioneer Black River Red","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":6.9000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"An \"India Pale Ale\" by definition is highly hopped and high in alcohol (ours is 6.9% alc./vol.).\n\n\nMedium Bodied Refreshing Ale\n\nLight-medium malt character with a heavy dose of over the top hops! Two full weeks of \"dry hopping\" give this beer its abundant hop aroma and crisp hop flavor.","ibu":78,"name":"Stone IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.6999998093,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":86,"name":"Zephyrus Pilsner","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":5.227348839917962,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":87,"name":"Mad Scow Stout","state":"British Columbia"},{"abv":7.5,"address":"Mendoza","category":"North American Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":103,"name":"Cerveza Diablo"},{"abv":4.9000000954,"address":"Papenstrae 4-7","category":"German Lager","city":"Einbeck","coordinates":[51.8162,9.8643],"country":"Germany","ibu":33,"name":"Schwarzbier / Dunkel","state":"Niedersachsen"},{"abv":5.0999999046,"address":"2201 Arapahoe Street","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Looking for something a little different? Brewed with rice and barley malts, Samurai is an easy drinking, unfiltered ale that changes the status quo for unfiltered beers. The addition of rice gives Samurai a slightly fruity, crisp, refreshing and clean taste. This is definitely not your everyday unfiltered beer.","ibu":44,"name":"Samurai","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"With only 88 calories per 341 ml bottle, Labatt Sterling is a light, refreshing beer with 1/3 less calories than regular beers. In other words, it's a great tasting beer...that won't slow you down.","ibu":34,"name":"Labatt Sterling","state":"Ontario"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Crystal was introduced to Ontario in the late 1800s as one of the first lagers brewed by Labatt. World-renowned Saaz hops are used to give this beer a clean, almost sweet taste which nicely balances the fuller body, higher bitterness and richer taste typically associated with traditional lagers.","ibu":46,"name":"Labatt Crystal","state":"Ontario"},{"abv":5,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","description":"Molson beers are imported directly from Canada. Crystal-clear, pure Canadian water, the finest Canadian prairie grains and select European hops give Molson a brewing heritage that dates back to 1786.\n\n\nMolson Canadian is Molson Brewing Company's flagship brand. Starting with crystal clear water, malted barley and the finest hops, Molson Canadian is slowly fermented to produce a smooth, refreshing beer with a genuine taste. Clean and clear, crisp and cold, Molson Canadian is a classic lager.","ibu":92,"name":"Molson Canadian","state":"Ontario"},{"abv":5.4000000954,"address":"310 Mill Creek Avenue","category":"North American Ale","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"One of our distinct classic beers brewed since 1829, Yuengling Lord Chesterfield Ale has as much rich heritage as it does flavor and appeal. Crafted in a unique two-stage European brewing style for enhanced bitterness, it utilizes both conventional kettle hopping and dry hopping after fermentation resulting in a dry sharp finish. Brewed with select hops, its distinct robust flavor is derived from a delicate combination of sweet maltiness and lingering herbal bitterness. Lord Chesterfield Ale's bright gold color is complemented by a lightly laced foam head and fragrant zesty aroma. This fine Ale compares with the very best crafty-style beers. It pairs flawlessly with many foods including seafood dishes and fine cheeses.","ibu":14,"name":"Lord Chesterfield Ale","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":7.841348936446579,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":83,"name":"Stout","state":"North Carolina"},{"abv":6.5,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"The cornerstone of our Harvest series is the beer that started the modern-day fresh hop ale phenomenon in America, our original Harvest Ale. \n\n\nCreated in 1996, Harvest Ale features Cascade and Centennial hops from the Yakima Valley in Eastern Washington. These hops are harvested and shipped as “wet” un-dried hops—the same day they are picked—to our brewery in Chico where our brewers eagerly wait to get them into the brew kettle while their oils and resins are still at their peak.","ibu":50,"name":"Harvest Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":17,"name":"Bigfoot 1996","state":"California","website":"http://www.sierranevada.com/"},{"abv":5,"address":"Ringhofferova 1","city":"Velk Popovice","coordinates":[49.9225,14.6361],"country":"Czech Republic","ibu":83,"name":"Kozel Premium"},{"abv":4.753837788977688,"address":"309 Court Avenue","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":18,"name":"ESB","state":"Iowa"},{"abv":5.5999999046,"address":"279 Springfield Avenue","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":19,"name":"Pacific Coast Ale","state":"New Jersey"},{"abv":8.053234425808428,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":89,"name":"Edelstoff","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":11.393749753408418,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":117,"name":"Zwickel","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":4.9000000954,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":102,"name":"Pilsener","state":"Niedersachsen"},{"abv":8.7761015210372,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":119,"name":"Steinworthy Oktoberfest","state":"Wisconsin"},{"abv":12.637282885582033,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":67,"name":"Blonde Ale","state":"Wisconsin"},{"abv":14.937616577766441,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":60,"name":"Pale Ale","state":"Wisconsin"},{"abv":6,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"ndia Pale Ale is a style of beer that was developed in England during the period of the British Empire. It is derived from bitter ales but contains even more alcohol and hops. This helped preserve the beer on its long sea journey around Cape Hope to India.\n\n\nBritish troops returning from India brought their love of this beer back with them so breweries began brewing it for the home market as well. Sadly, the style had mostly died out in England by the late twentieth century.\n\n\nAmerican home brewers began to brew I.P.A. because of their love for the intense hoppiness of the style. In time American I.P.A.s became much more aggressively bitter and hoppy than their historical predecessors.\n\n\nBig Eye I.P.A. is our version of this wonderful style. American Centennial hops are used exclusively to bitter, flavor, finish, and dry hop the Big Eye. Its full hop flavor is guaranteed to please the palate of the true hop head.","ibu":42,"name":"Big Eye IPA","state":"California","website":"http://www.ballastpoint.com/"},{"abv":11.895060806513056,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":85,"name":"Stuft Pizza Torrey Pines IPA","state":"California"},{"abv":3.7161976767346183,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":79,"name":"Dunkles","state":"Wisconsin"},{"abv":3.5183892896703517,"address":"105 South Second Street","category":"German Lager","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":107,"name":"Rye Bock","state":"Wisconsin"},{"abv":9.53338282201211,"address":"467 North High Street","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":63,"name":"J. Scott Francis ESB","state":"Ohio"},{"abv":3.006623767115685,"category":"Other Style","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":52,"name":"Rambling Raspberry Ale","state":"Missouri"},{"abv":13.71276952151719,"city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":38,"name":"Pirates Pilsner","state":"Ohio"},{"abv":8.701360506789449,"address":"4301 West Wisconsin","category":"North American Ale","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":1,"name":"Trolleycar Stout","state":"Wisconsin"},{"abv":4.884711640710535,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":57,"name":"Panama Limited Red Ale","state":"Illinois"},{"abv":5.101495773608641,"address":"BP 896","city":"Lom","coordinates":[32.3906,-93.3739],"country":"Togo","ibu":24,"name":"Ngoma Awooyo Special"},{"abv":8,"category":"British Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":41,"name":"Double Eagle \\\"High-Test\\\" Scotch Ale","state":"North Carolina"},{"abv":10.224248548046788,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":97,"name":"Celebration Ale 1992","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.224229834692208,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":89,"name":"ESB","state":"Illinois"},{"abv":4,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":88,"name":"Master Brew Bitter","state":"Kent"},{"abv":7.5,"address":"214 Spanish Town","category":"North American Ale","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":110,"name":"Dragon Stout"},{"abv":1.7312464226541746,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":102,"name":"Pine Tar Stout","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5,"address":"10450-L Friars Road","category":"Belgian and French Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","description":"Abbey ale with hints of bubble gum flavor.","ibu":59,"name":"Dubble Fantasy","state":"California"},{"abv":6.1999998093,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"A hops showcase in aroma, flavor and bitterness. We used the delightful Amarillo hop as the most prominent choice.","ibu":62,"name":"Richbrau India Pale Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":13.902448534915838,"address":"2 Sagamore Street","category":"Irish Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Cooper's Cave Ale Company's flagship ale is an Irish Red Ale. Three English Malts and one Belgian Munich Malt make up the grain bill. It is a full bodied Red Ale packed with flavor, blended with American Nugget hops for bitterness and East Kent Golding for flavor and aroma. This ale has turned the heads of many \"dyed in the wool\" American lager drinkers.","ibu":97,"name":"Radeau Red Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"At the Southern Tier Brewing Company, vigorously hopped beer is our standard and inspiration. We continue a commitment to innovation with our most aggressive offering yet. Unearthly is a manifestation of the brewer’s craft; skillfully balancing art and the forces of nature to produce a divine liquid. Delicately pour a taste into a fluted glass. Smell the enchanting aromas of the hops waft forward as your first sip divulges this beer’s fervent soul. To underestimate Unearthly is to trifle with the mysteries of the universe, so please consume wisely.","ibu":76,"name":"Unearthly Imperial India Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":9.1999998093,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Our Anniversary Ale this year stems from 2 pilot beers that were brewed by members of Team Stone. The first was Jeremy Moynier’s incredibly delicious Oatmeal Stout, and the second was Jake Ratzke’s amazing homebrewed Imperial Stout that had authentic Oaxacan chocolate added to the boil. We loved both beers so much that we decided to combine the recipes to make this year’s Anniversary offering: Stone 12th Anniversary Bitter Chocolate Oatmeal Stout. This beer pours deep black with a rich brown head of foam. The aroma is dominated by roast malt and cocoa. Upon tasting, the cocoa (we used unsweetened, unprocessed cacao sourced through our friends at Chuao Chocolatier) really comes through with a deep chocolate flavor and a long lasting bitter finish. The roasted grains used add coffee and licorice accents. It is a thick beer, but not sweet, with the addition of oatmeal in the mash providing a rich, silky mouthfeel that adds to the creamy texture.","ibu":26,"name":"Stone 12 Anniversery Bitter Chocolate Oatmeal Stout","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.5,"address":"1213 Veshecco Drive","category":"North American Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"The view from Oliver Perry Monument across Lake Erie’s historic Misery Bay provides a constant reminder of the hardships endured during the Battle of Lake Erie. Misery Bay IPA is brewed as a tribute to Misery Bay and Graveyard Pond, final resting place for many brave sailors and soldiers. Misery Bay IPA offers a complex malt profile loaded with American hops at 75 IBU’s, and finishes at 6.5 % alcohol by volume.","ibu":108,"name":"Misery Bay IPA","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.9000000954,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An american IPA brewed with a blend of 3 base malts and a multitude of hops.","ibu":1,"name":"Heathen","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.6999998093,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Our holiday ale. This I.D.A., India Dark Ale, is crisp, bitter and overflowing with the aroma of spruce. Perfect for the holidays.","ibu":0,"name":"El Jefe","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":10,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"Belgian-Style Quadrupel Ale","ibu":48,"name":"Reverend, The","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":6,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"An assertively hopped American Pale Ale with citrusy and piney Cascade hops.","ibu":88,"name":"Burning River Pale Ale","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":7.1999998093,"address":"Route 4 & 100A","category":"Belgian and French Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"This malty, full-bodied double alt is also know as \"Stickebier\" - German slang for \"secret brew\". Double Bag was originally offered only in our brewery taproom as a special treat to our visitors.","ibu":37,"name":"Double Bag Ale","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":5.5,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Honey Cream Ale is fermented warm like traditional cream ales but features an added twist--wildflower honey from Oregon. Honey imparts a dry, refreshing character to the beer because it ferments almost completely. The honey comes from a beekeeper in Blodgett, a tiny town 20 miles east of Newport.\n\n\nRogues Honey Cream Ale is a light, smooth, medium bodied ale, with a creamy head, hints of honey and a crisp light finish. Brewed with two-row Harrington, Klages and Munich malts and Crystal hops. Discontined for distribution in late 2005, available on tap only at Rogue Ales Public Houses.","ibu":9,"name":"Honey Cream Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"A golden wheat beer brewed with the finest North American malted barley and wheat. It's then lightly hopped with the choicest European varieties. The smooth, crisp golden wheat beer is then finished with a hint of rasberry. Enjoy this beer any time of the year.","ibu":29,"name":"Raspberry Wheat","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":115,"name":"Wild Salmon Pale Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":1.3166153187041874,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":94,"name":"Blonde Ale","state":"British Columbia"},{"abv":11.671011450950742,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":57,"name":"Dry Stout","state":"British Columbia"},{"abv":10.249081104111946,"address":"Marktstrae 12","city":"Buttenheim","coordinates":[49.802,11.0324],"country":"Germany","ibu":118,"name":"Keller-Bier","state":"Bayern"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":92,"name":"Harvest Ale 2007","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.9000000954,"address":"910 Montreal Circle","category":"British Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":26,"name":"Winter Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":9,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":112,"name":"Oak-Aged Belgian Tripel","state":"Nebraska"},{"abv":7.770126989760591,"address":"Chelsea Piers, Pier 59","category":"North American Ale","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":61,"name":"Henry Hudson IPA","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":7.578131109436929,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":7,"name":"Kellerbier","state":"Bayern"},{"abv":2.7728950931361385,"address":"9675 Scranton Road","category":"North American Lager","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":117,"name":"Amber Lager","state":"California"},{"abv":9.352677984228897,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":22,"name":"Amber","state":"California"},{"abv":14.998336954722598,"address":"808 West Main Street","category":"North American Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":69,"name":"Pale Ale","state":"Wisconsin"},{"abv":7.298669943068759,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":68,"name":"Buffalo Nutty Brown","state":"California"},{"abv":9.269050152791008,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":52,"name":"Magic Brew","state":"Florida"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":44,"name":"Bigfoot 1991","state":"California","website":"http://www.sierranevada.com/"},{"abv":0.8747309202667752,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":80,"name":"India Pale Ale","state":"Nebraska"},{"abv":3.8748060914103313,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":110,"name":"Ale","state":"Illinois"},{"abv":6.881980524313218,"address":"717 East Butterfield Road","category":"North American Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":31,"name":"Very Pale Ale","state":"Illinois"},{"abv":0.9376775548017513,"category":"North American Ale","city":"Lake Barrington","coordinates":[42.2108,-88.1652],"country":"United States","ibu":21,"name":"Paddy Pale Ale","state":"Illinois"},{"abv":10.063209086065955,"address":"25 North Madison St","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":98,"name":"Calumet Kölsch","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":12.183837308403739,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":94,"name":"Spiced Porter","state":"Illinois"},{"abv":13.42796682810321,"ibu":59},{"abv":14.188640114262256,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":88,"name":"Homestead Pale Ale","state":"Nebraska"},{"abv":11.68355967565358,"category":"North American Ale","city":"Salinas","coordinates":[36.6777,-121.656],"country":"United States","ibu":8,"name":"Amber Ale","state":"California"},{"abv":10.628997564234083,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":25,"name":"Sunset Ale","state":"Hawaii"},{"abv":14.680084730501195,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":17,"name":"Longshot American Pale Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.505223563557088,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":46,"name":"Rodeo Red","state":"Texas"},{"abv":4.5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Gracing the expansive Western skyline in Central Oregon, the Three Sisters—Faith, Hope and Charity—are three prominent peaks in the Cascade mountain range. Local folklore credits the naming to 19th Century fur trappers.","ibu":80,"name":"Cascade Golden Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.2053286164476065,"address":"1004 South Olde Oneida","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":64,"name":"Riverboat Rye","state":"Wisconsin"},{"abv":6,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","ibu":70,"name":"Quail Springs IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.944492805651974,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":76,"name":"Kölsch","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.75,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The legend of Tyranena began 3,000 years ago, with a group of pyramids and effigy mounds constructed in a remote valley formed by a vast, slow-moving glacier. \n\n\nToday, these ancient \"stone tepees\" lie 60 feet below the surface of Rock Lake in Jefferson County, Wisconsin. No one is certain how or why they were built, but many have speculated on their origin, purpose and the people who built them. \n\n\nWe invite you to develop your own theories on the legend and mystery of Tyranena while enjoying a Stone Tepee Pale Ale.\n\n\n Stone Tepee Pale Ale is brewed in the tradition of an American pale ale. This beer celebrates the American hop, with its characteristic bitterness, flavor and aroma.","ibu":104,"name":"Stone Teepee Pale Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":1.8715498039603529,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":31,"name":"Amber Daze","state":"Colorado"},{"abv":9,"category":"British Ale","city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":19,"name":"Conquest Ale","state":"Hampshire"},{"abv":0.2320840151820358,"address":"220 North Randall Road","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":106,"name":"Dingle Dubbel","state":"Illinois"},{"abv":5.341237680325792,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":91,"name":"Lawnmower Pale Ale","state":"Indiana"},{"abv":12.217502504613163,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":10,"name":"Ironman Wheat","state":"South Carolina"},{"abv":5.968161784288288,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":91,"name":"Golden Gate Amber Ale","state":"California"},{"abv":7.34389851010399,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":75,"name":"English ESB","state":"Wisconsin"},{"abv":7,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This is a hoppy IPA. Did I say hops? Your brewer is a hop head! This is a full bodied beer using American grains. The goal was to create a base for showing off the unique floral qualities of two Pacific Northwest hops, Columbus and Cascade. Columbus is a new hybrid High Alpha Acid hop used mostly for bittering, but used heavily as an aromatic in this strong brew. Cascade is the balance that ties the malt and bittering hops together. It is a true specialty ale and is our brewer's statement on this style.","ibu":89,"name":"Racer 5 IPA","state":"California","website":"http://www.bearrepublic.com/"},{"abv":2.243910858809314,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":59,"name":"Pioneer Pale Ale (discontinued)","state":"Nebraska"},{"abv":14.893347152296124,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":89,"name":"Dark Wheat","state":"Nebraska"},{"abv":8.658895355369399,"address":"720 Main Street","category":"Irish Ale","city":"Frisco","coordinates":[39.5765,-106.094],"country":"United States","ibu":20,"name":"Peak One Porter","state":"Colorado"},{"abv":6.8000001907000005,"address":"407 Radam, F200","category":"Irish Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Nearly black in color, (512) Pecan Porter is made with Organic US 2-row and Crystal malts along with Baird’s Chocolate and Black malts. Its full body and malty sweetness are balanced with subtle pecan aroma and flavor from locally grown pecans. Yet another true Austin original!","ibu":119,"name":"(512) Pecan Porter","state":"Texas","website":"http://512brewing.com/"},{"abv":8.3000001907,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"We welcome the latest release Atomic Raygun Imperial Red! Brewed with Pilsner, Chocolate and Caramel malts but well balanced with Columbus and Centennial Hops and coming in at 90 IBU's. The Octane level on this one is coming in at 8.3!","ibu":32,"name":"Atomic Raygun Imperial Red","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This India Pale Ale is brewed with English Maris Otter pale malt and Chocolate malt, giving it a dark color and is generously hopped with English Fuggles hops. Named for mug club member and brewery supporter Herb Caldwell.","ibu":1,"name":"Herb Superb","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.5,"category":"North American Lager","city":"Seoul","coordinates":[37.5665,126.978],"country":"Korea, Republic of","description":"Hite lager is golden in colour and is styled upon traditional European and American lagers.","ibu":44,"name":"Hite"},{"abv":5.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob AmerBock is American-style bock beer with a rich, malty and smooth taste that is hearty and full-bodied, yet finishes cleanly. Anheuser-Busch introduced this premium-plus beer nationally in 1995.","ibu":50,"name":"Michelob Amber Bock","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.1999998093,"address":"237 Joseph Campau Street","category":"North American Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Our malty, sweet dark lager is a hometown favorite. Our Dunkel is packed with subtle roasted malt flavors without the excessive bitterness and heaviness of many dark beers and has a balanced hop finish.\n\n\nGABF Gold Winner","ibu":84,"name":"Dunkel","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":4.699822838888861,"address":"1 Jefferson Avenue","category":"German Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":65,"name":"Hefeweizen","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":0.44075886562416455,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":51,"name":"Old Kentucky Stout","state":"Wisconsin"},{"abv":12.95753142673992,"category":"North American Ale","city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":9,"name":"Pale Rider","state":"Texas"},{"abv":14.864341154678979,"address":"113 18th Street","category":"British Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":24,"name":"Big Bad Dog Old English Ale","state":"Illinois"},{"abv":2.542297588782776,"address":"3191 Golf Road","category":"North American Lager","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":5,"name":"Honey Lager Light","state":"Wisconsin"},{"abv":14.733192218457647,"city":"Eugene","coordinates":[44.0521,-123.087],"country":"United States","ibu":70,"name":"Imperial Sasquatch","state":"Oregon"},{"abv":1.261580187261745,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":18,"name":"Alexander","state":"West-Vlaanderen"},{"abv":4.5,"category":"German Lager","country":"Germany","description":"German Pilsner beer, with quite a bit of hops taste.","ibu":16,"name":"Beck´s","website":"http://www.becks.de/"},{"abv":5,"address":"529 Grant St. Suite B","category":"Other Style","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Brewed with summer's harvest of pumpkin, squash, honey, ginger, and love of great beers.","ibu":15,"name":"Spiced Pumpkin Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A Commemmorative Brew Single Chair celebrating the uniqueness of the Mad River Glen Cooperative Ski Area in Vermont. \n\n\nMedium bodied & ideally balanced for all tastes, Single Chair Ale's tempting light golden color, heady aroma & smooth liquid go down effortlessly and often!","ibu":34,"name":"Single Chair Ale","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.5,"address":"Ole Steensgt. 10 Postboks 1530","category":"German Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Aass Genuine Pilsner is a premium \"lager\" produced in accordance with the \"Purity law\". The malted barely is a pilsnermalt produced in the Sandinavian countries. We use the very best of hops known under the name as Sazer and Hallertau, and the liquid is pure Norwegian mountain water.\n\n\nThe pilsner is largered at cool temperatures, and it is allowed to mature for as long at 3 months before bottling. \n\n\nThe beer is sold in a caracteristic nice- looking green bottel containing 11.2 fl. oz or 330 ml.","ibu":57,"name":"Genuine Pilsner","website":"http://www.aass.no"},{"abv":11.100000381,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Insanity, just released this past November, 2004, is Weyerbacher's latest creation in the world of cutting edge beers. Insanity is made by aging our perfectly balanced Blithering Idiot Barleywine in oak bourbon casks. This incredible combination creates a melange of flavors such as malt, dates, oak, vanilla, and bourbon just to name a few.\n\n\n Insanity is 11.1% ABV. It is best enjoyed in a brandy snifter and served at 45-50 degrees F.","ibu":39,"name":"Insanity","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.293300428017077,"city":"Motala","coordinates":[58.5366,15.0373],"country":"Sweden","ibu":19,"name":"Östgöta BlÃ¥bärs"},{"abv":8.177919185268502,"address":"5500 Greenville Avenue #1300","category":"Irish Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":23,"name":"Barking Fish Porter","state":"Texas"},{"abv":14.822758446600437,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":15,"name":"Pegasus Pilsner","state":"Texas"},{"abv":7.606162323320556,"address":"23-1 Azumabashi 1-chome","city":"Tokyo","country":"Japan","ibu":27,"name":"Edomae","state":"Kanto"},{"abv":6.5,"address":"312 North Lewis Road","category":"Other Style","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","description":"This malty, full-bodied red ale is made with traditional mulling spices: Ginger, Clove, All Spice, Cinnamon & Nutmeg. If this one doesn't get you into the Christmas spirit, you truly are a Scrooge.","ibu":63,"name":"Sly Fox Christmas Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":2.458169754929096,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":62,"name":"Stonecutter Stout","state":"Iowa"},{"abv":1.4401082845670177,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":103,"name":"Red Toad Amber Ale","state":"Illinois"},{"abv":6,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":32,"name":"Spring Fling","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":5.8000001907000005,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A new version of an American classic.\n\nOur Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast.\n\n\nFood Pairings: The bracing bitterness of this beer can hold its own with spicy foods, while helping to cleanse the palate after rich, creamy dishes. The citrus hop flavors go exceptionally well with any dishes using cilantro, such as Mexican salsas.\n\n\nOG: 14.0 Plato\n\nFG: 3.3 Plato\n\nIBUs: 55\n\nSRM: 6\n\n5.8% abv","ibu":98,"name":"Pale Ale","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":5.6999998093,"address":"910 Division St","category":"Irish Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish.\n\n\nFood Pairings: The rich, chocolate notes pair well with the carmelized surface of steaks, pork tenderloins and lamb, but save this beer for dessert if you’re having chocolate or crème brulée.\n\n\nOG: 14.40 Plato\n\nFG: 3.8 Plato\n\nIBUs: 28\n\nSRM: 29\n\n5.7% abv","ibu":102,"name":"Sly Rye Porter","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":12.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"own in Kentucky and across the pond in Scotland, distillers who age their whiskeys for many years refer to the evaporation of the spirits from their barrels as \"The Angel's Share.\" We couldn’t agree more. Each time a barrel is filled, a measure of liquid seeps into the oak and is lost for good.\n\n\nThis striking Strong Ale is brewed with copious amounts of Caramel malt to emphasize the vanilla and oak flavors found in freshly emptied bourbon or brandy barrels. The beer spends a year in oak before it is packaged for release. The beer is 12.5% ABV and is available in 375ml and 750ml bottles and on draft at inspired locations.","ibu":87,"name":"The Angel's Share - Bourbon Barrel Aged","state":"California","website":"http://www.lostabbey.com/"},{"abv":9.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone 13th Anniversary Ale pours brilliant deep red with a light tan foam. Up front, the aroma is all piney, resinous and citrus hops. Upon tasting, the hops are still on the front, and they are balanced with the malty, toffee like flavors contributed from the blend of crystal and amber malts used in the brewhouse. The finish is deliciously bitter, with a touch of warmth provided by the 9.5% alcohol. Bitterness comes in at 90+ IBU.","ibu":46,"name":"13th Anniversary Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \"Cousin Jack\" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin! Also available barrel aged.","ibu":18,"name":"Cousin Jax","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5,"address":"5121 N Ravenswood Ave,","category":"North American Lager","city":"Chicago","coordinates":[41.975,-87.674],"country":"United States","description":"The kinetic beauty of spicy hops grabs you by the nose and lets you know: this is German-inspired beer. A mild, bready malt sweetness greets you at the lips, smoothing the crisp hop flavors. Flywheel is meant for bombastic celebrations of singing voices and clamoring mugs. But then, that first contented moment of happy hour is uniquely celebratory as well.\n\n\nFlywheel Bright Lager goes great with hot dogs, guitar jams, stir fry, bowling, taco salad, house warmings, baked potatoes, Saturday morning cartoons, tequila, gouda cheese, karaoke, bagel & schmear, Euchre, fresh berries, asparagus, 16-inch softball, sushi, darts, Pad Thai, family reunions, pb&j, flan, romantic weekend getaways, garlic bread, pay raises, nachos, baby showers, fondue, and Frisbee golf.","ibu":9,"name":"Flywheel Bright Lager","state":"Illinois","website":"http://www.metrobrewing.com/"},{"abv":3.9000000954000003,"address":"420 Harrison Drive","category":"North American Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Brewed with real mashed Long Island Potatoes (or is it \"Potatos\"?) in the mash - hence, \"twice mashed.","ibu":25,"name":"Long Island Potato Stout","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":0.4946983211931999,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":47,"name":"Claymore Scotch Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.9000000954,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Old Brown Dog has been cited as a classic example of the “American Brown Ale” style of beer. Compared to a typical English Brown Ale, Old Brown Dog is fuller-bodied and more strongly hopped.\n\n\nOld Brown Dog has been around for many years. It was first brewed in 1988 at the Northampton Brewery. In 1989 it won a silver medal in its category (American Brown Ale) at the Great American Beer Festival in Denver.","ibu":65,"name":"Old Brown Dog Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":10.300000191,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"This Russian Imperial Stout is a sipper. Problem is that you want to sip it all night. Look for this one to be released when the leaves change color and Halloween is approaching. Brewed with a blend of 8 different malts, oats and candi sugar. This huge stout reflects Surly's commitment to brewing intensely flavored beers in small batches. Only 25 barrels of this beer were brewed.","ibu":119,"name":"Darkness","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":11.600000381000001,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Grand Crus are traditionally known as \"The best beer that a brewery makes.\" This Belgian-style quad lives up to that name and then some. Available once a year, in May to celebrate our Anniversary.","ibu":13,"name":"Armageddon Grand Cru","state":"Michigan"},{"abv":9.5,"address":"237 Joseph Campau Street","category":"German Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"This one is black and sweet! Its malty character is derived from two carmel malts along with Munich malt to create the smoothest high gravity beer this side of the \"pond\".","ibu":67,"name":"Voodoo Vator","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.723220587601581,"address":"237 West Butler Avenue","category":"North American Lager","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","ibu":56,"name":"Summer Lager","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":11.525110558101773,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":43,"name":"Kentucky Ale","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":2.550981062136924,"address":"625 Fourth Street","city":"Mukilteo","country":"United States","ibu":111,"name":"Golden","state":"Washington"},{"abv":6.619726793811012,"address":"Doktor-Waibel-Strae 2","category":"German Lager","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":98,"name":"Naturtrübes Kellerbier"},{"abv":14.64599470796836,"address":"Lautenberg 1","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":51,"name":"Blonde","state":"Baden-Wrttemberg"},{"abv":4.0999999046,"address":"Camwal Road","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":41,"name":"Old Legover","state":"North Yorkshire"},{"abv":6.5,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":12,"name":"India Pale Ale","state":"California","website":"http://www.moylans.com/"},{"abv":5,"address":"1001 North 102nd Street","category":"North American Ale","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":32,"name":"Broad Axe Stout","state":"Nebraska"},{"abv":12.294178433259626,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":52,"name":"Oudbeitje","state":"Vlaams Brabant"},{"abv":10,"address":"200 Dousman Street","category":"German Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":68,"name":"Weizen Bock","state":"Wisconsin"},{"abv":1.5860051223719185,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":99,"name":"South of the Border Light","state":"Wisconsin"},{"abv":5.5,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":86,"name":"Dunkel","state":"Bayern"},{"abv":4.9000000954,"address":"Friedrich-Ebert-Strae 255-263","city":"Duisburg","coordinates":[51.5314,6.7418],"country":"Germany","ibu":44,"name":"Pilsener","state":"Nordrhein-Westfalen"},{"abv":13.03355920698839,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":12,"name":"Oktoberfestbier / Oktoberfest Ur-Märzen","state":"Bayern"},{"abv":24,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Utopias MMIV","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":14.722116470346782,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":112,"name":"Irish Stout","state":"California"},{"abv":9.70237301128138,"address":"781 Old Highway 8 SW","category":"North American Ale","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":14,"name":"Stockyard IPA","state":"Minnesota"},{"abv":2.135644648244037,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":65,"name":"Cream Ale","state":"Wisconsin"},{"abv":8.029527929681176,"address":"1900-B East Lincoln Avenue","category":"North American Lager","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","description":"A unique flavored lager that goes well with any food. A slight aromatic smoke flavor-but not over-powering. A very popular beer with its own following wondering where's YOUR Z?","ibu":100,"name":"Z Lager","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":0.6195691267417325,"address":"249 North Redwood Highway","category":"Other Style","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":79,"name":"Blackberry","state":"Oregon"},{"abv":11.996438334387054,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":39,"name":"Hidden River Red Ale","state":"Illinois"},{"abv":5.605962277877204,"address":"610 Main Street","category":"North American Lager","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":93,"name":"Wilderness Wheat","state":"South Dakota"},{"abv":3.5,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"IPA is one of Cains","ibu":81,"name":"IPA","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":5.8000001907000005,"address":"209 Technology Park Lane","category":"North American Ale","city":"Fuquay Varina","coordinates":[35.6197,-78.8085],"country":"United States","description":"A hearty extra special beer or basically a pale ale on steroids. A dark amber beer with a rich blend of malts. The base malt is full kilned pale 2-row barley and is combined with full tasting crystal malt. This beer has a great heavy late hop addition of East Kent Goldings (that cost us our lunch money for weeks...). ALWAYS AVAILABLE or at least we try.","ibu":11,"name":"Old BullDog Extra Special","state":"North Carolina","website":"http://www.aviatorbrew.com/"},{"abv":5.3000001907,"address":"5429 Shaune Drive","category":"Belgian and French Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alaskan White Ale has a soft, slightly sweet base with the unique spice aroma of coriander and crisp, citrus finish of orange peel. A light and effervescent body combined with the smooth palate creates a complex and delicate beer that is deliciously refreshing in any season.","ibu":27,"name":"Alaskan White Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":8.5,"address":"4615-B Hollins Ferry Road","category":"Other Style","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"The secret is in the 2.5 pounds of spice per barrel for this fall brew. We add the pumpkin during the mash at precisely the right time to create just the perfect balance of malt, hops, pumpkin and spice.\n\n\nestimated ABV 8.5% estimated IBU 25\n\nMalt, Hops, Pumpkin & our Secret Spices","ibu":95,"name":"Heavy Seas The Great Pumpkin Imperial Pumpkin Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":7.0999999046,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"If you like big, bold, pronounced hop character, then this beer is for you. One taste and you’ll find yourself right smack in the middle of Hop Head Heaven! But this beer has more to offer than just hops. We use tons of the finest malted barley available to balance out this beer. The result of our efforts is a beer with a magnitude of hop aroma and bite, yet perfectly balanced with a clean, crisp malty flavor. WARNING: This beer is not intended for the masses that prefer a mild domestic beer, It’s big, bold characteristics and 7.1% a.b.v. are not intended for the weak.","ibu":49,"name":"Horny Toad IPA","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Rost (pronounced Roast) is a German word for Amber. Our Amber gets its coppery color from Pilsner. Munich and Caramel malts. Its rich malty sweetness is perfectly balanced by a slight hop finish and creamy head.","ibu":9,"name":"Rost","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"WRATH Belgian-style Double IPA is fiercely bitter with notes of spice and earth. Its fury slowly and purposefully unfurls on the tongue, relentlessly bringing on more and more enraged flavor with each sip. \n\n\nWrath wreaks havoc on your taste buds. Anything you drink after this may as well be water.","ibu":2,"name":"Wrath","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.5999999046,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A GABF Gold Medal winner for 2007, this Belgian style strong ale, bright and golden colored is brewed with a hint of orange peel and coriander. This balanced, pleasant to drink brew, will sneak up on you. Consume with caution.","ibu":8,"name":"Celis Grand Cru","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":4.9499998093,"country":"Japan","description":"From Brewery's site:\n\n\nWith his gold label and Special Premium Reserve appellation, Ichiban outclasses and outperforms.\n\n\nIn 1990, Ichiban's debut made a splash in the world of super premium beers. The luxurious single wort (or first press) process yields a unique, complex flavor. With his gold label and \"Special Premium Reserve\" appellation, Ichiban outclasses and outperforms. But don't be fooled by a snooty attitude -- this is a great beer that goes with anything.\n\n\nWhat makes Ichiban great\n\nProminent wort. Finest barley malt, premium hops, smooth finish, no bitter aftertaste.","ibu":100,"name":"Kirin Ichiban","website":"http://www.kirin.com/"},{"abv":7,"address":"725 Fourth Street","category":"Belgian and French Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Damnation has extraordinary aromas of banana and pear with mouth filling flavors of sweet malt and earthy hops. The lingering finish is dry and slightly bitter but very, very smooth.","ibu":56,"name":"Damnation","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.9000000954,"address":"929 North Russell Street","category":"Other Style","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"Our Brewmasters' Release - The three different red, caramelized, and dark wheat malts give this beer an intense red color that runs as deep as the flavor. The toasted grain flavors blend perfectly with the subtle spiciness of the hops just as the entirety fades to a smooth quick finish. 2007 Great American Beer Festival Silver Medal Award Winner.","ibu":114,"name":"Widmer W'08","state":"Oregon"},{"abv":5.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nCreamy, malty, and full-bodied, the Sierra Nevada Stout is satisfyingly rich. Caramel and Black malts give the Stout its deep, dark color and pronounced roasted flavor. \n\n\n“Sierra Nevada Stout is admirable from nose to finish, with notes of malty sweetness to the palate but plenty of bitterness available to set up a stimulating counterpoint.”\n\n\n– Christopher Finch, A Connoisseur’s Guide \n\nto the World’s Best Beer\n\n\nGOLD MEDAL WINNER\n\nCalifornia State Fair (Stout, Sweet & Foreign: 2000)","ibu":18,"name":"Stout","state":"California","website":"http://www.sierranevada.com/"},{"abv":8,"address":"231 W. Fourth Street","category":"German Lager","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A springtime favorite, this traditional German Maibock (my-bock) is golden in color with a rich maltiness and a long, spicy finish.","ibu":0,"name":"Hands Off Maibock","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":28,"name":"Andelot Cuvee Diabolique","state":"Oost-Vlaanderen"},{"abv":2.258693174326213,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":103,"name":"Black Mulligan Dublin Stout","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":11.5,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":73,"name":"Old Crustacean Barleywine 2006","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"765 Center Boulevard","category":"North American Lager","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":49,"name":"Chazz Cat Rye","state":"California"},{"abv":12.163741511508855,"address":"1265 Boston Avenue","category":"Irish Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":112,"name":"Black Jack Porter","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7,"category":"North American Lager","city":"Malli","country":"India","ibu":78,"name":"Yeti Special Export","state":"Sikkim"},{"abv":8.910445904951814,"category":"Irish Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":87,"name":"London Porter","state":"Wisconsin"},{"abv":5.0999999046,"address":"CZ-739 51 Noovice","city":"Noovice","country":"Czech Republic","ibu":2,"name":"Premium"},{"abv":11.251841208884153,"category":"German Lager","city":"Tempe","coordinates":[33.4148,-111.909],"country":"United States","ibu":49,"name":"Thunderhead Schwarz Bier","state":"Arizona"},{"abv":5.459058213061666,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":28,"name":"Export","state":"Wisconsin"},{"abv":6.534300132746526,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":76,"name":"Toil and Trubbel Dubbel","state":"Wisconsin"},{"abv":6.3000001907,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","description":"First brewed with an extra dose of hops to help it survive the long journey from England to beer lovers in India, India Pale Ale is now brewed just for the pleasure of its distinctive hoppy flavor.","ibu":2,"name":"India Pale Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.527102871037549,"category":"German Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":81,"name":"Maibock","state":"Illinois"},{"abv":10.098129683782442,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":73,"name":"Old Fort Howard Pale Ale","state":"Wisconsin"},{"abv":9.577313117567408,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":88,"name":"Eigenberg Smoked Porter","state":"Nebraska"},{"abv":1.7881577933820736,"address":"1035 Sterling Avenue","category":"North American Lager","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":110,"name":"Station Master Wheat Ale","state":"Illinois"},{"abv":9.470000267,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":91,"name":"Imperial Stout 2002","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.581669112529644,"address":"527 Decatur Street","category":"North American Lager","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":70,"name":"Red Stallion","state":"Louisiana"},{"abv":5,"category":"North American Ale","country":"Japan","description":"A very yeasty beer with an earthy aroma. Rich flavors deepen the stout character.","ibu":5,"name":"Ise Kadoya Stout"},{"abv":13.925703647389184,"ibu":6},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration I is a Double IPA, heavily hopped with a big malt base. Its aroma is pungent with citrus, onion, and a touch of alcohol. The sweetness of caramel malt is offset with spice and pepper flavors that lead into an overwhelmingly bitter finish.","ibu":57,"name":"Obliteration I","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.1999998093,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"A Supreme Champion Ale of Cornwall as\n\nvoted by CAMRA*, and the South West's Favourite cask beer**, Tribute is a popular\n\nfavourite with locals and visitors to Cornwall, as well as being a much sought after guest ale throughout the rest of the UK. It is brewed using specially grown Cornish Gold Malt and is a perfect accompaniment to chicken, gammon or fish. The ideal alternative to a fine white wine.","ibu":46,"name":"Tribute Premium Cornish Ale","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":11.907138056088801,"address":"10983 Hills Road","category":"North American Ale","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Amber Ale is a deep, copper ale with rich notes of caramel balanced with a hop finish, making it a great all-around beer that pairs well with roasted meats or a favorite sandwich. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":69,"name":"Round Barn Amber Ale","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":5.23885267325002,"address":"310 Mill Creek Avenue","category":"German Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"In celebration of our 180th Anniversary year, the marketplace will see one of the first seasonal offerings from the Yuengling Brewery in many years. Yuengling has produced a Bock Beer in its long and storied past, and we have now reinvented that product for limited release in 2009. The new brew is dark brown in color and offers exceptional flavor that lives up to the quality Yuengling drinkers have grown to expect.\n\n\nYuengling Bock Beer will be offered in ½ barrels only, beginning in late February and lasting for approximately 8-10 weeks. Let’s all raise a pint of Yuengling Bock and celebrate the 180th Anniversary year!","ibu":37,"name":"Yuengling Bock Beer","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":2.6290466067195872,"address":"2105 N. Atherton St.","category":"German Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","ibu":11,"name":"Zeno Black Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":5.5,"category":"British Ale","country":"Australia","ibu":67,"name":"Foster's Premium Ale","website":"http://www.fostersbeer.com/"},{"abv":6.1999998093,"address":"345 Healdsburg Avenue","category":"German Lager","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This malty, copper-colored lager is styled after Munich's traditional \"Oktoberfest\" beers. A full-bodied, rich malt character is balanced by a slight bitter finish. Perfect for cooler fall days, it is lagered for five weeks. Prost!!","ibu":118,"name":"Late Harvest Fest Lager","state":"California","website":"http://www.bearrepublic.com/"},{"abv":5.9000000954,"address":"Domring 4-10","category":"German Lager","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":89,"name":"Warsteiner Premium Oktoberfest","state":"Nordrhein-Westfalen"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A classic American IPA with lots of floral punch and assertive hop presence. Hopped with Nugget, Palisade and Amarillo colored to a reddish hue thanks to Munich and Aromatic malts","ibu":93,"name":"Slab Cabin IPA","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":12,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SPECIAL COMMEMORATIVE BEER\n\n\nTo commemorate the life of a huge-hearted and long-time friend from the homebrewing community, Midnight Sun Brewing Company brewed a very special beer in honor of David Yanoshek, who was fondly known as “Yano”. \n\n\nThis big strong beer celebrates the abundant life of an incredible man with an enormous yet ever engaging laugh. Yano pursued life with a Viking spirit, endless love and boundless energy for family, friends, scouts…and beer. \n\n\nA big strong beer for a big strong guy, The Viking Belgian-style Dark Strong Ale boasts a beautiful balance of character and complexity. Dark roasted malts, Belgian yeast, star anise and sweet-ripened raisins come together in an amazing ale that can be enjoyed now and cellared for later celebrations. \n\n\nAs you lock horns with this commemorative ale, toast to Yano. With his incredibly stoic spirit and his irrepressible laugh, Yano was the gentle giant who will forever touch our lives. Pröst! \n\n\nAll proceeds from sales of this beer will be donated to the Yanoshek family.\n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 09/12/2008)","ibu":65,"name":"The Viking Belgian-style Dark Strong Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":20,"name":"IPA","state":"Washington"},{"abv":0.9337244462054117,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":79,"name":"Fauntleroy Stout","state":"Washington"},{"abv":6,"address":"2106 North 55th Street","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":105,"name":"AK-47 Malt Liquor","state":"Washington"},{"abv":5.8000001907000005,"address":"765 Center Boulevard","category":"North American Lager","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":32,"name":"Honey Bunny Blonde Ale","state":"California"},{"abv":5,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":112,"name":"Amber","state":"California"},{"abv":5.60392078123143,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":5,"name":"Highway to Helles","state":"Wisconsin"},{"abv":5.0345736193738855,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":79,"name":"Winterhook Robust Winter Ale 2000","state":"Washington","website":"http://www.redhook.com/"},{"abv":5.5999999046,"address":"8938 Krum Ave.","category":"Irish Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A robust porter for all occasions. A blend of dark malts give this beer flavors of coffee and chocolate with subtle roasted notes.Gold medal winner in the Brown Porter category Brewers Association World Beer Cup 2008.","ibu":14,"name":"Porter","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.1999998093,"address":"1 Kendall Square #100","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Brewed in the tradition of the fresh, blond ales of Cologne, Germany, our Golden ale is light in body, crisp and very refreshing. Its soft malt flavor is balanced by delicate, spicy hop flavors and finishes.","ibu":107,"name":"Regatta Golden","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":9.1000003815,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":24,"name":"Old Knucklehead 2000","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":8.170024275947203,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":1,"name":"Pale Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.383371130831057,"address":"249 North Redwood Highway","category":"North American Ale","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":114,"name":"Nut Brown Ale","state":"Oregon"},{"abv":3.4735862365406556,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":65,"name":"Brandywine Valley Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.644649741173065,"address":"208 East River Drive","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":67,"name":"Raging River Ale","state":"Iowa"},{"abv":7.8242379601450995,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":16,"name":"Scaldis Noël / Bush Noël","state":"Hainaut"},{"abv":13.913707877757858,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":1,"name":"Belgian Summer Ale","state":"Wisconsin"},{"abv":8.385572333101694,"address":"8113 Fenton St.","category":"Other Style","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"A crisp, clean American Ale. Perfect for extinguishing your fiery thirst or when you crave an ice-cold beer. A great step up in flavor from the macro-produced American and imported beers.","ibu":69,"name":"Hook & Ladder Golden Ale","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":9,"address":"3525 Liberty Avenue","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"A Belgian Trippel is a very special type of beer. A Belgian Trippel could be called the beer version of a Champagne. It is very light in color and highly carbonated giving an appearance similar to Champagne. The flavor is somewhat sweet and malty as well as strong.","ibu":11,"name":"Millennium Trippel","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":9,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This beer is based on chemical analysis of pottery fragments found in Honduras which revealed the earliest known alcoholic chocolate drink used by early civilizations to toast special occasions. The discovery of this beverage pushed back the earliest use of cocoa for human consumption more than 500 years to 1200 BC. As per the analysis, Dogfish Head’s Theobroma (translated into 'food of the gods') is brewed with Aztec cocoa powder and cocoa nibs, honey, chilies, and annatto (fragrant tree seeds).","ibu":28,"name":"Theobroma","state":"Delaware","website":"http://www.dogfish.com"},{"abv":1.3110710208518717,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":16,"name":"Dark Side Vanilla Porter","state":"Nebraska"},{"abv":12.971307182754847,"address":"2201 Sherman Street","category":"Irish Ale","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":54,"name":"St. Edmunds Strong Porter","state":"Wisconsin"},{"abv":1.1656467939071147,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":39,"name":"Bower City Pale Ale","state":"Wisconsin"},{"abv":13.270859870810721,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":23,"name":"Third Coast Ale","state":"Michigan"},{"abv":0.8563369311370961,"category":"North American Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":89,"name":"Light Lager","state":"Delaware"},{"abv":10.570167998313888,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":101,"name":"Big Horn Big Red Ale","state":"Wyoming"},{"abv":11.353198286431462,"category":"Irish Ale","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":104,"name":"Old Port Porter","state":"Wisconsin"},{"abv":7,"address":"233 North Water Street","category":"British Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":43,"name":"Duggie Meyer Wee Heavy","state":"Wisconsin"},{"abv":12.724503294241291,"category":"Irish Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":63,"name":"Adler Bräu Classic Porter","state":"Wisconsin"},{"abv":14.724845039273749,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":8,"name":"Traditional Lager","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The first in a series of two new specialty beers coming this year! This Kölsch-styled ale is clean, crisp, and delicately balanced. It has very subtle pear flavors and aromas. The subdued maltiness leads to a pleasantly refreshing finish. A fantastic summer brew!\n\n\nThe Kölner Dom (Cologne Cathedral), is one of the best-known architectural monuments in Germany and has been Cologne's most famous landmark since its completion in the late 19th century. True Kölsch can only be brewed if the brewery has a view of this famous cathedral, thus its’ appearance on our tap markers.","ibu":9,"name":"Dom Blonde Kölsch","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.8000001907000005,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"One deceptively spring like winter day, Brewmaster Dan walked home from the brewery, sat down to dinner and said, \"Boy, there are some fat squirrels out there. They're running all over the place. I think I should brew a Fat Squirrel Nut Brown Ale.\" Deb agreed and so another beer legend was born. \n\n\n100% Wisconsin malt of six different varieties impart the natural toasted color to this bottle conditioned unfiltered ale. Clean hazelnut notes result from these carefully chosen barley malts. Hops from Slovenia, Bavaria and the Pacific Northwest give Fat Squirrel its backbone. \n\n\nWhen the going gets tough, remember to relax a moment and enjoy the \"Fat Squirrel\" in your neighborhood.","ibu":48,"name":"Fat Squirrel Nut Brown Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":14.354409985684953,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":55,"name":"Shawnee Amber Ale","state":"Texas"},{"abv":14.475848455507473,"address":"5500 Greenville Avenue #1300","category":"North American Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":25,"name":"Route 66 Amber Ale","state":"Texas"},{"abv":4.220706152778356,"address":"901 Gilman Street","category":"German Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":35,"name":"Thomas Kemper HefeWeizen","state":"California"},{"abv":9.61593961048348,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":104,"name":"Greenshields Pale Ale","state":"North Carolina"},{"abv":4.962559607882393,"category":"North American Ale","city":"Fort Mitchell","coordinates":[39.0472,-84.5599],"country":"United States","ibu":65,"name":"Nut Brown Ale","state":"Kentucky"},{"abv":0.254544688227597,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":107,"name":"Old Market Stout","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":31,"name":"Honey Double Maibock","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":1.0063249043249467,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":116,"name":"Railyard Ale","state":"Wisconsin"},{"abv":9.1999998093,"address":"1812 Post Road","category":"North American Ale","city":"Plover","country":"United States","description":"Anniversary offering, Imperial Red. Heavily hopped and oak aged, very balanced. 12 oz. bottles; 4 pack. ABV: 9.2%","ibu":1,"name":"Dank","state":"WI","website":"http://www.osobrewing.com/Home.php"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"North American Lager","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Born of dark and cold and snow in the marrow of the northeast's longest night, HOWL comes in on wailing winds with winter-weary eyes burning holes in sunless shadows. In its darkened depths out inner voids are warmed.","ibu":109,"name":"Howl","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.1999998093,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":110,"name":"Karma","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8.721465658140463,"address":"130 W Gurley St","category":"Other Style","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":47,"name":"Lodgepole Light","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":13.358074585836695,"address":"2109 Hickory Street","category":"German Lager","city":"Cross Plains","coordinates":[43.1147,-89.6531],"country":"United States","ibu":85,"name":"Esser's Cross Plains Special","state":"Wisconsin","website":"http://www.essersbest.com/"},{"abv":6.9000000954,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"\"Strong like bull but sweet like your momma. This unique beer is a trifecta of bold flavors. Hops, malt and alcohol bully the taste buds on the organic playground while the monitor blows the whistle!\";\"0","ibu":81,"name":"Deluxe Organic Ale","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7,"category":"Belgian and French Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"We drew inspiration from Steve’s Grandmother’s holiday biscotti recipe to create this one of a kind brew. By utilizing an array of malts, oats, wheat, pure local honey, light European hops and delicately spicing with Grains of Paradise, Madagascar vanilla beans, whole star anise, all brought together with traditional Belgian yeast, the result is a cloudy, deep copper colored, complex experience. This delight to the senses should be served in a 12 ounce footed glass and allowed to warm to 50 degrees to fully gather the malt and spice spectrum.","ibu":17,"name":"Biscotti","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.5,"address":"86 Newbury Street","category":"Other Style","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":40,"name":"Pumpkinhead Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":6.8000001907000005,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":111,"name":"Hoptical Illusion","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":10.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"GLUTTONY Triple IPA overindulges the palate with profound malt, powerful hops and abundant body. Its deep decadent golden orange color presents an appetizing invitation for extravagant enjoyment. Its aroma entices with citrus, pine and alcohol while the flavor provides a smorgasbord of sweet malt, fresh tangerine/grapefruit and a resinous hop character that lingers well beyond the finish. \n\n\nGLUTTONY...More than a mouthful.","ibu":108,"name":"Gluttony","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.909677549923965,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"A rich golden liquid with a unique flavor and aroma that comes from a touch of raw Hawaiian cane sugar. Primo is a premium lager that represents the best of both worlds; the rich taste of a craft-brewed beer with the drinkability of a lighter lager. -http://www.thatsprimo.com/Recipe.aspx","ibu":87,"name":"Primo","state":"Texas","website":"http://www.pabst.com/"},{"abv":10.91631484036333,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Honker’s Ale combines a spicy hop aroma with a rich malt middle to create a perfectly balanced ale that is immensely drinkable. A smooth, drinkable English Bitter for those looking for more from their beer.","ibu":47,"name":"Honker's Ale","state":"Illinois"},{"abv":6.6999998093,"address":"Zornedinger Strae 2","category":"German Lager","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","description":"Profoundly dark, rich elixir with a complex fruitiness of roasted malt and whole hop flowers. Semi-dry finish.","ibu":94,"name":"Celebrator","state":"Bayern"},{"abv":9,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Belgian Style Tripel using same Abbey Yeast. Monster aromas and sweet flavors coming from the yeast and a huge amount of Belgian Candi Sugar. Ingredients: Weyermann Pilsner Malt, Belgian Candi Sugar, Saaz Hops.","ibu":107,"name":"Menage Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.9000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Highly regarded among hop-lovers, our Harvest Ale is a balanced and flavorful autumnal offering, to be enjoyed during the cool, crisp days of fall. We use a darker Caramunich malt and just a touch of chocolate malt along with a blend of Warrior, Ahtanum, and Columbus hops.","ibu":22,"name":"Ipswich Harvest","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":4.4000000954,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":118,"name":"Bugeater Brown Ale","state":"Nebraska"},{"abv":0.6473043211437535,"address":"11337 Davenport St.","category":"German Lager","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":17,"name":"Bavarian Bock","state":"Nebraska"},{"abv":13.644874503068339,"category":"North American Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":3,"name":"Red Rooster Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":1.5652813936569232,"address":"Lancaster Road","category":"North American Ale","city":"Gateshead","coordinates":[54.9548,-1.6576],"country":"United Kingdom","ibu":29,"name":"Northumbrian Brown Ale","state":"Tyne and Wear"},{"abv":9,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":55,"name":"Salvation","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":5.3000001907,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":63,"name":"Arrogant Brit","state":"Colorado"},{"abv":3.8107773251844934,"address":"333 North Main Avenue","category":"North American Ale","city":"Gresham","coordinates":[45.5001,-122.431],"country":"United States","ibu":106,"name":"Eager Beaver IPA","state":"Oregon"},{"abv":0.9047593645019225,"address":"808 West Main Street","category":"Irish Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":38,"name":"Porter","state":"Wisconsin"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"Our 13th Anniversary Beer in was a Staff Favorite, So We Make it Each Year. BIG on the Amarillo Hops and Rich Dark Malts for a Round and Huge, Smoky Flavor.","ibu":83,"name":"Lucky 13 Mondo Large Red Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"German Lager","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Our Blond Bock is gold in color and features a malty profile and a spicy finish courtesy of Saaz hops. This beer boasts the flavor of a traditional Bock without the cloying aftertaste.","ibu":108,"name":"Bad Billy Blond Bock","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":4.5,"category":"North American Ale","city":"St. John","coordinates":[18.3368,-64.7281],"country":"United States","description":"Our flagship beer that embodies the uniqueness and character of the Caribbean. Subtle malt notes start this beer off and it finishes with just the right amount of hops for balance.\n\n\nTropical Mango Pale Ale is a light pale ale with a mango fruit essence that is one of a kind taste. No matter where you are enjoying one it will bring you to a Caribbean state of mind.","ibu":84,"name":"Tropical Mango","state":"Virgin Islands","website":"http://www.stjohnbrewers.com/index.html"},{"abv":5.0999999046,"address":"Ottakringerstrasse 91","city":"Wien","coordinates":[48.2133,16.3229],"country":"Austria","ibu":116,"name":"Ottakringer Helles","website":"http://www.ottakringer.at/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named for our friend and patron Tad Eastman, whose Laughing Dragon Tie-Dye studio puts out our fabulous shirts-each one an individual work of art signed by Tad! Reddish Amber in color, this beer has a very bold Chinook hop character.","ibu":105,"name":"Laughing Dragon","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.5,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":14,"name":"Doc's Pale Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":9,"address":"pastoor de katerstraat 24","category":"Belgian and French Ale","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"pure-malt dark ale.\n\nrich and intense. good mix between imperial stout (but not as intense) and quadrupel. The beer has real balance and a luxurious mouthfeel","ibu":43,"name":"embrasse","website":"http://www.dedochtervandekorenaar.be"},{"abv":7.134765999899731,"address":"121 North Market St.","category":"British Ale","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":54,"name":"Shade Mountain Oatmeal Stout","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":6.25,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"It’s an unassuming road leading to the priory. Here, off the corner of two intersecting roads, dedicated monks have been making beer for over 150 years. It’s always been a simple life – the kind that requires they brew only enough to sustain the activities of their monastery. In the silence of passing seasons, they pray, they brew and retire in solitary existence behind the sheltering walls. They live a most interesting life. Most likely one we couldn’t sustain.\n\n\nNearby, each summer, the trellised fields spring to life as rows of resinous green cones are trained toward the heavens. Rumor is some monks love these hops and being surrounded by budding yellow aromas and the leafy pungent fields inspired them. Since we aren’t sensible enough to locate our brewery near hop fields, we can only offer this blond ale in celebration of our Abbey brethren and their steadfast Devotion.","ibu":32,"name":"Devotion","state":"California","website":"http://www.lostabbey.com/"},{"abv":5.0999999046,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":43,"name":"Halligan IPA","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.250074115526574,"address":"821 L Street","category":"North American Ale","city":"Modesto","coordinates":[37.6417,-121.004],"country":"United States","ibu":119,"name":"VHB","state":"California","website":"http://www.ststans.com/"},{"abv":2.4041822091127996,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":48,"name":"Fort Edward Augustus 1770 Scottish Ale","state":"Wisconsin"},{"abv":4.75,"address":"30 Germania Street","category":"North American Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Boston Lager® is the best example of the fundamental characteristics of a great beer, offering a full, rich flavor that is both balanced and complex. It is brewed using a decoction mash, a time consuming, traditional four vessel brewing process discarded by many contemporary brewers. This process brings forth a rich sweetness from the malt that makes it well worth the effort. Samuel Adams Boston Lager® also uses only the finest of ingredients including two row barley, as well as German Noble aroma hops. The exclusive use of two row barley not only imparts a full, smooth body but also gives the beer a wide spectrum of malt flavor ranging from slightly sweet to caramel to slightly roasted. The Noble hops varieties, Hallertau Mittelfruh and Tettnang Tettnanger, add a wide range of floral, piney and citrus notes, which are present from the aroma, through the flavor, to the lingering smooth finish. We take great pride in the Noble hops used in our beers. They are hand selected by Jim Koch and our other brewers from the world's oldest hops growing area. Among the world's most expensive, they cost twenty times as much as other hops.","ibu":96,"name":"Samuel Adams Boston Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":9.534463432945554,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":3,"name":"The Lonely Guy India Pale Ale","state":"Wisconsin"},{"abv":5.589732900016946,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":94,"name":"Stout","state":"Hawaii"},{"abv":7,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":4,"name":"Les Sans Culottes"},{"abv":5.5,"address":"Hohenzornstrasse 2","category":"German Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":119,"name":"Weizentrumpf"},{"abv":6,"address":"Wunderburg 10","category":"German Lager","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":6,"name":"Christmas Bock","state":"Bayern"},{"abv":9.1000003815,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Hoppier, maltier and with more alcohol than a standard IPA, Hercules Double IPA definitely is not for the faint of heart. Hercules Double IPA is, however, an elixir fit for the gods. A brash but creamy wonder, Hercules pours a deep orange-coppery color, forming substantial lace in the glass. Hercules Double IPA delivers a huge amount of piney, floral, and citrusy hop aroma and flavor from start to finish. A hefty backbone of nutty, toffee-like malt character balances Hercules’ aggressive, punchy hop profile.","ibu":109,"name":"Hercules Double IPA","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.5,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":82,"name":"IPA","state":"Oxford"},{"abv":9.744955564556411,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":24,"name":"American Pale Ale","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":9.803370783805908,"address":"6901 Konica Drive","category":"North American Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Hummin' Bird is a Light Lager or Hell (Helles) similar to those found throughout Bavaria. We use carefully selected Pilsner Malt…then it is delicately hopped with imported Tettnang Noble Hops. Then we add a proprietary lager yeast strain which is not filtered out providing ones daily supply of vitamin B. Hummin' Bird is slow-cold aged for over one month resulting in a lush mouth feel.","ibu":37,"name":"Hummin Bird","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":6,"address":"Spanjestraat 133-141","city":"Roeselare","coordinates":[50.9462,3.1362],"country":"Belgium","ibu":72,"name":"Grand Cru","state":"West-Vlaanderen"},{"abv":6.2877068818337944,"address":"2320 SE OSU Drive","category":"British Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Our original Rogue Ale, Youngers Special Bitter (affectionately nicknamed YSB) is a classic English Special Bitter named after Bill Younger of the infamous Horse Brass Pub in Portland, Oregon. The Malt Advocate described Youngers Special Bitter as \"rich and flavorful. A triad of caramel maltiness, fruitiness (apricots?), and hop bitterness in aroma and flavor. A fuller malt foundation than some other pale ales, with some background spiciness. Dry, hoppy finish.\" In the SouthWest Brewing News, Feb/March 1994 issue, George Fix wrote \"A strong case could be made for Rogue Ale being included among the top 5 ales brewed in the US.","ibu":58,"name":"Youngers Special Bitter","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Rugged yet smooth, Kodiak Brown Ale balances caramel and roasted malts with enticing Northwest hops. Inspired by the adventurous spirit readily found in Alaska, Kodiak Brown Ale invites you to take the road less traveled. Like true Alaskans, we are not afraid of the dark.","ibu":56,"name":"Kodiak Brown Nut Brown Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"5429 Shaune Drive","category":"German Lager","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","ibu":38,"name":"Breakup Bock","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":0.6848174835936127,"address":"674 South Whitney Way","category":"Other Style","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":108,"name":"Raspy Raspberry Weiss","state":"Wisconsin"},{"abv":14.596511593303536,"address":"Denterhoutembaan 2","city":"Ninove","coordinates":[50.8417,4.0213],"country":"Belgium","ibu":14,"name":"Witkap-Pater Singel Abbey Ale","state":"Oost-Vlaanderen"},{"abv":4.784230571554129,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":0,"name":"Beekeepers Honey Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":13,"address":"Woesten","category":"North American Ale","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":34,"name":"Black Albert","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":7.27259956674522,"address":"138 Nassau Street","category":"British Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":30,"name":"Scottish Ale","state":"New Jersey"},{"abv":9.3999996185,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Brew 1 – March – “The Iron Tankard” Old Stock Ale – The building started as a YMCA in 1889 and had a huge iron swimming pool in the basement.\n\n\nFrom Spike: Iron Tankard “Old Stock Ale” is the first of four beers in Terrapin’s Georgia Theatre Sessions. It is brewed with a generous portion of crystal malts for a full body and is lightly hopped. This malt forward beer has flavors of dark dried fruit, mellow alcoholic warmth and is unfiltered for your listening pleasure.\n\n\nA portion of the proceeds will be donated to the Georgia Historic Trust for Historic Preservation Fund to rebuild the Georgia Theater. To make things even more interesting, there is one Golden Ticket hidden among each of the Georgia Theater Sessions brews. This means that four lucky winners will receive a lifetime pass to the new Theater.","ibu":28,"name":"The Iron Tankard","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":0.961330241143985,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":118,"name":"Half Moon Gold","state":"Wisconsin"},{"abv":11.634941465724747,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":3,"name":"Eagle Lake Pale Ale","state":"Minnesota"},{"abv":14.422028001649384,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":68,"name":"Shawnee Amber Ale","state":"Texas"},{"abv":14.5739911347484,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":73,"name":"Grand Cru","state":"Texas"},{"abv":11.02314864546245,"address":"124 Manhattan Beach Boulevard","category":"North American Ale","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":91,"name":"Rat Beach Red Ale","state":"California"},{"abv":9.429577948481697,"address":"901 Gilman Street","category":"German Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":22,"name":"Oktoberfest","state":"California"},{"abv":5.5,"category":"North American Ale","city":"Sonora","coordinates":[37.9841,-120.382],"country":"United States","ibu":51,"name":"Thompson Pale Ale","state":"California"},{"abv":0.0830842010025179,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":46,"name":"Honey Ale","state":"Wisconsin"},{"abv":14.917468608339618,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":107,"name":"Millennium Ale","state":"Wisconsin"},{"abv":9.60296853524037,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":46,"name":"Iron Red Ale","state":"Michigan"},{"abv":14.893475840444871,"category":"German Lager","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":1,"name":"Oktoberfest","state":"Colorado"},{"abv":7.732015769986354,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":32,"name":"Portsmouth Pale","state":"Colorado"},{"abv":5.6999998093,"address":"The Brewery","city":"Ripon","country":"United Kingdom","ibu":73,"name":"Old Peculier","state":"North Yorkshire"},{"abv":2.087416074009699,"city":"Eden Prairie","coordinates":[44.8652,-93.4095],"country":"United States","ibu":8,"name":"Old LS Barleywine","state":"Minnesota"},{"abv":14.152008331938616,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":58,"name":"Anglers Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":5.1999998093,"address":"901 SW Simpson Avenue","category":"Irish Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Towering high above Central Oregon, jetting into clear blue skies, Black Butte can be seen for miles. From its base flows the legendary Metolius River--with its source hidden deep beneath ancient lava flows. \n\n\nBlack Butte Porter, crafted from chocolate and crystal malts, is Deschutes Brewery’s flagship brand. With a rich and distinctive flavor, this porter has enjoyed a loyal and passionate following since its first pint in 1988.","ibu":46,"name":"Black Butte Porter","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","description":"A delicately flavored golden ale in which subtle fruity esters from the Samuel Smith yeast strain interact with a background of maltiness and fresh hops.","ibu":47,"name":"Organic Ale","state":"North Yorkshire"},{"abv":1.8728554211074788,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Honey Orange Wheat is an unfiltered wheat beer and has flavors of honey and orange balanced with a nice medium-sweet malt character. It is medium bodied with no harsh bitterness and a nice honey-orange finish. It is made from Northwest Two-Row and Wheat Malts; Willamette Hops; #48 Oregon Wildflower Honey, Orange Juice, and Free Range Coastal Waters. It is currently available on draft.","ibu":99,"name":"Honey Orange Wheat","state":"Oregon","website":"http://www.rogue.com"},{"abv":3.2041802944085465,"ibu":40},{"abv":5.1999998093,"address":"Vaartstraat 94","category":"North American Lager","city":"Leuven","coordinates":[50.8853,4.7008],"country":"Belgium","description":"Stella Artois was first brewed as a Christmas beer in leuven. It was named Stella from the star of Christmas, and Artois after Sebastian Artois, founder of the brewery. It's brewed to perfection using the original Stella Artois yeast and the celebrated Saaz hops. It's the optimum premium lager, with it's full flavour and clean crisp taste.","ibu":24,"name":"Stella Artois","state":"Vlaams Brabant"},{"abv":5.1999998093,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Rich golden hue color. Floral hop with sweet malt aroma. Medium mouth feel with malt sweetness, hop quenching flavor and well-balanced bitterness.","ibu":25,"name":"Amendment Pale Ale","state":"California","website":"http://www.21st-amendment.com/"},{"abv":7,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"A bock beer is required by German law to start at 17°Plato. For those who are interested, °Plato is a measurement of the sugar content before fermentation. It is a very malty lager beer with medium hop bitterness. A maibock is a light to amber colored bock beer. A Maibock is very similar to a Helles/pale bock. Maibocks were originally brewed for the coming of spring, hence the name Mai (German for May). The Mad Brewer Maibock is medium amber in color. Though similar in color to our Pipe Organ Pale Ale, it is very different in character. Don’t let it get you though, it’s a very strong beer at about 7% alcohol. It has a very clean and malty nose. The hop bitterness is evident, but not dominant. The Mad Brewer Maibock will finish quite full and have a delicate sweetness.","ibu":21,"name":"Mad Brewer Maibock","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":10,"address":"6 Cannery Village Center","category":"Belgian and French Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A big, belgian-style Wit brewed with coriander and orange peel and fermented with Pinot Noir juice. After fermentation a fraction of the batch is aged in Oregon Pinot Noir barrels, and another fraction is aged on oak staves. The beer is blended together before packaging.\n\n\nThis has been one of our most popular Limited Edition beers at both our Rehoboth Beach, DE brewpub and at festivals. It successfully marries the refreshing citrusy qualities of a Belgian-style white beer with the robust complexity of a bold red wine.","ibu":78,"name":"Red & White","state":"Delaware","website":"http://www.dogfish.com"},{"abv":13,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"Everyday Goose Island smells the wonderful coffee roasting next to our brewery at Chicago's Intelligentsia Coffee and Tea. They put the same passion and skill into their coffee as Goose Island does with its beer. This excellent stout is made with Black Cat Espresso beans from our friends next door. You'll like the combination.","ibu":60,"name":"Bourbon County Brand Coffee Stout","state":"Illinois"},{"abv":7.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"We teamed up with St. Thomas Roasters of Linglestown, PA to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating an environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Java Head a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus aromas from the combination of Kenyan beans and whole flower hops.","ibu":11,"name":"Java Head Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"With a coppery-amber color and a full malty body with flavors of nuts and toffee. The English hops lend enough “spice” to leave a very drinkable finish to this comfort food of a beer. Available on draft from November to May.","ibu":73,"name":"Sky Pilot Scotch Ale","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":5.25,"address":"491 Ontario Street","category":"North American Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Buffalo’s favorite red ale. Ruby red and malty flavored with a medium body and a spicy hop signature to balance. Available in bottles and on draft","ibu":67,"name":"Aviator Red","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":5.8000001907000005,"address":"rue du cerf","category":"British Ale","city":"Genval","coordinates":[50.7298,4.508],"country":"Belgium","ibu":111,"name":"Martin's Pale Ale","website":"http://www.anthonymartin.be/"},{"abv":2.136961679456193,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":43,"name":"Iron Horse Stout","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":7.5,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"Lost and Found- Modeled after the great Trappist and Monastic beers that inspired the founding of our brewery. A richly deep garnet colored ale created from a blend of Domestic and imported malts. As part of our commitment to interesting brewing endeavors, Chef Vince created a special raisin puree for this beer. Malts, raisins and a fantastic yeast strain working in harmony produce a beer of amazing complexity and depth. Available in 750ml bottles and on draft at select inspired locations.","ibu":61,"name":"Lost and Found Abbey Ale","state":"California","website":"http://www.lostabbey.com/"},{"abv":7,"address":"1257, Kounsosu","category":"British Ale","city":"Ibaraki","country":"Japan","ibu":7,"name":"Hitachino Nest Japanese Classic Ale","state":"Kanto"},{"abv":2.0008513953433327,"address":"1441 Cartwright Street","category":"German Ale","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":0,"name":"Hefeweizen","state":"British Columbia"},{"abv":8,"address":"Kerkstraat 92","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","description":"LOOK:\n\nKwak is recognisable by its deep bright amber colour and a dense, creamy coloured head. The pale wood of the glass holder makes a pleasant contrast with the beer.\n\n\nSMELL:\n\nYou will smell a mellow, fruity and malty aroma with a slightly spicy character (coriander, hops). Additional earthy and very subtle aromas of banana and perhaps also a whiff of pineapple or mango in the background.\n\n\nTASTE:\n\nDiscover a very mellow, fruity attack, a nougat-like solidity, and a slightly spicy character with hints of liquorice passing into a warm finish that reminds you of caramelised banana. The bitterness always remains in the background but in the end emerges delicately.","ibu":1,"name":"Pauwel Kwak","state":"Oost-Vlaanderen"},{"abv":7,"address":"Gamle Rygene Kraftstasjon","category":"Irish Ale","city":"Grimstad","country":"Norway","description":"In this quite dark ale, dark malts provide flavors of coffee and dried fruit. Recommended serving temperature 10°C/50°F. Try with dark chocolate, cheese, or red meat dishes.","ibu":5,"name":"Nøgne Ø Porter","state":"Lunde","website":"http://nogne-o.com/"},{"abv":3.4942949859371417,"address":"120 East Third Street","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":39,"name":"Grand Cru","state":"Nebraska"},{"abv":5,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":97,"name":"Bison Brown","state":"New Jersey"},{"abv":4.8000001907000005,"address":"Wunderburg 5","category":"German Ale","city":"Bamberg","coordinates":[49.8904,10.9056],"country":"Germany","ibu":79,"name":"Weissbier","state":"Bayern"},{"abv":2.5968957778506696,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":107,"name":"Kriek-Lambic","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":5.0999999046,"address":"Am Brunnen 2","city":"Wolnzach","country":"Germany","ibu":47,"name":"Hell","state":"Bayern"},{"abv":0.8445481864424731,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":119,"name":"X-Tra Pale","state":"California"},{"abv":5.947586842193584,"address":"6 N. Reamstown Road","category":"North American Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"Dortmunder style lager with full body and deep golden color. Brewed using four specialty malts with moderate hopping for a smooth clean flavor and aroma.","ibu":94,"name":"Union Barrel Works Lager","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":10,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A fine companion to end a meal or relax in front of the hearth with, this robust ale will cellar well for years. Brewed with ten varieties of malted barley this stout is extremely smooth, complex and rich in body. We recommend serving at cellar temperature. Sit back and enjoy its richness and complexity, your about to drink the ultimate winter warmer.","ibu":11,"name":"Founders Imperial Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Reddish amber in color, mild and malty with hop aroma and finish.","ibu":10,"name":"Righteous Red","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"Brouwerslaan 1","category":"German Lager","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"The 'standard' Grolsch beer.","ibu":24,"name":"Grolsch Premium Pilsner","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":0.3123783377257239,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":70,"name":"Framboise 1997","state":"Vlaams Brabant"},{"abv":5.482498946306197,"category":"North American Ale","city":"Bellingham","coordinates":[48.7596,-122.488],"country":"United States","ibu":117,"name":"Pale Ale","state":"Washington"},{"abv":13.714363280762058,"category":"North American Ale","city":"Eden Prairie","coordinates":[44.8652,-93.4095],"country":"United States","ibu":46,"name":"Flying Horse Pale Ale","state":"Minnesota"},{"abv":0.9733896805017794,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":5,"name":"Dock Light Golden Ale","state":"Wisconsin"},{"abv":9.198683558279273,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":29,"name":"Red Earth Pale Ale","state":"Michigan"},{"abv":14.635723281812389,"category":"North American Ale","city":"Las Vegas","coordinates":[36.1286,-115.171],"country":"United States","ibu":99,"name":"Jackpot Pale","state":"Nevada"},{"abv":3.186075322417622,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":87,"name":"Four Horsemen Ale","state":"Indiana"},{"abv":7.3000001907,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":2,"name":"Petrus Aged Pale","state":"West-Vlaanderen"},{"abv":4.9000000954,"address":"21 W. Bay St.","category":"German Lager","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"This German-style Festival bier has a rich orange hue. Its medium body is complemented by a Munich malt toastiness and premium German hops which are a blend of Hallertau, Spalt, Hersbruck and Saaz, yielding a spicy, \"noble hop\" aroma.","ibu":91,"name":"Savannah Fest","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":11,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"First brewed in 1998 to be served on our fifth anniversary (December 15, 1999), this beer just gets better every year. And, every year around our anniversary, we brew a new vintage. With an original gravity of 1099, this Barley Wine is dark and sweet, and is served in a snifter like an after-dinner drink. You'll want to savor it slowly.","ibu":18,"name":"Old '99 Barley Wine","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":5.4000000954,"address":"311 Tenth Street","category":"North American Ale","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Brewed only in spring. Has a crisp taste, thanks to the kieffer lime leaves and lime added in. Has a light amber color and absolutely delicious!","ibu":19,"name":"Rising Moon Spring Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":8.516886235793109,"address":"91 S Royal Brougham Way","category":"North American Lager","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":86,"name":"Sun Fest","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":0.4790984546919397,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":109,"name":"Winter Solstice Seasonal Ale 1992","state":"California","website":"http://avbc.com/"},{"abv":6.8000001907000005,"category":"German Lager","city":"Helena","coordinates":[46.5958,-112.027],"country":"United States","ibu":85,"name":"Doppelbock","state":"Montana"},{"abv":0.16680381456620985,"address":"Black Creek Pioneer Village","category":"Other Style","city":"Toronto","country":"Canada","description":"Porter is a dark-coloured beer developed in the 1750s. Porter has a heavier flavour and aroma and a slightly sweet taste. Its name probably originates in the belief that this strong, nourishing drink was ideal for hard-working porters and labourers. Black Creek Porter is wonderful on its own, or with salty snacks.","ibu":90,"name":"Black Creek Porter","state":"Ontario","website":"http://www.blackcreekbrewery.ca/"},{"abv":9.3999996185,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Made from our B.O.R.I.S. Imperial Stout, that was rated one of the World’s 50 Best Beers, and won the Gold Medal at the GABF in 2008. BARREL-AGED B.O.R.I.S. has picked up rich characters of vanilla, dark fruit, oak, and spice. It’s unbelievably complex and savory","ibu":68,"name":"Barrel-Aged B.O.R.I.S. Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":9,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer is a salute to the ingenuity and creativity of the American craft brewers. A uniquely American style of beer, the Double or Imperial IPA, has become the calling card of many craft brewers who aren't afraid to push the limits of what hops can add to a beer. This beer is big and hoppy - not for the faint of heart! Be prepared to experience sensory overload as you savor this Imperial IPA.","ibu":9,"name":"Captain's Reserve Imperial IPA","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":5,"address":"6648 Reservoir Ln","category":"German Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"TailGate Beer does the German style wheat beer right. Hints of citrus, complemented by sprinkles of spice that makes a German, full flavored brew that is really hard to say right. Proud of the names ‘weizen’ (wheat) base ingredient, TGB draws most of its flavor from the famed grass plant. This Hef is one truly crisp, and refreshing unfiltered ale that garnishes well with a lemon or an orange! Be sure to impress your friends with your fine tuned palate and sophisticated verbiage next time you belly up to order your TailGate Beer “HEH-feh-vite-zehn”","ibu":96,"name":"Tailgate Hefeweizen","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":7.4499998093,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"This hophead's delight contains 7 hop additions. A malt background balances the hoppy bitterness for a complex flavor.","ibu":63,"name":"Hopnoxxxious","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":7.5,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"The newest member of the Firestone family, Union Jack is the aggressive IPA that you’ve been searching for. Citrus, pineapple, and a full chewy malt profile finish clean on your palate. Over 70 IBUs and 7.5% alcohol by volume, Union Jack won’t have any problem competing with the big India Pale Ales. A beer true to its origins; deeply hopped and bolstered for a long voyage.","ibu":26,"name":"Union Jack India Pale Ale","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.9000000954000003,"address":"237 West Butler Avenue","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"How about trying a glass of traditional Irish stout. Our stout however is not particularly dry and has overtones of dark chocolate and toffee. The infused nitrogen gives a wonderful cascading effect in the glass and a rich, creamy head. Particularly tasty when paired with our oysters on the half shell.","ibu":68,"name":"Anne Bonny Irish Stout","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"An American style Wheat Ale made with 50% malted 2 Row barley and 50% malted wheat. Valley Brew Pale Wheat is lightly hopped to produce a smooth and satisfying finish.","ibu":52,"name":"Valley Brew Pale Wheat","state":"California","website":"http://www.valleybrew.com/"},{"abv":5,"address":"140 North Third Street","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This brew was inspired by the historical burning of our hometown of Chambersburg, PA in July 1864. During the burning, the brewery in town, \"Ludwigs Brewery\" operated by George Ludwig was burned to the ground by Confederate soldiers under Gen. McCausland. In remembrance of this event we created a German style rauchbier, or dark smoked lager. This beer uses all its ingredients from Bamberg, Germany, which is where the style was born and in by coincidence, the same area where Ludwig himself was born and taught to brew. It is made with a special birch wood smoked malt that imparts a light smoky aroma, taste, and dryness to the palate. The pilsner malt and noble German hops are used to balance this dryness making it very enjoyable as well as different. We believe this beer resembles how Ludwig himself might have brewed it over 100 years ago.","ibu":68,"name":"Ludwig's Revenge","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":1.1014258751991413,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Baron Oktoberfest is a traditional German Style Oktoberfest / Marzen. Deep copper/amber in color with a rich but light malt flavor. Finishes crisp and easy, leaving the mouth desiring more. We age the Oktoberfest for a full three months to guarantee a fantastically smooth beer.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":58,"name":"Baron Oktoberfest","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":10.84969456700371,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":38,"name":"The Big O Oktobefest","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":14.432535533059134,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":68,"name":"Triple Impériale","state":"Hainaut"},{"abv":5.9000000954,"address":"611 North Pine","category":"Irish Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":87,"name":"Porter","state":"Washington"},{"abv":0.31073342982100516,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":2,"name":"India Pale Ale","state":"Washington"},{"abv":5.712256063444832,"address":"4133 University Way NE","category":"Irish Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":32,"name":"Coal Creek Porter","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6.2069718648745695,"address":"5820 Marine Drive","category":"North American Ale","city":"Burnaby","coordinates":[49.2055,-122.978],"country":"Canada","ibu":34,"name":"Pale Ale","state":"British Columbia"},{"abv":7.5,"address":"Brenplatz 7","category":"German Lager","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":81,"name":"Coronator Helle Doppelbock","state":"Baden-Wrttemberg"},{"abv":5.4000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":109,"name":"Kapuziner Schwarz-Weizen","state":"Bayern"},{"abv":7.5,"address":"2 Penhall Road","category":"North American Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","ibu":40,"name":"India Pale Ale","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":8.5,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"DoppelBock Dunkel has a pleasant full and creamy body, with a cofeeish aroma. Nicely warming with toffeelike malty sweetness, balanced by a hoppy-bitterness in the finish.","ibu":17,"name":"Doppelbock Dunkel"},{"abv":5,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":46,"name":"Pelican Pale","state":"California"},{"abv":10.5,"address":"Oostrozebekestraat 114","category":"North American Ale","city":"Ingelmunster","coordinates":[50.919,3.2632],"country":"Belgium","ibu":69,"name":"Podge Belgian Imperial Stout","state":"West-Vlaanderen"},{"abv":3.399526716255866,"category":"Irish Ale","city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":65,"name":"Palace Porter","state":"Minnesota"},{"abv":5.5999999046,"address":"279 Springfield Avenue","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":94,"name":"Ghost Pony Helles Lager","state":"New Jersey"},{"abv":5.5,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":109,"name":"Lagerbier","state":"Bayern"},{"abv":12.700598144656718,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":54,"name":"Old Roundout Pale Ale","state":"Illinois"},{"abv":14.568506383748957,"category":"German Lager","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":48,"name":"Stein Bock","state":"Iowa"},{"abv":10.995062204014728,"address":"Emil-Ott-Strasse 1-5","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":22,"name":"Weisse Dunkel","website":"http://www.schneider-weisse.de"},{"abv":6.557525591471859,"address":"824 West St.Clair Avenue","city":"Cleveland","coordinates":[41.4995,-81.6994],"country":"United States","ibu":97,"name":"Kölsch","state":"Ohio"},{"abv":5.724958612999382,"address":"2565 North Highway 14","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":107,"name":"Eastern Sierra Lager","state":"California"},{"abv":4.804876634170645,"address":"375 Water Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Every year in Vancouver there are a few days when the air is cool & crisp, the sun shines brightly, and the leaves show their vibrant colours -- then it starts to rain incessantly. Anyway, our Cascadia Cream Ale is dedicated to the spirit of mountains, oceans, golden days and gentle mist. Caramel and honey malts lend this ale a mellow, grainy maltiness which is balanced by the subtle presence of English finishing hops. Cheers, our Cascadia Cream Ale will be sure to brighten up even the wettest West Coast day.","ibu":115,"name":"Cascadia Cream Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":4.8000001907000005,"address":"306 Northern Avenue","category":"German Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"From Harpoon's site:\n\n\n\"UFO Hefeweizen is an American unfiltered wheat beer. Perhaps UFO’s initial sensory perception is also its most prominent: a cloudy golden color and a dense, frothy head. The yeast, which has not been filtered out, accounts for the cloudiness of UFO. Wheat malt tends to create a larger head than barley malt, the cereal grain most often used in brewing. When served in a traditional wheat beer glass with a lemon, UFO presents an appealing and distinctive visual image.\n\n\nThe aroma has a faint but clear citrus-like character. This is produced by the special yeast and accounts for the Bavarian tradition of serving hefeweizens with a lemon. The lemon accentuates the yeast’s fruity, tart fragrance. UFO has a soft mouthfeel and a refreshing, light body. The wheat malts and subtle hopping give the beer a mild, delicate flavor. UFO has a clean finish. Unlike some imported hefeweizens, UFO does not have the spicy, tropical flavors typical of European-brewed style.\n\n\nThe overall character is a cloudy appearance with a citrus-like aroma, light body, and clean finish. Serve with a lemon.\";\"0","ibu":46,"name":"Harpoon UFO Hefeweizen","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":0.7473158808877178,"category":"North American Ale","city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":27,"name":"Double Eagle Golden Ale","state":"North Carolina"},{"abv":10.649277479381382,"address":"401 Cross Street","category":"German Lager","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":17,"name":"Limestone Bavarian Style Bock (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":5.1999998093,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":81,"name":"Saison 1900","state":"Brabant Wallon"},{"abv":0.22714667201847227,"address":"309 Court Avenue","category":"Other Style","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":6,"name":"Capital Raspberry Wheat","state":"Iowa"},{"abv":4.8000001907000005,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Czechoslovakian style Pilsner is golden in color and hopped with a bunch of genuine Czechoslovakian Saaz hops. These hops provide a special floral aroma and a delightfully hoppy finish.\n\nPeregrine Falcons were recently reintroduced to the Harrisburg area as well as other large cities in Pennsylvania. This Falcon is one of the fastest birds, reaching speeds in excess of 200 miles per hour. Its unique ability to rid urban areas of its nemesis, the pigeon, has cities throughout the region clamoring for the Peregrine as a permanent resident.","ibu":45,"name":"Peregrine Pilsner","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.6405867368838212,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":105,"name":"Longshot Hazelnut Brown","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":3.5,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.","ibu":21,"name":"Dos Perros","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.9000000954,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"This wonderfully refreshing beer specialty from Stiegl, Austria’s largest privately owned brewery is brewed in strict adherence with the 1516 purity law of only using water, malt and hops. Stiegl-Goldbräu is an Austrian styled beer with its own distinctive Salzburg lager flavor. The 12o original gravity is unparalleled in its even taste and ability to refresh. It is mildly hopped is golden in color has a great head with a superb finish. Stiegl-Goldbräu is considered by many connoisseurs to be the world’s finest beer.","ibu":50,"name":"Stiegl Goldbräu","website":"http://www.stieglbrauerei.at/"},{"abv":5,"address":"80 LAMBERT LANE","category":"North American Lager","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"We mill the choicest two row barley malt in our 100 year old mill room for this all natural, unfiltered Lager. Lightly hopped, fermented slowly. River Horse Lager gets plenty of quality time with us before we pass it on to you.","ibu":53,"name":"River Horse Lager","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5.5,"address":"190 5th Street","category":"Belgian and French Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Maillot Jaune, or \"Yellow Shirt\", is named for the jersey of honor given to the leader of the Tour De France bicycle race held every July. American Lance Armstrong is the only person in history to wear the Maillot Jaune 7 times in a row! Golden in color and blessed with a kiss of hop bitterness, this ale is also available barrel aged. Steve swears that he does not use any performance enhancing drugs in the production of this beer!","ibu":96,"name":"Maillot Jaune","state":"Michigan","website":"http://liverybrew.com/"},{"abv":6.4000000954,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"This extra hoppy ale is characteristic of the classic pale ales. Using the very flavorful Mount Hood and Liberty hops we have created classic IPA goodness every sailor knows.","ibu":19,"name":"Dead Man Walkin' IPA","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"Our newest addition to our Harvest family is Southern Hemisphere Harvest. This is the first time we know of that an American brewer has put out a beer with fresh-picked hops from the southern hemisphere. The inaugural ale will debut in late April and will feature fresh Pacific Hallertau, New Zealand Motueka and New Zealand Southern Cross hops, all from New Zealand. \n\n\nLike our Celebration Ale, the fresh hops in this beer are dried right after being picked then shipped immediately to Chico for brewing so that they retain their peak aromatics and flavors. To ensure the freshest hops possible, we went to the added expense of flying these hops from New Zealand to Chico so we could brew with them the week after they were picked.","ibu":42,"name":"Southern Hemisphere Harvest Fresh Hop Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":2.9815074615863004,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":90,"name":"Fireman's Pail Ale","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Our classic German lager has a perfect balance of caramel malt sweetness. Look for a rich, amber color and medium body.","ibu":109,"name":"Saranac Adirondack Lager","state":"New York","website":"http://www.saranac.com"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"British Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An imperial bitter style using exotic traditional floor malts, citrus hoppy flavor, stupendous hop aroma. Hedonistic!\"Mellow Beer Emboldened by Hops,\" Elaine Louies article in the New York TimesDining Out Section, (March 24, 1999) announced the release of latest Rogue elixir to be bottled. The article states that \"The newest beer of Rogue Ales sounds more aggressive than it is. Brutal Bitter is actually full-bodied, deeply flavored, intensely hoppy brew. There is nothing brutal about the rich, deep, mellow taste. Its crackling but not sharp... This beer may raise eyebrows, but it wont pucker lips. The aftertaste is clean.","ibu":18,"name":"Brutal Bitter","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"8938 Krum Ave.","category":"Belgian and French Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A Wheat Ale brewed with American Wheat and a proprietary blend of Hefe and classic Belgian-style yeasts. A refreshing winter alternative created from the subtle fusion of two classic flavors.","ibu":48,"name":"Winter White Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6.3000001907,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"Rich fruitcake aromas – almonds, zest and conserved fruit. A wonderful balance of malt and hop flavours. A beer to savour and rich in flavour.","ibu":102,"name":"Broadside Ale","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":9.812127086087875,"address":"1918 West End Avenue","city":"Nashville","coordinates":[36.152,-86.7989],"country":"United States","ibu":38,"name":"Chaser Pale","state":"Tennessee"},{"abv":14.145700405418827,"address":"830 Main Street","category":"North American Lager","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":43,"name":"Island Wheat","state":"California"},{"abv":4.509185878837938,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":26,"name":"Oatmeal Stout","state":"California"},{"abv":6.8000001907000005,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":98,"name":"Organic Gingerbread Ale","state":"California"},{"abv":3.7310732322558318,"address":"417 North Broadway","category":"North American Ale","city":"Red Lodge","coordinates":[45.1913,-109.247],"country":"United States","ibu":65,"name":"Glacier Ale","state":"Montana"},{"abv":5.0999999046,"address":"Kendlerstraße 1","category":"German Ale","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This fine yeast wheat beer specialty is a refreshing, natural and stimulating beer brand.","ibu":30,"name":"Weizengold Hefefein","website":"http://www.stieglbrauerei.at/"},{"abv":7.5,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A rich brown ale inspired by the enigmatic monastic brews of Belgium, and the mysterious mist shrouded jungles of the tropics. Brewed with real cacao, and spiced with cinnamon and sweet orange peel for a sensual delight. A brew to be sipped, savored, and enjoyed!","ibu":74,"name":"Maracaibo Especial","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":2.416402685712069,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":107,"name":"Bokrijks Kruikenbier","state":"Antwerpen"},{"abv":6,"address":"Metaalweg 10","category":"North American Lager","city":"Roermond","coordinates":[51.1684,6.0515],"country":"Netherlands","description":"Christoffel Robertus is a low-fermenting ruby-red beer, brewed in the Münchener-style. It is a malty, fresh beer with a light sweetness. The typical hop bitterness found in Blond, is very lightly present in Robertus. The use of an extensive amount of selected barley gives Robertus the special malty taste and aroma.","ibu":118,"name":"Robertus","website":"http://www.christoffelbeer.com"},{"abv":11.379344636308964,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":118,"name":"Adler Bräu Ginseng Lager","state":"Wisconsin"},{"abv":12.66418458714157,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":36,"name":"Steenbrugge Tripel Blond","state":"Oost-Vlaanderen"},{"abv":12.561240919873477,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":13,"name":"Hops and Glory American Ale","state":"Wisconsin"},{"abv":12.899321694920497,"address":"219 Governor's Square","category":"North American Ale","city":"Bear","coordinates":[39.6318,-75.6628],"country":"United States","ibu":60,"name":"Highlander Stout","state":"Delaware"},{"abv":10,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Emphasizing that complexity of character can arise from simple elements, this ale is made with three malts and one hop. Its light amber color and slightly spicy malt character are derived from the use of German Dark Munich Malt and Rye Malt respectively. North American 2-row barley combines with the other grains to lay the foundation for the hop onslaught to come. Summit hops are used exclusively in the boil for bitterness, flavor and aroma but it doesn’t end there. Post-fermentation dry hopping allows the 9.5% ABV monstrosity to gently coax the citrus rind and grapefruit aroma to join the 100 IBUs already present. This beer should greet you with a pungent citrus blast, provide a spicy yet round middle and finish with a brisk, clean bitterness.","ibu":109,"name":"Gubna Imperial IPA","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":0.564256922362596,"city":"Fresno","coordinates":[36.7477,-119.772],"country":"United States","ibu":85,"name":"Aztec Amaranth Ale","state":"California"},{"abv":10.281202331062921,"address":"135 North Highway 101","city":"Solana Beach","coordinates":[32.9908,-117.272],"country":"United States","ibu":85,"name":"Cuvee de Tomme","state":"California","website":"http://www.pizzaport.com"},{"abv":0.2945952310225852,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":23,"name":"J&S; Stout","state":"Wisconsin"},{"abv":8.309371066324028,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":69,"name":"American Pale Ale","state":"Illinois"},{"abv":3.753408274878798,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":93,"name":"INDIAna Pale Ale","state":"Indiana"},{"abv":1.1014166666011538,"address":"1927 West North Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9104,-87.6761],"country":"United States","ibu":65,"name":"4 Reverends Imperial Stout","state":"Illinois"},{"abv":7.25,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":65,"name":"IPA","state":"California","website":"http://alesmith.com/"},{"abv":4.5999999046,"address":"Oststrae 123","category":"North American Ale","city":"Dsseldorf","coordinates":[51.2216,6.7853],"country":"Germany","ibu":5,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":4.8000001907000005,"address":"Auerhahnring 1","city":"Wernigerode","coordinates":[51.8439,10.7533],"country":"Germany","ibu":46,"name":"Premium Pils","state":"Sachsen-Anhalt"},{"abv":0.631194791864369,"address":"1525 St. Charles Avenue","category":"North American Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":104,"name":"Z.P.A. India Pale Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":10,"address":"120 Wilkinson Street","category":"Belgian and French Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Cellar aged, subtly complex and deceptively strong. Using two of the old world's brewing traditions, we have combined British ingredients and methods with Belgian ale qualities.","ibu":37,"name":"Tripel Crown","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6,"address":"200 Aalststraat","category":"Belgian and French Ale","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":67,"name":"Liefmans Kriekbier","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":11.347579721530627,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":101,"name":"Oak Aged Single Malt","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":13.730754724391014,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":84,"name":"8-Ball Stout","state":"California","website":"http://www.lostcoast.com/"},{"abv":2.59263254295813,"address":"146 Snelling Avenue North","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":113,"name":"Irish Gold","state":"Minnesota"},{"abv":10.086878774602187,"address":"57 Hamline Avenue South","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":115,"name":"Big Island Porter","state":"Minnesota"},{"abv":5.5,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":80,"name":"Old Rogue Pale Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":0.015879479308628097,"address":"375 West 910 South","city":"Heber City","coordinates":[40.496,-111.42],"country":"United States","ibu":101,"name":"Steamer","state":"Utah"},{"abv":8,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":75,"name":"Grand Cru of the Emperor","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5,"address":"639 Conner Street","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":4,"name":"60 Shilling Scotch Ale","state":"Indiana"},{"abv":14.775890842692444,"address":"921 South Riverside Drive","category":"Other Style","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":108,"name":"Riverboat Raspberry flavored Beer","state":"Missouri"},{"abv":7.403712838880371,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":76,"name":"Haymarket Ale","state":"Michigan"},{"abv":7.276612476252024,"category":"North American Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":77,"name":"Oyster Stout","state":"Indiana"},{"abv":11.833094448773364,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":86,"name":"Affligem Noël","state":"Vlaams Brabant"},{"abv":2.2439567432718133,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":59,"name":"Barleywine","state":"Illinois"},{"abv":11.409843351082118,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":2,"name":"Moylannium Ale","state":"California","website":"http://www.moylans.com/"},{"abv":14.430794107516663,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":95,"name":"4th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.5,"address":"302 N. Plum St.","category":"North American Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A traditional German style lager. Characterized by a deep copper color and rich malt flavor. Balanced with German hops.\n\n\nAvailable at the Brewery and in bottles & cases from March - May.","ibu":24,"name":"Spring Bock","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":3.2538108694483947,"city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":109,"name":"Blonde","state":"California"},{"abv":13.35674639571441,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":21,"name":"Brown Bear Ale","state":"California"},{"abv":7.5,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":3,"name":"Alba Scots Pine Ale","state":"Scotland"},{"abv":4.579943946334456,"address":"1398 Haight Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":6,"name":"Cole Porter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":12.023275515602323,"address":"617 Fourth Street","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":60,"name":"Dunkel Hefeweizen","state":"California","website":"http://www.lostcoast.com/"},{"abv":4.576358069109242,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":51,"name":"Red","state":"Illinois"},{"abv":6.338018779641271,"address":"Fonteinstraat 65","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":16,"name":"Pertotale Faro","state":"Vlaams Brabant"},{"abv":4,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"A regular winner of awards for quality and flavour, and winner of the silver medal at the International Brewing Industry Awards 2002, this refreshing yet full-bodied bitter is a favourite with beer drinkers everywhere. The rich flavours of premium malt and goldings hops are unmistakable in this well balanced, traditionally brewed bitter.","ibu":75,"name":"Finest Bitter","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":9,"address":"2800 North Reading Road","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":64,"name":"Old Abominable Barley Wine","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":6.4000000954,"address":"35 Fire Place","category":"Irish Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A trademark beer of the Santa Fe Brewing Company’s master brewer, Ty Levis, the State Pen Porter has every reason to be one of his favorites. It is flavorful, swimming with notes of nuts and chocolate; it is drinkable, so drinkable that it is almost as if pint after pint were drinking itself.","ibu":69,"name":"State Pen Porter","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":4.6999998093,"address":"6648 Reservoir Ln","category":"North American Lager","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Why settle for a watered down version of delicious barley and hops when the TailGate Beer Light will make you a convert to the world of light ales. Eat hardy, and enjoy a light beer with serious flavor, lower calories and the most serious attention to the powers that flavor beer. A nose of citrus and spice with a tongue of vanilla are just a few of the very unique flavors to grace your senses in this Light Ale. This is the light beer lovers of beer have been waiting for. This is not a watered down version of a good idea.","ibu":55,"name":"Tailgate Light","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":4.5,"address":"700 North Pennsylvania Blvd.","category":"German Lager","city":"Wilkes Barre","coordinates":[41.2557,-75.8583],"country":"United States","ibu":10,"name":"Lionshead","state":"Pennsylvania","website":"http://www.lionbrewery.com/"},{"abv":6.9000000954,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Aggressively Bitter, Full-Bodied Ale with a Wonderful Floral Hop Aroma","ibu":30,"name":"Avalanche IPA","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":4.0999999046,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":68,"name":"Carling","state":"Ontario"},{"abv":6.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Acme IPA is profoundly hoppy, finished with over a pound of fresh whole hops per barrel. The result of this generous hopping is a beer that is deliciously dry, and eminently drinkable in spite of its apparent strength.","ibu":23,"name":"Acme California IPA","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":4.1999998093,"address":"1213 Veshecco Drive","category":"German Lager","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Presque Isle and the bay it creates have played many significant roles in the history of Erie and our young nation. The US Government chose this location to build a fleet of ships during the war of 1812 because it formed the only protected harbor on Lake Erie. In 1813, during the battle of Lake Erie, Commodore Oliver Hazard Perry successfully defended Lake Erie against the British with ships that were built on Presque Isle Bay, making a significant mark on the pages of history. Presque Isle Pilsner, a tribute to history is a hand crafted pilsner that is \"A noble beer for Noble People.\";\"0","ibu":13,"name":"Presque Isle Pilsner","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":4.8000001907000005,"address":"545 Canal Street","category":"Belgian and French Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Midnight Wit is a Belgian-style white ale with a medium body and spicy, citrus overtones. The texture is silky, creamy, and refreshingly delightful. Brewed with European Pilsner malt, unmalted wheat, a blend of 5 different spices and then fermented with a classic Belgian yeast strain. Our Brewmaster learned the art of brewing tantalizing and award-winning white beers during his time in Belgium and this beer shows it.","ibu":12,"name":"Midnight Wit","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":7.408373138363911,"address":"618 S. Wheeling Ave","category":"North American Ale","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":111,"name":"Atlas IPA","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":6.5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","ibu":21,"name":"Abita Jockamo IPA","state":"Louisiana","website":"http://www.abita.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"Belgian and French Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":8,"name":"Leinenkugel's Sunset Wheat","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.0999999046,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","description":"Very drinkable light golden ale. Extremely refreshing hop finish","ibu":83,"name":"The Bitter End Pale Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":6.0999999046,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Sweeter and smoother than Kalamazoo Stout. A beer for special winter occasions. Great with chocolate desserts.","ibu":10,"name":"Special Double Cream Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This is our original brew and our most approachable beer. It's brewed with a premium barley and whole-leaf Glacial & Warrior hops. Our Shelter Pale Ale has a fine malt backbone and a slightly nutty flavor. A versatile, quaffable beer. The Shelter Pale Ale is available exclusively in the Mid-Atlantic region.","ibu":101,"name":"Shelter Pale Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"German Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Hang Ten is the Heavy Seas wheat beer you’ve been waiting for. A classic German-style weizen bock, slightly cloudy and bursting with flavor. Hang on and surf the Heavy Seas wave! Seasonally available in July while supplies last.","ibu":50,"name":"Hang Ten","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.503888687682564,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":36,"name":"Red Rooster Pale Ale","state":"Nebraska"},{"abv":1.9892579280160694,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":75,"name":"Red Lager","state":"Wisconsin"},{"abv":2.442112146039955,"address":"842 East 65th Street","category":"Irish Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":7,"name":"Porter","state":"Indiana"},{"abv":7,"address":"Inveralmond Way","category":"British Ale","city":"Perth","coordinates":[56.4174,-3.4779],"country":"United Kingdom","ibu":73,"name":"Blackfriar","state":"Scotland"},{"abv":5.0999999046,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":10,"name":"Dunkles","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":4.6999998093,"address":"Beethovenstrae 7","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":37,"name":"Bayrisch Hell","state":"Bayern"},{"abv":13.526470148249555,"address":"316 Main Street","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","description":"0","ibu":101,"name":"Stout \\\"To Be Named Later\\\";\"3","state":"Iowa"},{"abv":5.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":116,"name":"Untouchable Pale Ale","state":"California"},{"abv":5.4000000954,"address":"Avenida de Murcia, 1","category":"German Lager","city":"Granada","coordinates":[37.1875,-3.6018],"country":"Spain","ibu":80,"name":"Negra"},{"abv":11.745218437343073,"address":"1415 First Avenue","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":43,"name":"Auld Acquaintance Spiced Ale","state":"Washington"},{"abv":4.4000000954,"address":"Melmerby Green Road","city":"Melmerby","coordinates":[54.1744,-1.4844],"country":"United Kingdom","ibu":100,"name":"Toleration","state":"North Yorkshire"},{"abv":10,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":98,"name":"Quadrupel","website":"http://www.latrappe.nl/"},{"abv":9.362040688840509,"address":"1235 Oakmead Parkway","category":"German Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":111,"name":"Hefe Weizen","state":"California"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Named after the Roman god of war, Mars radiates red color and brilliant beauty yet enrages the taste buds with wrathful force. This Imperial IPA seizes its intense bitterness from an immense amount of hops. Belgian yeast retaliates, adding complexity and character.","ibu":42,"name":"Mars - Belgian Imperial Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":8,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This American double red ale is packed with enough hops to balance the full malty body.","ibu":15,"name":"Hellbrook","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.3000001907,"address":"525 Short St.","category":"German Ale","city":"Columbus","country":"United States","description":"This traditional Bavarian-style kellerbier originated from the small artisanal breweries of Franconia, where it is still a favorite in the local beer gardens. Ours is served unfiltered with a crisp, smooth finish that taste like sunshine.","ibu":75,"name":"Summer Teeth","state":"OH","website":"www.columbusbrewingco.com"},{"abv":8.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"A Double IPA brewed in memory of the brew cat. In honor of Mongo, Mike Rodriguez made his first Double IPA, as he loved the cat and wanted to honor him with this beer. This 8.5% abv beer was made with Columbus hops (Mongo’s Birthname), Cascade for the Mama cat, and Simocoe because that is Mike’s favorite hop.","ibu":91,"name":"Mongo Double IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":4.5,"category":"North American Ale","city":"Mexicali","coordinates":[31.7291,-116.578],"country":"Mexico","description":"A Craft Amber Ale, brewed using Honey from Northern Mexico.","ibu":4,"name":"Cucapa Honey Ale","state":"Baja","website":"http://www.cucapa.com/"},{"abv":4.8000001907000005,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"The unofficial name for this beer is “Super Glide”. Malty rich with a hint of spicy hops and roasted grains. This beer is one smooth ride with a clean finish! We brewed this one with American Pale, oats, flaked barley, black, chocolate, red malt, melandolin malt. American hops include Magnum, Centennial, Liberty and Crystal. Enjoy!","ibu":112,"name":"Rock Art American Red Ale","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":8.5,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A single malt and single hop version of an American Brewers classic style. This is definitely our hoppiest beer and quickly becoming a hop head cult classic!","ibu":41,"name":"Double Paw","state":"Michigan","website":"http://liverybrew.com/"},{"abv":8.1000003815,"address":"2519 Main St.","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"Kerplunk! Imperial Chocolate Stout is named for the delicious sound made as large amounts of Wilbur chocolate and west coast hops are added directly into the simmering brew kettle. This hefty black imperial-style stout boasts a rich caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your two front teeth into. The bold flavors found in Kerplunk! are produced using a generous blend of roasted barley, crystal malts and locally produced chocolate. The resulting brew exhibits a deliciously complex and unique profile of subtle mocha coffee and intense chocolate, balanced nicely by the underlying roasted hop bitterness. This is a balanced strong brew boasting an A.B.V. of 8.1% that can creep up on you.","ibu":111,"name":"Kerplunk Imperial Chocolate Stout","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":6,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Deep in the darkest depths of Rock Lake prowls a great saurian known today as Rocky. The legend of Rocky is old. The ancient inhabitants of Aztalan warned of the beast by building a giant serpent mound at the lake’s edge. The early residents of Lake Mills were forewarned of a guardian placed in the lake to protect its sacred stone tepees. And history tells of numerous encounters with Rocky, who became a source of great worry and fear. Although not seen for over a century, divers still experience a feeling of dread and being watched. Enjoy Rocky’s Revenge, our offering to this legendary protector of Tyranena.\n\n\nRocky’s Revenge is an American brown ale with a portion aged in bourbon barrels. Each bourbon barrel will contribute its own unique character to this rich, satisfying ale.","ibu":101,"name":"Rocky's Revenge","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5,"address":"2439 Amber Street","category":"Other Style","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Brewed to celebrate Ben's 300th birthday.\n\n\nWhether Ben Franklin ever said, \"Beer is living proof that God loves us and wants us to be happy\" is up for debate. Some say he said it, others say he didn't. No one knows for sure. \n\n\nHistorical facts or fictions aside, Yards Brewing Company has recreated Poor Richard's Tavern Spruce Aleâ„¢ to celebrate Franklin's affinity for fine ales. Poor Richard's Tavern Spruce Ale is based on Franklin's original recipe, which called for spruce essence and molasses, as barley and hops were not readily available at the time.\n\n\nEnjoy a taste of history courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.","ibu":71,"name":"Poor Richard's Tavern Spruce Ale","state":"Pennsylvania"},{"abv":4.9000000954,"address":"24 North Pleasant Street","category":"German Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light crisp American style wheat with a medium hop finish. Made using 25% German wheat malt. Brewed and on tap each summer.","ibu":10,"name":"Workingman's Wheat","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":7.385473259444336,"address":"375 Water Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"The term \"Pale Ale\" dates back to the 1800s when all beer was dark brown in colour. New malting techniques led to the development of pale malt, a barley malt kilned at low temperatures which contributed very little colour to the finished beer. Hence the birth of Pale Ale, an amber- to copper-coloured ale you could actually see through. Plenty of British Crystal malt in the grist lends this ale its rich colour, its caramel maltiness, and adds the occasional whiff of toffee to the nose. An addition of American and German hops to the kettle at the end of the boil is used to suffuse our Pale Ale with a gently spicy hop finish.","ibu":48,"name":"Signature Pale Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":8.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"The inspiration for making a Black IPA (or should we say \"India Black Ale/ IBA\"?) has been over a year in the making. As soon as we wrapped up the brewing of the Stone 10th Anniversary IPA, we started brainstorming ideas for the Stone 11th Anniversary Ale, and the Black IPA concept was born. This was a challenging brew to formulate and achieve what we considered the ideal flavor balance of intense up-front hops with balanced roasted malt flavors, a deep, rich flavor, and a hearty bitterness.","ibu":53,"name":"Stone 11th Anniversery Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":7,"address":"Antwerpsesteenweg 476","city":"Westmalle","coordinates":[51.2974,4.6881],"country":"Belgium","description":"Westmalle Dubbel is a dark, reddish-brown Trappist beer with a secondary fermentation in the bottle. The creamy head has the fragrance of special malt and leaves an attractive lace pattern in the glass. The flavour is rich and complex, herby and fruity with a fresh-bitter finish. It is a balanced quality beer with a soft feel in the mouth and a long, dry aftertaste. The Dubbel contains 7% alcohol.","ibu":63,"name":"Westmalle Trappist Dubbel","state":"Antwerpen","website":"http://www.trappistwestmalle.be"},{"abv":6.5,"address":"Tramstraat 8","category":"North American Ale","city":"Ursel","coordinates":[51.1287,3.4785],"country":"Belgium","ibu":104,"name":"Troubadour","state":"Oost-Vlaanderen"},{"abv":5,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":63,"name":"Sunset Amber Ale","state":"California"},{"abv":3.2389308974401754,"address":"1430 Vantage Court #104A","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","ibu":96,"name":"First Anniversary Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":5.623194962797453,"address":"25 Baile Road","category":"North American Lager","city":"Canning Vale","coordinates":[-32.0638,115.912],"country":"Australia","ibu":107,"name":"Lager","state":"Western Australia"},{"abv":14.339374095027711,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":73,"name":"X-Tra Pale Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":12.55470089883507,"address":"149 Steele Street","category":"German Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":61,"name":"Hoptoberfest","state":"Colorado"},{"abv":6.042872153915671,"address":"313 Dousman Street","category":"British Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":87,"name":"Hinterland Mild Cask Ale","state":"Wisconsin"},{"abv":2.122578295763126,"address":"205 North Broadway","category":"German Lager","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":68,"name":"Schwartzbier","state":"Illinois"},{"abv":6.322397057257639,"address":"300 West Fourth Street","category":"North American Ale","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":118,"name":"Espresso Stout (discontinued)","state":"Nebraska"},{"abv":4.636885982864905,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":84,"name":"Cream Stout","state":"Washington"},{"abv":0.3070644922483512,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":76,"name":"Pere Jacques","state":"Illinois"},{"abv":8.47245814410073,"address":"1025 Marine Drive","category":"North American Lager","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":71,"name":"Dominion Lager","state":"British Columbia"},{"abv":5.1999998093,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":43,"name":"Hecker Dunkel","state":"Baden-Wrttemberg"},{"abv":14,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","ibu":83,"name":"Samichlaus Bier 2005"},{"abv":4.4000000954,"address":"1001 North 102nd Street","category":"North American Lager","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":91,"name":"Northern Light Lager","state":"Nebraska"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":24,"name":"Bigfoot 2001","state":"California","website":"http://www.sierranevada.com/"},{"abv":4,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":92,"name":"JuJu Ginger","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":0.1891879211024916,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":35,"name":"#17 Cream Ale","state":"British Columbia"},{"abv":8.802054058657284,"address":"1 Kendall Square #100","category":"North American Lager","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","ibu":113,"name":"Wheaten Ale","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":0.4908067372513514,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":73,"name":"Lone Star","state":"Florida"},{"abv":14.538703139774082,"category":"German Lager","city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":109,"name":"Honey Bock","state":"Texas"},{"abv":9.318864779580782,"address":"1425 McCulloch Boulevard","category":"Other Style","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":67,"name":"Tripppleberry Wheat","state":"Arizona"},{"abv":9,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":17,"name":"Imperial Stout","state":"New Jersey"},{"abv":4.846593202283986,"address":"Douvieweg 2","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":20,"name":"Het Kapittel Pater","state":"West-Vlaanderen"},{"abv":6.1999998093,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":57,"name":"Imperial Stout","state":"Washington"},{"abv":5.1999998093,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":59,"name":"Ungespundet Lager Hefetrub","state":"Bayern"},{"abv":8,"address":"Rue du Village 32","category":"Belgian and French Ale","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":65,"name":"La Chouffe Golden Ale","state":"Luxembourg"},{"abv":5.4000000954,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard Pale Ale is a smooth, fruity, well-balanced beer with year-round appeal. A variety of caramel malts impart a rich flavor and amber color, while liberal use of whole hops adds zest and aroma. Pale Ale is the first beer we brewed, and continues to be a perennial favorite.","ibu":45,"name":"Boulevard Pale Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":7.090810684454182,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":77,"name":"Pilsner","state":"California"},{"abv":10,"address":"Woesten","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":82,"name":"Pannepot","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":4.5999999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"Old Milwaukee. A trusted, high quality beer that continually receives the highest awards and accolades from Beer experts across America. Old Milwaukee has a long history of celebrating \"Blue Collar\" sensibility. Simply said, good beer at a fair price. Old Milwaukee has always represented America's core values: Honesty, integrity, hard work and love for your family.\n\n\nSpeaking of family, the Old Milwaukee Family has a beer that is right for you. Old Milwaukee when you want a full bodied, full flavor American Lager. OM Light when you are in the mood for a lighter tasting beer with fewer calories. And don't forget OMNA, our flavorful non-alcoholic beer for those moments when you want the taste of America' best tasting beer without the alcohol content.","ibu":20,"name":"Old Milwaukee","state":"Texas","website":"http://www.pabst.com/"},{"abv":11,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The Mad Elf, a cheerful creation to warm your heart and enlighten your tongue. The combination of Cherries, Honey, and Chocolate Malts delivers gentle fruits and subtle spices. Fermented and aged with a unique yeast, this ruby red beer has significant warming strength that underlies the pleasant character of this intriguing yet delicious Ale. The Mad Elf, a jolly and delicious beer for the Holidays.","ibu":46,"name":"The Mad Elf","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.114100512394078,"city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":56,"name":"Light Ale","state":"Texas"},{"abv":10.22475717220033,"category":"North American Lager","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":106,"name":"Special Export","state":"Wisconsin"},{"abv":7.827042074867181,"address":"717 East Butterfield Road","category":"North American Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":1,"name":"Prime I.P.A.","state":"Illinois"},{"abv":3.631734056500031,"city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":43,"name":"Dunkel Weizen","state":"Colorado"},{"abv":13.52174199127625,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":109,"name":"Cologne Golden Ale","state":"Minnesota"},{"abv":8.401439260204025,"address":"2980 Cahill Main","category":"North American Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":25,"name":"Old Glory American Pale Ale","state":"Wisconsin"},{"abv":2.8293082914497534,"address":"Am Hof 12-14","city":"Kln","coordinates":[50.9401,6.957],"country":"Germany","ibu":44,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":9.062915349996974,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":26,"name":"Gouden Carolus Noël","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":7.5999999046,"address":"455 North Main Street","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Pranqster\n\nBelgian Style Golden Ale\n\n\nBelgian Ales represent the height of the brewers' art. Sophisticated brewing techniques, yeast blends and unique flavoring elements have elevated the beers of Belgium to the status enjoyed by wine in other countries.\n\n\nPranQster follows in this tradition using a mixed culture of antique yeast strains that produce a floral nose, a full fruity flavor and a clean finish.\n\n\nAvailable in 12oz 4 packs and 750 ml traditionally corked and wired bottles.\n\n\nVital Statistics\n\nStyle: Belgian Style\n\n Golden Ale\n\nColor: Soft Gold\n\nABV: 7.6%\n\nBitterness: 20 IBU's\n\n\n-http://www.northcoastbrewing.com/beer-Pranqster.htm","ibu":66,"name":"PranQster Belgian Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5.9000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":43,"name":"Bee Sting Honey Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.8000001907000005,"address":"215 East State Street","category":"British Ale","city":"Rockford","coordinates":[42.2689,-89.0907],"country":"United States","ibu":112,"name":"Scottish Ale","state":"Illinois"},{"abv":4.8000001907000005,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Our tribute to the town we consider to be \"Gonzo Ground Zero\"... Woody Creek White is a traditional Belgian-style Wit Beer, brewed with unique ingredients like orange peel and coriander, resulting in a refreshing and slightly citrus flavor, perfect for the \"Dog Days of Summer\".","ibu":29,"name":"Woody Creek White","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":1.3552853349629412,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":41,"name":"Snowshoe Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":13.082591579281264,"address":"2617 Water Street","category":"North American Ale","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":85,"name":"Pale Ale","state":"Wisconsin"},{"abv":9.33165947060137,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":56,"name":"Groovy Beer","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":8.599893782420846,"address":"Wisbech PE13 1LN","city":"Wisbech","coordinates":[52.6643,0.1595],"country":"United Kingdom","ibu":16,"name":"Norvig Ale","state":"Cambridge"},{"abv":6.5,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The sun barely breaks the horizon, the arctic winds bite, and snow blankets the land. It’s winter in Wisconsin! Throughout the area, you’ll find armies of fisherman, clad in blaze orange parkas and snowmobile suits, dragging their crudely built ice shanties onto the frozen lakes. While they vary in size, shape and color, each shanty contains an enthusiast braving the cold; spinning their tall tales; staring deeply into that hole in the ice; and, of course, enjoying a Legendary Wisconsin Beer. Brewed in the fall to help you survive our Wisconsin winters.\n\n\nShantytown Doppelbock is brewed in the style of a German Doppelbock. Brown in color with malty sweetness and a full body.","ibu":29,"name":"Shantytown Doppelbock","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5,"address":"89 Main Street West","category":"North American Lager","city":"Saint John","coordinates":[45.2567,-66.096],"country":"Canada","ibu":112,"name":"Canadian Lager Beer","state":"New Brunswick"},{"abv":8,"address":"Rue de Maredsous, 11","category":"Belgian and French Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Moortgat's Maredsous 8 is a fine strong dubbel that is sweet when young but develops a stout like flavour as it ages.","ibu":61,"name":"8","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":5,"address":"311 Tenth Street","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Zima is redefining refreshment. Zima flavored malt beverages are a great choice for adult consumers who seek variety and new and different products. Zima was reformulated in 2007 and is available in three citrus-based flavors.\n\n\nZima is lighter in carbonation and alcohol content, making it more drinkable and lower in calories than the old formula.","ibu":100,"name":"Zima Clear","state":"Colorado","website":"http://www.coors.com"},{"abv":0.9889661952146767,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":28,"name":"Weizenberry","state":"California"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":101,"name":"Bigfoot 1997","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.871036707134111,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":72,"name":"Bubbaganoush Pale Ale","state":"Arizona"},{"abv":5.956798453937634,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":93,"name":"Buffalo Stout","state":"South Dakota"},{"abv":6.1999998093,"address":"3300 Old Seward Highway","category":"North American Ale","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"A deep-red, full-bodied, malty ale heavily hopped with Centennial hops to produce a citrusy, spruce-like flavor and aroma. A final dose of Centennail hops in the conditioning tank lends an India Pale Ale-like aroma to the finished beer.","ibu":2,"name":"Bear Tooth Ale","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":9.497287854602916,"address":"101 Oak Street","category":"North American Lager","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A dry, crisp refreshing filtered lager. A good balance between sweet malt and light bitter hops. This beer is made with a Southern German lager yeast, Saaz, and Hershbrucker hops.","ibu":115,"name":"Standing Stone Lager","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":11,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Brooklyn Black Ops does not exist. However, if it did exist, it would be a robust stout concocted by the Brooklyn brewing team under cover of secrecy and hidden from everyone else at the brewery. Supposedly “Black ops” was aged for four months in bourbon barrels, bottled flat, and re-fermented with Champagne yeast, creating big chocolate and coffee flavors with a rich underpinning of vanilla-like oat notes. They say there are only 1,000 cases. We have no idea what they’re talking about.","ibu":88,"name":"Black Ops","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":4.8000001907000005,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":43,"name":"Estrella Levante Clasica","website":"http://www.estrelladamm.es/"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\n\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration IV is a tremendous Double Wheat beer. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. An even malt-to-wheat ratio provides a sturdy yet satisfying base for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. An American wheat beer yeast allows Obliteration IV to finish with unadulterated hop bitterness.","ibu":92,"name":"Obliteration IV","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Malt and hops are beautifully married in this full-bodied, copper-red Pale Ale. Red Seal is generously hopped for a long, spicy finish.","ibu":10,"name":"Red Seal Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":10,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone 10th Anniversary IPA harkens back to our earlier Anniversary Ales, with abundant hopping at many stages of the brewing process. Appropriately, the aroma is over-the-top, with pronounced piney and resiny hop flavors combined with tropical fruit esters and more subtle notes of toasted malts and alcohol. Our Stone 10th Anniversary Ale weighs in at 10% alcohol by volume (perfect for a 10th anniversary beer), and has a little more color and malt character than our other IPAs. In addition to using the new Summit hop variety in the brewhouse to provide the powerful bitterness, we went back through our records and found some of our favorite hops over the years, and used them to flavor this brew, including Chinook, Crystal, and large doses of Simcoe in the dry-hop to provide a huge, complex, piney, fruity and floral hop character. This is a colossal beer, big in every sense: hoppy, malty, rich, and strong! Right up our alley.","ibu":100,"name":"Stone 10th Anniversery IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":13.639395714560237,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Medium-bodied and light brown in color. This mild ale has a sweet maltiness and roasted character. Unlike English brown ales, this brown ale has a noticeably hoppy flavor from its Willamette hops. Don’t be afraid to have a Nutter!","ibu":98,"name":"Nutter Brown","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Is our double I.P.A.! Loaded with hops, this one will put hair on your chest.","ibu":101,"name":"Heady Topper","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":8.193768750232662,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Copper Ale, a medium bodied, amber ale inspired by the Altbiers of Northern Germany. Brewed with six different malts, three hop varieties and our special house yeast, Copper Ale is characterized by a well-balanced blend of malty notes and mild bitterness.","ibu":93,"name":"Copper Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":4.0999999046,"address":"8149 Honeygo Blvd","category":"North American Ale","city":"White Marsh","coordinates":[39.3722,-76.4638],"country":"United States","description":"2007 Maryland Governor's Cup Bronze Medal:\n\nA golden colored ale with crisp malt character and a slightly spicy hop aroma. We use a good amount of wheat and some German malt in this one to give it a very refreshing taste. Avenue Ale is a true session beer, so sit down and prepare for a long one.","ibu":83,"name":"Avenue Ale","state":"Maryland","website":"http://www.redbrickstation.com/"},{"abv":7.5999999046,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\n\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration III is yet another dynamic Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration III finishes with poignant bitterness.","ibu":26,"name":"Obliteration III","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":11.917942103830798,"address":"1150 Filbert Street","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":89,"name":"Kolsch","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":6.1999998093,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":33,"name":"Blonde Tradition","state":"Hainaut"},{"abv":11.216144498453872,"address":"10922 Elm Street","category":"Irish Ale","city":"Omaha","coordinates":[41.2328,-96.0825],"country":"United States","ibu":41,"name":"Porter","state":"Nebraska"},{"abv":4.8000001907000005,"address":"1201 First Avenue South","city":"Seattle","country":"United States","ibu":4,"name":"Curve Ball","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":47,"name":"Island Lager","state":"British Columbia"},{"abv":1.380068248222568,"address":"120 East Third Street","category":"North American Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":49,"name":"Amber Ale","state":"Nebraska"},{"abv":7.5,"address":"39176 Argonaut Way","category":"North American Ale","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":88,"name":"India Pale Ale","state":"California"},{"abv":0.8717397178833775,"address":"4301 Leary Way NW","category":"Irish Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":73,"name":"Troll Porter","state":"Washington"},{"abv":6.377326889480721,"address":"7474 Towne Center Parkway #101","category":"German Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":80,"name":"EOS Hefeweizen","state":"Nebraska"},{"abv":8.552514894191377,"category":"North American Ale","city":"Richmond","coordinates":[37.543,-77.4691],"country":"United States","ibu":0,"name":"Sweet Stout","state":"Virginia"},{"abv":9.492051743858788,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":17,"name":"Creamy Stout","state":"California"},{"abv":4.9899997711,"address":"1735 19th Street #100","category":"North American Lager","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":43,"name":"Pilsner","state":"Colorado"},{"abv":5.6751970290730185,"address":"188 North Hemlock","category":"North American Ale","city":"Cannon Beach","coordinates":[45.8981,-123.961],"country":"United States","ibu":5,"name":"Thundermuck Stout","state":"Oregon"},{"abv":1.2832397131427575,"city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":103,"name":"Pilsner","state":"Iowa"},{"abv":5.5999999046,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"This American-Style Pale Ale is aggressively hopped giving it a citrusy flavor and aroma. No antidote needed. This beer is dark-golden, medium-bodied and very “hoppy.” It is American-style because American-grown hops are used rather that European.","ibu":88,"name":"Venom","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":3.6893245241464956,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":38,"name":"Scottish Ale","state":"Texas"},{"abv":5.3000001907,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"We are proud to offer one of the few surviving examples of this traditional English style sweet stout. A bold dark ale, bursting with roasted barley dryness and mellowed by hints of chocolate and coffee.","ibu":5,"name":"Lancaster Milk Stout","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":6.779673975114924,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":1,"name":"Longshot Black Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.158130793270601,"address":"1920 Shattuck Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":94,"name":"Pale","state":"California"},{"abv":7.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":57,"name":"Riot Ale","state":"Washington"},{"abv":4.8000001907000005,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":28,"name":"Elysian Fields Pale Ale","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":11.703388220567657,"address":"5820 Marine Drive","category":"North American Lager","city":"Burnaby","coordinates":[49.2055,-122.978],"country":"Canada","ibu":110,"name":"Premium Gold","state":"British Columbia"},{"abv":5,"address":"Stefanusstrae 8","city":"Grfelfing","country":"Germany","ibu":72,"name":"1809","state":"Bayern"},{"abv":13.367433544261342,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":99,"name":"Sesquicentennial Light Ale","state":"Wisconsin"},{"abv":6.979206033868367,"address":"1101 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":54,"name":"Honey Lager Light","state":"Wisconsin"},{"abv":1.6011656417465292,"address":"Toronto ON","city":"Toronto","coordinates":[43.7379,-79.5714],"country":"Canada","ibu":100,"name":"Premium Lager","state":"Ontario"},{"abv":4.8000001907000005,"address":"Chiswick Lane South","category":"North American Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":37,"name":"India Pale Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":14.857244023563881,"address":"95 Cathedral Street, Suite 200","category":"North American Ale","city":"Annapolis","coordinates":[38.9773,-76.4948],"country":"United States","ibu":89,"name":"Oyster Stout","state":"Maryland","website":"http://www.ramsheadtavern.com/"},{"abv":2.7556756512314227,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":41,"name":"Blonde Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":7.2229950348262015,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":95,"name":"Tornado Ale","state":"Michigan"},{"abv":7.926419355646008,"address":"800 LaSalle Plaza","category":"German Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":0,"name":"Heifer-Weizen","state":"Minnesota"},{"abv":6.8000001907000005,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":54,"name":"East India Pale Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":12,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":52,"name":"Malheur 12","state":"Oost-Vlaanderen"},{"abv":4.8000001907000005,"address":"Dresdener Strae 2","category":"German Lager","city":"Radeberg","coordinates":[51.1148,13.915],"country":"Germany","ibu":54,"name":"Pilsener","state":"Sachsen"},{"abv":5,"address":"Bblinger Strae 104","category":"German Ale","city":"Stuttgart","country":"Germany","ibu":50,"name":"Malteser Weissbier","state":"Baden-Wrttemberg"},{"abv":5.6999998093,"address":"Wellgarth","city":"Ripon","country":"United Kingdom","ibu":90,"name":"Riggwelter Yorkshire Ale","state":"North Yorkshire"},{"abv":8,"address":"Palackho 250","category":"Irish Ale","city":"Pardubice","coordinates":[50.0355,15.762],"country":"Czech Republic","ibu":117,"name":"Porter Boom"},{"abv":9.653938098415955,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":15,"name":"Friars IPA","state":"California"},{"abv":5.3000001907,"address":"231 San Saba Court","category":"North American Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Deep golden and malty, with a spicy hop flavor and well balanced hop bitterness, Rio Blanco is a uniquely Texan interpretation of an English-style pale ale. Czech Saaz hops provide a crisp finish and delicate aroma.","ibu":10,"name":"Rio Blanco Pale Ale","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":4.3000001907,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Nine Man\" is a golden ale, brewed from English pale and crystal malts, and with torrified wheat. It is bittered with Cascade and Cluster hops and finished with Cascade hops. \"Nine Man Ale\" was first brewed as a summer seasonal beer in 1996. It was kegged the first season but not bottled until the opening of the baseball season in April 1997.","ibu":71,"name":"Nine Men Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":3.131292828394314,"address":"3201 Walnut Street Ste A","city":"Boulder","coordinates":[40.0201,-105.251],"country":"United States","description":"A favorite of many coffee-loving beer drinkers, Big Shot Espresso Stout boasts about a shot of espresso in every pint. Twisted Pine teamed up with popular Amante Coffee in Boulder to produce what Amante co-owner and founder Greg Buchheister calls \"the most perfectly balanced buzz.\" The earthy, dark chocolate flavors of the Amante Espresso blend to the flawless balance of the beer.","ibu":59,"name":"Big Shot Espresso Stout","state":"Colorado","website":"http://www.twistedpinebrewing.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Apricot Ale is a fruit beer produced using 100% Apricot fruit extract. The beer has a hint of Apricot in the nose and a sweet clean and refreshing finish.","ibu":98,"name":"Valley Brewing Apricot Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":7.568493024401743,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","ibu":31,"name":"Amber Waves","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":8.63520276149446,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"A well balanced, medium-to full bodied beer, red in color and very flavorful. The red color and slight caramel-roasted flavor comes from generous amounts of caramel malts and a touch of chocolate malts. Well hopped to balance the malty sweetness, and dry-hopped with cascade for a full hop flavor and aroma.","ibu":56,"name":"Mermaids Red Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":115,"name":"Achel Blond 5°","website":"http://www.achelsekluis.org/"},{"abv":5.1999998093,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Our Oktoberfest is a light amber colored beer. It is malty in both flavor and aroma making it a delicate beer which is very drinkable. The hop bitterness is kept low to accentuate the maltiness. Notice the crisp clean character and enjoy. We brewed three batches of this beer so that we can bottle some of it in order to enhance our bottle beer selection.","ibu":98,"name":"Church Brew Oktoberfest","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":9.954792652142752,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Hopped four separate times with pure Centennial hops for one of the hoppiest brews around. With a nice dry finish, Rescue IPA is our Mug Club's favorite.","ibu":115,"name":"Rescue IPA","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":8.689491297845791,"address":"Landsberger Strae 35","category":"Other Style","city":"München","country":"Germany","ibu":61,"name":"Weißbier","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5.5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Actually an Ice Lager. Introduced in 1984.","ibu":54,"name":"Bud Ice","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.5,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A medium-bodied and well hopped India Pale Ale with a dry, fruity aftertaste.","ibu":110,"name":"Commodore Perry IPA","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":8.5,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"The long-awaited arrival of our Belgian-style Tripel is upon us. Named after the mythical Greek three-headed dog that guards the gates of hell, Kerberos is a traditional Belgian-style Tripel with a dark golden color has a sweet flavor with a dry and spicy finish. This nectar of the Gods is deceptively strong at 8.5% and is bottle conditioned for an authentic flavor.","ibu":54,"name":"Kerberos","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.1999998093,"address":"1340 East Eighth Street #103","category":"German Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This beer was brewed in honor of our brewer Melissa's wedding to fellow brewer Derek Osbourne of B.J.'s in Chandler. The Alt Ball and Chain is a German Altbier. These beers are generally full-bodied with sweet malt flavor. The crispness, dry finish, and moderate hop aroma make an alt a great beer for summertime enjoyment. Our Alt has been lagering in our cellar for two weeks and contains 5.2% abv.","ibu":87,"name":"Alt Ball and Chain","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":14.067624142100156,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":110,"name":"Rauch Ale","state":"Wisconsin"},{"abv":11.697206673441196,"address":"1101 North Water Street","category":"Irish Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":21,"name":"Porter","state":"Wisconsin"},{"abv":4.11273766223737,"address":"835 48th Avenue","category":"North American Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":12,"name":"Schild Brau Amber","state":"Iowa"},{"abv":5.807470694635698,"address":"4700 Cherry Creek Drive South","category":"North American Lager","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":18,"name":"Cream","state":"Colorado"},{"abv":4.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Designed as our session beer, Rugged Trail Nut Brown Ale is bronze in color with a velvety smooth taste and subtle chocolate note. Rugged Trail’s lower alcohol content and subtle hoppiness make it the perfect beer to enjoy during the day and into the night.","ibu":38,"name":"Rugged Trail Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.87449768496318,"address":"200 Aalststraat","category":"Belgian and French Ale","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":9,"name":"Gluhkriek","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":9.51554550317828,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":64,"name":"Köln Kolsch","state":"Wisconsin"},{"abv":3.9000000954000003,"address":"Spott Road","category":"British Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","description":"Malty and hoppy, we at Belhaven love the classic Scottish Ale and we've been brewing it longer than any of the other beers we produce. Delivering a sweet, smooth and creamy finish, Scottish Ale has a stunning ruby colour in the glass. Magic.","ibu":44,"name":"Scottish Ale","state":"Scotland"},{"abv":11.503308898539823,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":0,"name":"Beau Rivage Bock","state":"Mississippi"},{"abv":10.41142362508031,"address":"220 North Randall Road","category":"German Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":50,"name":"Fomharfest","state":"Illinois"},{"abv":5.9000000954,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur ESB combines the best of English tradition with West Coast style. A blend of malts featuring British-grown Maris Otter is balanced with the earthy spiciness of hand-selected English and US hops. The ale is left unfiltered, which enhances mouthfeel and hop aroma creating a slightly reddish-copper hue","ibu":56,"name":"ESB - Early Spring Beer","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.5,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Our silver medal winning Belgian style Holiday beer brewed with dark Belgian candied sugar and special spices. This brew has a spicy aroma and flavor with a sweet malt taste. At 10.5% alcohol it is sure to warm you up during the Holiday season.","ibu":20,"name":"Rude Elf's Reserve","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":14.70142199429329,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"A tribute to the highly drinkable \"every day\" beers from French-speaking Belgium. Contains Belgian two-row pale malt and 7% wheat. This beer is lightly filtered with an earthy, spicy hop character from imported Styrian Goldings hops and a beautiful rich creamy head from the wheat.","ibu":91,"name":"Farmhouse Summer Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5.005713173229104,"address":"5500 Greenville Avenue #1300","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":13,"name":"Honey Blonde Light Pale Ale","state":"Texas"},{"abv":2.7179995232802137,"address":"107 Port Road","category":"North American Ale","city":"Adelaide","coordinates":[-34.9111,138.575],"country":"Australia","ibu":118,"name":"Old Australia Stout","state":"South Australia"},{"abv":0.11696991436180304,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":59,"name":"Paniolo Ale","state":"Hawaii"},{"abv":13.396104914040631,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":29,"name":"Pacific Ridge Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":0.34597388045208066,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":59,"name":"Brown Ale","state":"Texas"},{"abv":1.7124672839750987,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":3,"name":"Our Special Ale 1992","state":"California"},{"abv":5,"address":"5555 76th Avenue SE","category":"North American Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":45,"name":"Buzzard Breath (discontinued)","state":"Alberta"},{"abv":7,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"A Hop Head's dream beer, enough said.","ibu":10,"name":"Lost Sailor","state":"Michigan"},{"abv":11.100000381,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Consider it an extremely hoppy barleywine, or a really big IPA. Either way, ten hop additions contribute to its lush and intriguing body. Aggressive dry-hopping brings a strong citrus character to the aroma. The flavor and smell of orange-blossoms pervade throughout the experience.","ibu":3,"name":"Existential","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":4.8000001907000005,"address":"3525 Liberty Avenue","category":"British Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Stouts have typically been a staple beverage in the UK. There are many variations of stouts available. You can find dry stouts, milk stouts, Imperial stouts, American stouts, and even stouts made with oats.\n\n\nAt the Church Brew Works we have crafted delicious Toasted Oatmeal Stout. The oats were blended with the best barley malt we have – and we didn’t stop there. To give this beer a wonderful roasted flavor, we added unmalted, very darkly roasted barley. The roasted barley is mixed with a generous portion of chocolate colored malt giving the Blast Furnace Stout a beautiful ruby hue.\n\n\nWe used our finest hops unsparingly to create a delicately balanced bitterness with a rich roastiness and fresh hop aroma. The Fuggles and East Kent Goldings hops were added with heavy hands at two different times. This unbridled addition grants a full hop flavor to our heavenly drink.\n\n\nA typical oatmeal stout is a bit lower in alcohol than most other stouts as does the Blast Furnace Stout. Ours, though not typical, does have a welcome medium body. As you drink this beer, notice the rich, creamy brown head. Drink it slowly and savor the flavors. We don’t think you will be disappointed. Beer is not just for breakfast anymore.","ibu":18,"name":"Blast Furnace Oatmeal Stout","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":4.8000001907000005,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"This traditional American style brown ale has medium body with a sweet Carastan maltiness. A rich deep chocolate color, our Antler Brown Ale is mildly hopped with Mt. Hood hops. Check out the Antler tap handle... locally grown! This has been our most popular beer over the years... a very easy drinking brew.","ibu":91,"name":"Antler Brown Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":10.564966361684975,"address":"130 W Gurley St","category":"Irish Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":12,"name":"Manzanita Red","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.1999998093,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"The Brown Ale style originated in the pubs of England, where beer drinkers desired a beer that was both flavorful and complex, but at the same time mild enough to be a session beer. The Santa Fe Brewing Company's interpretation of this style uses a combination of high mash temperature, hard water, and low-alpha acid hops to produce a product that is both true to the style and distinctly Santa Fe. Brewing jargon aside, Santa Fe Nut Brown Ale is an easy-drinking beer, mild, smooth, and always a favorite. Try a keg at your next party!","ibu":57,"name":"Santa Fe Nut Brown","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":10.323427163155483,"address":"430 Old Jackson Highway","category":"North American Ale","city":"Victor","coordinates":[43.5984,-111.108],"country":"United States","description":"ur Old Faithful Ale is a Pale Golden Ale with a crisp body and light malt sweetness. We cold condition this ale to give it a pleasantly smooth character and dry palate. The Willamette and imported UK Goldings hops give this beer a light floral hop aroma, making it exceptionally easy to drink.","ibu":16,"name":"Old Faithful Ale","state":"Idaho","website":"http://www.grandtetonbrewing.com/"},{"abv":9,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"St. Nicholas, aka Santa Claus, is a magical figure, the bringer of gifts and an icon of holiday spirit. Forgotten by most is his evil side kick and enforcer of ‘the list’. European tradition says while St. Nick is busy delivering presents to good little boys and girls, Krampus hands out punishments to the bad. A fanged, goat-horned bully, the Christmas Devil uses sticks and chains to beat the naughty children. Dark malts and aromatic hops create the diabolical spirit of this brew. It is finished with lager yeast and aged cold for no less than 30 days. This Imperial Helles Lager will warm even the darkest hearts. \n\n\nThis season, replace the cookies with a bottle of Krampus. If he happens to pay a visit, toast to him with this devilish brew. Merry Kramp-mas to all, and to all a good pint!\n\n9.0% abv. • 20º plato • Imperial Helles Lager • 22 oz / 1/6 keg","ibu":103,"name":"Krampus Imperial Helles Lager","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.4499998093,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","description":"Black as the darkest night, rich as the most decadent dessert, Terminator is for the true stout lover. This is a full bodied and flavor packed ale which draws it's robust complexity from kiln-baked specialty grains. Look for a wide array of toasted, chocolate, nutty and coffee-like flavors in every pint! The devoted swear by it, and it remains one of our top selling ales year after year.","ibu":35,"name":"Terminator Stout","state":"Washington"},{"abv":14.391011624243465,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":88,"name":"India Pale Ale","state":"Washington"},{"abv":7.754156677412256,"address":"1111 Mainland Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2755,-123.121],"country":"Canada","ibu":93,"name":"Downtown Brown","state":"British Columbia"},{"abv":3.453700024935281,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":85,"name":"Pale Ale","state":"California"},{"abv":4.452922832235277,"address":"Rue de la Frontire, 435","category":"Other Style","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":60,"name":"Bière Darbyste","state":"Hainaut"},{"abv":8.6999998093,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":19,"name":"Canaster Winter Scotch","state":"Oost-Vlaanderen"},{"abv":5.3000001907,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":116,"name":"Saison","state":"Hainaut"},{"abv":4,"address":"110 Wisconsin Dells Parkway South","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":88,"name":"Light Ale","state":"Wisconsin"},{"abv":0.6196886723869721,"address":"420 Acorn Lane","category":"Irish Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":82,"name":"Workhorse Porter","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.5,"address":"925 South Third Street","category":"North American Lager","city":"La Crosse","country":"United States","ibu":59,"name":"Pale Ale","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":6.971129968492054,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":56,"name":"Imperial IPA","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":11,"name":"Paradise Pale Ale","state":"California"},{"abv":5.1999998093,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":51,"name":"Patriot Pale Ale","state":"California"},{"abv":6.5,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":109,"name":"Hop Maniac IPA","state":"California"},{"abv":4.5,"address":"1430 Washington Avenue South","category":"North American Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This American-style golden ale is our lightest, in both color and flavor. Bright Spot is brewed with locally malted 2-row barley and the finest American, Czech and German hops lending a well-balanced, refreshing taste. A compliment to nearly any of our menu choices.","ibu":116,"name":"Bright Spot Golden Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":5.1999998093,"address":"16 Tobey Road","category":"North American Ale","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Thomas Hooker American Pale Ale is an extremely vivid, medium-bodied brew. Hooker Pale Ale stresses the crisp bitterness, lingering resin flavor, and aroma of American hops which are characteristic of the most distinctive West Coast Ales. The caramel sweetness of the malt balances the chock-full-of-hops flavor to yield a complex but quite refreshing brew.","ibu":54,"name":"American Pale Ale","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":9,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Double Simcoe IPA, 9.0% abv, is our incredible reward for Hopheads seeking over the top flavor in a Double IPA, without the harshness. Brewed with Simcoe hops, developed and trademarked by Select Botanicals Group, LLC, in the year 2000. This hybrid hops was created to allow maximum aromatic oils, along with low cohumulone(harshness) levels, so that brewers can really load up a lot of 'em in a beer and not have any harshness. The piney, citrusy notes are all here, and in a very clean (non-harsh) way, as well as having an aroma with impact. Introduced by Weyerbacher in 2005 originally as a seasonal, this brew has garnered numbers so high on Beer Advocate, and been in such high demand by consumers, we decided to add it to our year-round line-up in March 2007. Check it out, and you'll soon see why everyone's talking about it.","ibu":85,"name":"Double Simcoe IPA","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Miller High Life, the \"champagne of beers,\" dates back to 1903. Miller High Life is a classic American-style lager recognized for its consistently crisp, smooth taste and classic clear-glass bottle. Miller High Life embraces its rich heritage and is positioned as common sense in a bottle. Its drinkers know Miller High Life is an authentic, unpretentious beer. As the best beer value in America, we encourage our target consumers to \"Celebrate the High Life.\";\"0","ibu":8,"name":"Miller High Life","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":9.311852568794283,"category":"British Ale","city":"Dubuque","coordinates":[42.5006,-90.66460000000001],"country":"United States","ibu":109,"name":"Champions Clubhouse Classic","state":"Iowa"},{"abv":1.4340788132462612,"category":"North American Ale","city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":63,"name":"Crystal Pier Pale Ale","state":"California"},{"abv":2.643104259960504,"address":"14800 San Pedro Avenue","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":28,"name":"Bohemian Pilsner","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":9.821033778411552,"category":"North American Lager","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":75,"name":"Krystal","state":"California"},{"abv":4.521767829758849,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":22,"name":"Balboa Cerveza Pilsner"},{"abv":13.899804969523336,"address":"2323 N Milwaukee Ave","category":"Belgian and French Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"Light, refreshing belgian-style wheat beer spiced with coriander and orange peel","ibu":116,"name":"Bottom Up Wit","state":"Illinois","website":"http://revbrew.com/"},{"abv":5.4000000954,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":21,"name":"Estrella Levante Especial","website":"http://www.estrelladamm.es/"},{"abv":6.6999998093,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"For the 28th session of the Harpoon 100 Barrel Series, we’re celebrating this year’s hop harvest with Glacier Harvest Wet Hop beer, a pale ale made with fresh Glacier hops.\n\n \n\nWet hop beers are brewed using fresh, “wet” hops instead of traditional dried hops—hops contain about 60% moisture when they are first picked.\n\n\nTypically, when hops are picked they are quickly dried and refrigerated to increase shelf life and make them more consistent for brewing. Freshly picked wet hops, however, need to be used within hours of harvest or they will begin to degrade rapidly. Wet hops retain more of their natural aroma and volatile flavors that dissipate when dried. This gives wet hop beers a fresher hop flavor and aroma than that of beers hopped with processed hops.\n\nThis yields an immersed, intense hop flavor in the beer.\n\n\nHarpoon brewer Ray Dobens, creator of the beer, added a heroic dose of fresh hops the day of the harvest.The hop flavor and aroma from this copper-colored ale comes from a generous late addition of freshly harvested “wet” hops.","ibu":110,"name":"Glacier Harvest '09 Wet Hop (100 Barrel Series #28)","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.1999998093,"address":"8111 Dimond Hook Drive","category":"German Lager","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Reid is our onsite go-to beer guy who handles the bulk of our to-go beer sales. Reid is a full-time UAA student who manages to sell beer at MSBC, run a side welding business, keep the golf discs flying all year-round & create music with his band, Bushwood. He wrote and performed his song \"No 9 to 5\", which resonates his idea of a fairway to heaven.\n\n\nFAHRWASSER means \"fair water\" or \"fairway\". This inspired pilsner breaks par with every sip.\n\n\nAvailability:\n\nAK - draft and 22-oz bottles (limited release begins 05/15/2009)","ibu":39,"name":"Fahrwasser Fairway Pilsner","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5999999046,"address":"40 Mews Road","category":"German Lager","city":"Fremantle","coordinates":[-32.0597,115.745],"country":"Australia","description":"Czech Saaz hops are added early in the boil with a late hopping using a hybrid variety we keep to ourselves, giving light flavour and a soft bitterness. Lightly kilned pilsner malt gives the beer both it’s light, slightly golden colour, and leaves a crisp clean taste on the palate.","ibu":37,"name":"Little Creatures Pilsner","state":"WA","website":"http://www.littlecreatures.com.au/"},{"abv":9,"address":"2051A Stoneman Circle","category":"Belgian and French Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Don't let Tripel's light color and delicate aroma fool you, this is one serious beer brewed with maximum effort. First, we introduce the freshest barley to crystal filtered water. Second, we add the best hops shipped directly from Europe. Third, our special yeast is the catalyst for fermentations, gobbling sugar and creating alcohol as it works. \n\n\nSome say that the Belgian monks who first brewed this style called it triple to denote it's high alcohol content. Still others believe triple's origins lay in its triple fermentations; twice in the brewery and once in the bottle. Whatever the answer, ours is the Tripel threat.","ibu":36,"name":"Southern Tier Tripel","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.1999998093,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"From the first sip this American-style India Pale Ale gets in your face with an unruly hop bitterness, big floral flavors and aroma, and just enough malt character to keep you from giving in and acting up.","ibu":71,"name":"Hellrazer","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":8.613880428015989,"ibu":14,"name":"07/22/10 08:00 PM"},{"abv":3.5350262130417374,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A Belgian Double Abbey.","ibu":44,"name":"Abbey Normal Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":4.3000001907,"address":"210 Swanson Avenue","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"Watch Your Pint Cascade From Brown to Black, As This Chocolaty Settles, Creamy, Dark, Not Too Bitter Finish","ibu":6,"name":"Skyline Stout","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":4.6999998093,"address":"4120 Main Street","category":"German Lager","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Our lightest beer – pale blonde in color with a crisp, softly sweet malt flavor, smooth finish and very subtle bitterness. Went to the final judging table at the GABF alongwith the Mega Breweries last year!","ibu":4,"name":"Bohemian Blonde","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":8.5,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","description":"“If One is Good, Then Two is Better!” Our Moylander Double IPA is fat and resiny, with aggresive and excessive hops swinging on on an enormous malt backbone like naughty monkeys on a vine. Double malt, double hops - do the math, it’s academic. This brew has twice the things you’re looking for, and it’s big enough to share with the one you love. And isn’t that what it's all about?","ibu":97,"name":"Moylander Double IPA","state":"California","website":"http://www.moylans.com/"},{"abv":10.322729659726601,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":85,"name":"Red Menace Big Amber","state":"Washington"},{"abv":9.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":71,"name":"Double Daddy","state":"California"},{"abv":5.5999999046,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":13,"name":"Gale Force IPA","state":"Washington"},{"abv":5,"address":"104 North Lewis Street","category":"German Lager","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":100,"name":"Bock","state":"Washington"},{"abv":9.5,"address":"Antwerpsesteenweg 476","category":"Belgian and French Ale","city":"Westmalle","coordinates":[51.2974,4.6881],"country":"Belgium","description":"Was first brewed in 1934 and the recipe has not changed since 1956. It is made with pale candy sugar and has a very pale color produced from a mash of light pilsener malts. Styrian Goldings hops are used along with some German varieties and the classic Saaz pilsener hop. After a long secondary fermentation, the Tripel Westmalle is bottled with a dose of sugar and yeast. This beer holds up well in the bottle over time and seems to soften with age.","ibu":83,"name":"Westmalle Trappist Tripel","state":"Antwerpen","website":"http://www.trappistwestmalle.be"},{"abv":4.470191044936142,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":117,"name":"Bison Brown Ale","state":"Kansas"},{"abv":4.8000001907000005,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":92,"name":"Mavericks Amber Ale","state":"California"},{"abv":7.653790201897422,"address":"86 Newbury Street","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":113,"name":"Ringwood Brewery Old Thumper Extra Special Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.834232800542147,"city":"Carbondale","coordinates":[37.7273,-89.2168],"country":"United States","ibu":71,"name":"Saison","state":"Illinois"},{"abv":14.012627326621116,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":75,"name":"Oktoberfest","state":"Wisconsin"},{"abv":1.8362502735060204,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":47,"name":"Kriek","state":"Vlaams Brabant"},{"abv":12.6960136459587,"address":"1516 Sansom Street","category":"Irish Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":85,"name":"Robust Porter","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":4.122778498558234,"category":"North American Ale","city":"Keystone","coordinates":[39.6042,-105.948],"country":"United States","ibu":32,"name":"Empire Builder Stout","state":"Colorado"},{"abv":1.8419604755288244,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":80,"name":"March Märzen","state":"Wisconsin"},{"abv":0.42658697065241946,"address":"195 Taylor Way","category":"Irish Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":75,"name":"Steelhead Scotch Porter","state":"California"},{"abv":4.6999998093,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":103,"name":"Piva Bohemia","state":"Wisconsin"},{"abv":13.590394347246344,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":41,"name":"Northern Glory Premium Ale","state":"Cheshire"},{"abv":6.706757542197442,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":29,"name":"India Pale Ale","state":"Illinois"},{"abv":0.3348913440112933,"address":"3020 St. Helena Highway North","category":"North American Ale","city":"Saint Helena","coordinates":[38.5243,-122.497],"country":"United States","ibu":78,"name":"Impale Ale","state":"California"},{"abv":8.1999998093,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"The fourth stop on our multi-year trip to explore New Jersey takes us to one of the most maligned places in the state- the Hackensack Meadowlands. It’s the place usually identified with landfills, pipelines, mob burials (alleged) and sports teams that say they’re from New York.\n\n\nAlthough no longer home to forests of giant cedars and salt hay marshes teeming with aquatic life, the Meadowlands is still an amazingly diverse ecosystem providing vital animal and plant habitat. In a nod to a once common food plant here, we’ve brewed this beer with wild rice. We also used brown and white rice, as well as two malts.\n\n\nRice helps the beer ferment dry to better showcase the five different hops we’ve added. Lots and lots of them. We then dry-hopped this Double IPA with even more-generous additions of Chinook and Citra hops to create a nose that hints at tangerine, mango, papaya and pine.","ibu":118,"name":"Exit 16 - Wild Rice Double IPA","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"India Pale Ale is a wonderful example of marriage. Bitter Hops and Boasting Barley come together to make one of the most sought after ales of the Craft Beer masses. Bottle Conditioned and Refermented.","ibu":3,"name":"4 Seasons IPA","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":8,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The simplicity of Hoppe tests the skill and ability of the brewer to create something truly majestic. We craft this much like a sculptor who uses only a hammer and chisel to shape stone into a masterpiece. Hoppe is spawned of these few essentials: barley, wheat, hops, yeast and water. This limited palette is an exercise in minimalism, with refined elements which are deliberately selected. This simple combination creates a golden shimmering brew infused with delicate aromas. The artful nature of this beer is exposed with the first taste. As the malt and hops create a composition of flavors, an elegant finish leaves an impression that your tastes will not soon forget.","ibu":4,"name":"Hoppe Imperial Extra Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.1999998093,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Our lightest and palest signature brew, the Griffin is our house session beer. Notice the spicy character imparted by the German hops we use in the Griffin.","ibu":3,"name":"Griffin Golden Ale","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":2.36356026467877,"address":"Kreuzstrae 4-10","category":"German Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":73,"name":"Organic Hefewizen","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":7,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This smoked bock is made with the finest smoked malt from Bamberg, Germany. The malts are kilned over aged beechwood chips which gives this deep copper ale a mellow smoky flavor.","ibu":29,"name":"Rauchbock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.1999998093,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This beauty is a complete work of art! Bryan and I picked 22 lbs of fresh Cascade hops from 3 gigantic hop vines Bryan has at his house. Hops produce an overabundance of hop cones and we were there for the picking. Even after 22 lbs, we hardly put a dent in the yield! So...here we are 3 weeks later, the beer is on tap and it is the freshest...hoppiest...flavorful beer you can imagine! Needless to say, we are proud of this beauty from the ground, up! We wanted a full-flavored IPA, so Bryan suggested we use our Requiem IPA recipe, and calculate for fresh, whole hop cones. Worked beautifully!! We ended up with an IPA with so much up-front flavor you would think you are enjoying a high octane Imperial! Instead, this is a middle-of-the-road IPA, at 5.2% abv!! This just goes to show how a hugely flavorful IPA can be loaded-up with fresh ingredients and come out the other end, a tasty LOW octane, treat! Bryan and I hope you get to stop in soon to try this one out! We decorated Bube's with some of the actual hop vines we pulled from. For the true hophead, you will be in heaven. And for the all-around beer enthusiasts, we hope you can appreciate the creativity in this beer. I know I'm proud to say I had a hand in this one!!","ibu":94,"name":"Wet Hop Requiem IPA","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.5,"address":"St Peter's Hall","category":"British Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","description":"Water is extracted from our own 300’ deep borehole and combined with Soil Association accredited light malted barley from Norfolk. Organic hops provide the distinctive palate. The yeast used is St. Peter’s own single strand variety. The result is a delicate, clean, crisp, lightly carbonated, traditional English Ale with a full ‘citrus hop’ aftertaste. This lovely beer won the Soil Association’s top prize in 2002 and a silver medal in 2006.","ibu":80,"name":"St Peter's Organic Ale","state":"Suffolk"},{"abv":6.030792475573,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":38,"name":"Rat City IPA","state":"Washington"},{"abv":4.544852860718503,"country":"Netherlands","ibu":102,"name":"Dark Lager","website":"http://www.heineken.com/"},{"abv":10.260651417846491,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":94,"name":"India Pale Ale","state":"Suffolk"},{"abv":3.6376365276151255,"address":"65 North San Pedro","category":"North American Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":42,"name":"Amber Light","state":"California"},{"abv":0.10274138828543555,"category":"North American Ale","city":"Urbana","coordinates":[40.1106,-88.2073],"country":"United States","ibu":12,"name":"Hop-Stuffed Pale Ale","state":"Illinois"},{"abv":5.485087234457163,"category":"German Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":30,"name":"Post Washington Octoberfest","state":"Wisconsin"},{"abv":4.3990135861214235,"category":"German Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":76,"name":"Weissenheimer Wheat","state":"Wisconsin"},{"abv":4.894511159379251,"address":"25 North Madison St","category":"German Lager","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":14,"name":"Calumet Bock","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":1.9422648970829248,"address":"4700 Cherry Creek Drive South","category":"German Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":24,"name":"Hefeweizen","state":"Colorado"},{"abv":5.6280096680810825,"address":"102 North Center Street #111","category":"North American Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":45,"name":"Newmarket Pale Ale","state":"Illinois"},{"abv":7.334452212431913,"address":"2002 Broadway","category":"North American Lager","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":110,"name":"Lager","state":"Indiana"},{"abv":11.520599165873524,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":88,"name":"Adler Bräu Bucky Brau Barleywine","state":"Wisconsin"},{"abv":8.476133097198625,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":47,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":7.998928843597374,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"The discovery of the true I.P.A. (India Pale Ale) made right here in Slippery Rock. The British added hops to oak barrels to help preserve the beer for its long voyage to British-controlled India. Brewed in this same English tradition, we dry-hopped our ale, giving the beer a very aromatic quality as it travels to your mug.","ibu":16,"name":"Paleo IPA","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5.4000000954,"address":"1398 Haight Street","category":"British Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","description":"Diacetyl dominated cask bitter.","ibu":78,"name":"Blue Bell Bitter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":9.8000001907,"address":"656 County Highway 33","category":"Belgian and French Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":44,"name":"Three Philosophers","state":"New York"},{"abv":5,"address":"137 High Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8046,-1.628099999999999],"country":"United Kingdom","ibu":31,"name":"Bass Pale Ale","state":"Staffordshire"},{"abv":14.897013458616932,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","description":"\"This richly textured, roasty dry stout has a boost of bitter and charismatic flavor from the addition of cocoa powder in the mash. We blend five unique organic malts to create Bison's most award winning beer.\" from http://bisonbrew.com/chocolate-stout.asp\n\n\nAnd I concur. This is a relatively mild stout, with a malty rich flavor. Adding this to my list of preferred beers.","ibu":58,"name":"Bison Chocolate Stout","state":"California"},{"abv":4.5,"address":"2501 Southwest Boulevard","category":"Other Style","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard Unfiltered Wheat Beer is a lively, refreshing ale with a naturally citrusy flavor and distinctive cloudy appearance. This easy-drinking American-style wheat beer has become our most popular offering, and the best-selling craft beer in the Midwest.","ibu":15,"name":"Boulevard Unfiltered Wheat","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"This uniquely American beer offers a crisp, medium body with a light amber color. Generous additions of Cascade hops provide a refreshing bitterness and vibrant citrus aroma.","ibu":44,"name":"Stoudt's American Pale Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4.3299999237,"address":"303 Sorg Street","city":"St. Mary's","coordinates":[41.4277,-78.5539],"country":"United States","ibu":22,"name":"Straub","state":"Pennsylvania","website":"http://www.straubbeer.com/index.htm"},{"abv":4,"address":"800 Vinial St.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Nationally acclaimed as the best Munich-style beer made in America. Penn Gold is a light-colored, medium bodied lager beer with a delicate hop aroma.","ibu":20,"name":"Penn Gold","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.6999998093,"address":"5417 Trumpeter Way","category":"North American Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Scape Goat is our award-winning Pale Ale. It is a very smooth brew, refreshing and well-balanced. Scape Goat took home the Gold Medal from the North American Brewers' Association competitions as the best English-style pale ale brewed west of the Mississippi, but only because it is the best. Scape Goat is brewed with pale, crystal malts, and Kent Goldings and Crystal Hops. Scape Goat is 3.8% alcohol by weight and 4.7% by volume.","ibu":91,"name":"Scape Goat Pale Ale","state":"Montana"},{"abv":7,"address":"Tvaika iela 44","category":"German Lager","city":"Rga","country":"Latvia","ibu":94,"name":"Porteris"},{"abv":5.606404385596667,"address":"901 Gilman Street","category":"British Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":1,"name":"Snow Cap Ale","state":"California"},{"abv":11.720814237112053,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":112,"name":"Affligem Tripel","state":"Vlaams Brabant"},{"abv":7.296008856212732,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":40,"name":"Nut Brown Ale","state":"Illinois"},{"abv":9,"address":"281 Heinlein Strasse","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Just like our Porter but multiplied by 10.","ibu":99,"name":"Strong Arm Ale","state":"Michigan"},{"abv":6.559428302497066,"ibu":69,"name":"07/22/10 08:00 PM"},{"abv":4.3299999237,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Our lightest beer, and our Bronze Medal Winner 2006 World Beer Cup German pilsner malt and American hops give this brew a light, crisp finish. Made with the light beer drinker in mind.","ibu":9,"name":"Light Weight","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":10,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":46,"name":"Malheur 10","state":"Oost-Vlaanderen"},{"abv":1.3763144842098185,"address":"3945 Second Street South","category":"North American Ale","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":80,"name":"Duke of Wellington IPA","state":"Minnesota"},{"abv":14.985236596464235,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":43,"name":"80 Shilling","state":"New Jersey"},{"abv":5.971432481358061,"address":"61 Bridge Street","category":"British Ale","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":55,"name":"Pheasant Plucker","state":"New Jersey"},{"abv":9.823597561059842,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":23,"name":"Pils","state":"Illinois"},{"abv":7.200276819710581,"address":"Niederkasseler Strae 104","city":"Dsseldorf","coordinates":[51.2404,6.7516],"country":"Germany","ibu":57,"name":"Kupfer","state":"Nordrhein-Westfalen"},{"abv":3.8770858930543883,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":81,"name":"SunRye","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.170549837244181,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":17,"name":"Badger Red Ale","state":"Wisconsin"},{"abv":8.224071765695257,"address":"233 North Water Street","category":"British Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":83,"name":"Session Ale","state":"Wisconsin"},{"abv":14.697713000541007,"address":"2424 West Court Street","category":"British Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":81,"name":"Autumn Ale","state":"Wisconsin"},{"abv":9.145001868372333,"address":"23 Rice Street","category":"North American Ale","city":"Portland","coordinates":[43.71,-70.305],"country":"United States","ibu":104,"name":"Sunday River Alt","state":"Maine"},{"abv":7.602544574339265,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":4,"name":"Red","state":"Indiana"},{"abv":14.866845932806461,"address":"841 East Milwaukee Street","category":"North American Lager","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":77,"name":"Wheat Ale","state":"Wisconsin"},{"abv":5.8000001907000005,"address":"1 Jefferson Avenue","category":"German Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":21,"name":"Big Butt Doppelbock","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Clean, refreshing and perhaps just a bit tart, our brewers developed Weyerbacher Blanche just after their trip to Belgium during the winter of 2000. Blanche, meaning \"white\", takes its name from the whitish haze in this pale gold brew, which is a result of the raw wheat and wheat malts used to brew this Belgian-style beer. \n\n\nIn 2002, Blanche was named as Best of the Mid-Atlantic/Southeast in the Belgian Specialty category at the US Beer Tasting Championships.\n\n\nWhite beers are well known as the principal product from Hoegaarden, a small town in a wheat-growing region east of Brussels. Light, cloudy and smooth, Weyerbacher Blanche brings you authentic Belgian-style flavor along with microbrewed quality and freshness.\n\n\nBlanche is a thirst quenching beer that combines character and flavor with a moderate alcohol content. Just try a bottle. In the nose you'll notice spiciness from the coriander seeds and dried curacao orange peels added during the boil. In the mouth you'll find a mild and refreshing ale with a hint of dryness from the wheat ingredients. A clean finish follows with just a hint of tart spiciness.","ibu":2,"name":"Blanche","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.816084387951079,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":96,"name":"Platte Valley ESB","state":"Nebraska"},{"abv":2.5308629451136744,"address":"124 Manhattan Beach Boulevard","category":"North American Ale","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":43,"name":"Pier Pale Ale","state":"California"},{"abv":10.494899500523495,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":79,"name":"Thyme of the Saison","state":"Wisconsin"},{"abv":3.0623742031788392,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":37,"name":"Big Kahuna Brown","state":"Hawaii"},{"abv":11.626316980343862,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":33,"name":"Golden","state":"California"},{"abv":3.0731324933607276,"category":"German Lager","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":83,"name":"Munich Summer Fest","state":"North Carolina"},{"abv":6.8000001907000005,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"The brew of choice for mountain bikers, and adventurous types worldwide. (Are you excited now!) This fiery red ale is not for the weak at heart. It originally started out as a Scottish red ale but has taken on flavors of its own. This is a very complex recipe using five different grains to achieve its unique flavor. The caramel malt used is a mixture of Belgian Caravienne and Hugh Bairds Crystal malts. Red Rocket is a full bodied, hoppy brew which finishes on the pallet with caramel malts. Centennial and Cascade hops are used for bittering and aroma.2004 L.A. Commercial Brewing Competition, Gold Medal Winner; 2004 West Coast Commercial Brewers Competition, First Place; 2003 California State Fair, Gold MedalWinner; 2002 California State Fair, Silver Medal Winner; 2001 California State Fair Gold Medal Winner; 2001 Real Ale Festival, Chicago, Bronze Medal Winner; 2000 California State Fair, Bronze Medal Winner; 1999 Great American Beer Festival, Silver Medal Winner; 1998 Great American Beer Festival, Silver Medal Winner - og 1.067, ABV 6.8%, IBU 65+.","ibu":75,"name":"Red Rocket Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":8,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"North American Lager","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":91,"name":"Baltika #9","state":"Sankt-Peterburg"},{"abv":10,"address":"80 LAMBERT LANE","category":"Belgian and French Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Notice a unique aromatic nose with a hint of vanilla esters, which comes from the Belgian ale yeast. Tripel Horse has a big body and rich mouth feel and finishes mostly dry with only a touch of sweetness. If you shy from some of the sweeter Belgian ales, we think you will enjoy this one. The palate improves with age, so keep some on hand and you can ride Tripel Horse down a new path with each opened bottle.","ibu":87,"name":"Tripel Horse","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"Back Road Brewery's flagship beer, and first original recipe of 1997, is also our house beer. This mildly hopped copper colored brew has a rich smooth taste. Hop varieties such as Styrian Goldings and English Fuggles are used to balance the beers maltiness. A technique called dry hopping is used after fermentation to add fresh herbal aroma. It is a great session beer and was made to satisfy a wide variety of palates. Drink and enjoy LaPorte County's first production craft beer.","ibu":78,"name":"Back Road Ale","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":11,"address":"1301 Atlanta Avenue","category":"Other Style","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","description":"When you make a pot of coffee, but only use half the water, you get some pretty rich coffee. That's the approach we took with our latest offering. OBP Squared, with half the water, has 11% alcohol by volume-twice that of original OBP.\n\n\nThe result is a bold, distinct taste of its own. Made with twice as much real orange blossom honey, all-natural ingredients and no refined sugar, it really is the new king bee of beers.","ibu":73,"name":"Orange Blossom Pilsner ²","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The Popol Vuh, the sacred book of the Maya, unfolds a complex web of mystery around a beverage known as xocoatl (ch-co-atle). At Southern Tier, we’re not surprised that hieroglyphs of the ancient Maya depict chocolate being poured for rulers and gods. Even through the many voyages of Columbus, the mystical bean remained nothing more than a strange currency of the native peoples.\n\n\nMoving through centuries, the circular journey of cacao has been realized in our brewing house, encompassing the complexity of the darkest, bitter-sweet candy together with the original frothy cold beverage of the ancient Maya to bring to you our Blackwater Series Choklat Stout. We have combined the finest ingredients to tempt your senses & renew the power & interrelation of history in every bottle.\n\n11.0% abv • 195º L • Imperial Chocolate Stout • 22 oz / 1/6 keg\n\n2-row barley / caramel 60 malt / barley flakes / chocolate malt / bittersweet Belgian chocolate / kettle hops: chinook & willamette","ibu":100,"name":"Choklat","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":6.5999999046,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Typically Yorkshire. A strong Ale in which all English grown hop varieties are used. The grassy earthy character of Kent Goldings hops is the keynote in the aroma and finish. Try with fish and chips or a meat pie.","ibu":18,"name":"Old Marcus Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":7,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Offering a hop-heads paradise, this unfiltered Northwest-Style India Pale Ale introduces a big floral hop character to the aroma, flavor and finish. Hops, Hops, Hops from front to back but nicely offset with a malty richness that prevents this ale from being overbearing. Tracktown is made from 100% Floor Malted Maris Otter, 100% Northwest Amarillo Hops, Free Range Coastal Water, and absolutely No Chemicals, Additives, or Preservatives.","ibu":57,"name":"Tracktown IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"A blend of Pacific Northwest hops and three different caramel malts combine to give this beer its unique character.","ibu":86,"name":"Rocket's Red Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":11.165780082966986,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":92,"name":"Pole Star Pilsner","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":6,"name":"Harvest Ale 2002","state":"Manchester"},{"abv":8.786842789371004,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":28,"name":"Winter Cheer","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":12,"address":"9368 Cabot Drive","category":"North American Ale","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","description":"A HUGE Imperial Stout that weighs in at an impressive 12% ABV! As if that's not enough, we added pounds of coffee for a little extra kick. Our special-edition Brewer's Reserve Speedway Stout, which is aged in Bourbon barrels, has been rated the #1 BEST BEER IN THE WORLD at ratebeer.com. It was also featured on CNBC's \"Squawk Box\" in a segment on the best dark beers in America.","ibu":113,"name":"Speedway Stout","state":"California","website":"http://alesmith.com/"},{"abv":12.136329931100722,"category":"German Lager","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":76,"name":"Oktoberfest","state":"Nebraska"},{"abv":14.976180638414988,"address":"Ellhofer Strae 2","category":"German Ale","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":7,"name":"Weizen","state":"Bayern"},{"abv":9.36863058972669,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":71,"name":"Get Fuggled","state":"Iowa"},{"abv":6,"address":"Whimsey Road","category":"North American Ale","city":"Cinderford","coordinates":[51.8325,-2.5116],"country":"United Kingdom","ibu":47,"name":"Trafalgar IPA","state":"Gloucestershire"},{"abv":4.733216619204096,"address":"525 N Virginia Dare Road","category":"German Ale","city":"Manteo","coordinates":[35.8859,-75.6697],"country":"United States","ibu":76,"name":"Weizen","state":"North Carolina"},{"abv":13.195347742351426,"city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":119,"name":"Cornhusker Lager","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.317895875999984,"address":"2617 Water Street","category":"German Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":109,"name":"Bock","state":"Wisconsin"},{"abv":12.493158310915003,"address":"740 North Plankinton Avenue","category":"German Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":103,"name":"Hefeweizen","state":"Wisconsin"},{"abv":10,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":47,"name":"Tripel","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":14.430130772654667,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":25,"name":"Pale Ale","state":"California"},{"abv":9.142852098241368,"address":"10450-L Friars Road","category":"North American Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":8,"name":"Old Town Nut Brown","state":"California"},{"abv":11.100000381,"address":"231 San Saba Court","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","ibu":74,"name":"Sisyphus Barleywine","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":1,"category":"Other Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","ibu":71,"name":"Estrella Levante Sin 0.0% Alcohol","website":"http://www.estrelladamm.es/"},{"abv":6.9000000954,"address":"Slien 2, 2. tv","category":"North American Ale","city":"København","country":"Denmark","description":"The first in a new series of single hop IPA's from Mikkeller. Brewed with Simcoe, known for many great US micro-brews. An extremely fresh-hopped IPA.","ibu":99,"name":"Simcoe Single Hop IPA","website":"http://www.mikkeller.dk/"},{"abv":10.5,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Brewed in the authentic historical style of an Imperial Russian Stout, this ale is massive. Intensely aromatic (notes of anise, lack currants, coffee, roastiness and alcohol) and heavy on the palate, this brew goes where few can --- and fewer dare even try. The style originated from Czarist Russia's demand for ever thicker English stouts. Expect our version of this mysterious brew to pour like Siberian crude and taste even heavier!","ibu":39,"name":"Imperial Russian Stout","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.1999998093,"address":"2944 SE Powell Blvd","category":"British Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"This English Session Beer has a delicious floral hop aroma and flavor. A heaping helping of organic caramel malt and touch of organic chocolate malt give this beer its beautiful mahogany color while organic oats from Bob's Red Mill velvetize the texture. Smoother than an infomertial host at half the price!","ibu":38,"name":"Velvet ESB","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":7.5,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"This beer is for those of you who have been enjoying Seven Gates Pale Ale, and are ready for that next step. Beyond the Gates Double IPA is a highly hopped brew featuring plenty of Cascade and Columbus hops. These varieties give Beyond the Gates a floral citrus aroma, and pack plenty of hopped up flavor into this full-bodied ale, which is coming in @ 7.5 ABV. Let us take you Beyond the Gates, and you'll never look back!","ibu":40,"name":"Beyond The Gates Double IPA","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":3.382581558115718,"address":"100 West Main Street PO Box 432","category":"Other Style","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"This light colored ale gains its subtle, bread-like flavor from a balance of gently kilned malted barley and choice malted wheat. A restrained addition of hops, contributes a pleasingly delicate floral aroma.","ibu":102,"name":"Winkleblink Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":9,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","ibu":98,"name":"Jolly Roger Imperial Stout","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"IPAs were originally brewed to survive the epic sea voyages from England to India. Ours is no different. Hailing from a firm malt background and loaded through and through with hops, this beer will surely survive the journey from your fridge to your couch.","ibu":28,"name":"Yards India Pale Ale","state":"Pennsylvania"},{"abv":13.800974643075556,"city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":88,"name":"Voluptuous Blonde","state":"California"},{"abv":3.255867776392761,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":108,"name":"Christmas Ale","state":"Illinois"},{"abv":12.805673175820921,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":68,"name":"Berliner Weisse","state":"Illinois"},{"abv":2.14439071608831,"address":"Brauerei-Diebels-Strae 1","category":"North American Ale","city":"Issum","coordinates":[51.5331,6.4213000000000005],"country":"Germany","ibu":95,"name":"German Premium Dark","state":"Nordrhein-Westfalen"},{"abv":7.9000000954,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our hoppiest beer to date. This formidable India Pale Ale has a hop aroma that demands attention. The bold, citrus hop flavor is balanced by a dry malt character that makes this refreshing ale a true classic.","ibu":108,"name":"Hop Hog IPA","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":13.883640859499645,"category":"German Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":83,"name":"Black Rock Bock","state":"Texas"},{"abv":14.491733528896733,"category":"North American Ale","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":98,"name":"Hammerhead Red","state":"California"},{"abv":6,"address":"2401 Blake St.","category":"Irish Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Blessed by Hunter S. Thompson... Road Dog Porter was our first beer to be illustrated by Ralph Steadman. This is a dark, rich and malty beer, with hints of chocolate and licorice resulting from the use of four prized malts.","ibu":100,"name":"Road Dog Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":0.5902623979950705,"category":"Irish Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":54,"name":"Porter","state":"Nebraska"},{"abv":8.5,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":34,"name":"Double Diamond Winter","state":"Washington"},{"abv":7.4000000954,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","description":"This one's a butt-kicker! Essentially, the same recipe as the IPA, but with approximately 25% more grain and twice the hops!","ibu":74,"name":"Industrial IPA","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":6.503062778720548,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":87,"name":"Dark White","state":"Luxembourg"},{"abv":6,"address":"Hillfoots Business Village","category":"Irish Ale","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":34,"name":"Old Engine Oil","state":"Scotland"},{"abv":5.0999999046,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Levity is our lighter take on the amber ale. Munich and honey malts give it a full-bodied flavor and a happy-go-lucky personality. Then we let the finishing hops shine, for a beer that's crisp instead of bitter, as many ambers are. Levity was named by our brewers partly for its light color - and partly for the way it just refuses to take itself too seriously. Hey, we could all use a little levity once in a while.","ibu":43,"name":"Levity Amber Ale","state":"Colorado"},{"abv":8.5,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":117,"name":"Lucifer","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":9.1000003815,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":37,"name":"Widdershins Barleywine","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":11.199999809,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","description":"This Belgian beer has an everlasting tast. It has been choosen as the best beer in the world for several years!","ibu":30,"name":"Trappist Westvleteren 12","state":"West-Vlaanderen"},{"abv":3.5,"address":"Antwoordnummer 7181","category":"North American Lager","city":"Amsterdam","coordinates":[52.3738,4.8909],"country":"Netherlands","ibu":105,"name":"Amstel Light","website":"http://www.amstel.com"},{"abv":1.1560781330471948,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Named in honor of our founder Jeff's bike trip through Belgium, Fat Tire Amber Ale marks a turning point in the young electrical engineer's home brewing. \n\n\nBelgian beers use a far broader pallet of ingredients (fruits, spices, esoteric yeast strains) than German or English styles. Jeff found the Belgian approach freeing. Upon his return, Jeff created Fat Tire and Abbey Belgian Ale, (assuming Abbey would be his big gun). He and his wife, Kim traveled around sampling their homebrews to the public. \n\n\nFat Tire's appeal quickly became evident. People liked everything about it. Except the name. Fat Tire won fans is in its sense of balance: toasty, biscuit-like malt flavors coasting in equilibrium with hoppy freshness.","ibu":24,"name":"Fat Tire Amber Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.577949837352863,"address":"2320 SE OSU Drive","category":"North American Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A vienna style lager","ibu":109,"name":"Artisan Lager","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.633831616137034,"category":"North American Lager","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":24,"name":"Mile Marker Amber Lager","state":"Missouri"},{"abv":6.406982280180818,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":69,"name":"Discombobulator Maibock","state":"Wisconsin"},{"abv":5.1999998093,"address":"Steenhuffeldorp 3","category":"North American Ale","city":"Steenhuffel","coordinates":[50.9953,4.2835],"country":"Belgium","description":"Since 250 years Palm, a top-fermented amber beer, is brewed in the Belgian province of Brabant. It has a soft, full and fruity taste. It is only available in the Benelux. In France it is known as \"Palm Belgique\" with 6% alcohol percent.","ibu":83,"name":"Palm Speciale","state":"Brabant","website":"http://www.palmbreweries.com/"},{"abv":5.6999998093,"address":"357 Salmon Brook Street","category":"German Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Alt, German for \"old,\" is a traditional medium-bodied ale in which we use an array of the finest German malts & a generous smount of noble hops to produce a crisp, clean and refreshing \"bier.\";\"0","ibu":7,"name":"Alt","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":4.5,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Aud Blonde has a refined characteristic, which can be contributed to us blending pilsner malt with a unique hop called crystal. The distinctive characteristic of the crystal hop lends a citrus, almost eucalyptus quality in the aroma and mouth feel of the brew, while leaving the beer with a long dry finish.","ibu":87,"name":"Aud Blonde","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":0.21969477298599216,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":60,"name":"Pirate Pale","state":"New Jersey"},{"abv":3.367121896968581,"category":"German Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":23,"name":"Oktoberfest","state":"Texas"},{"abv":10.249678887253618,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":54,"name":"Vail Pale Ale","state":"Texas"},{"abv":0.0024838893095646686,"category":"Other Style","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":86,"name":"Double ZZ Raspberry Wheat","state":"California"},{"abv":4.699397534457721,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":92,"name":"Maibock","state":"Illinois"},{"abv":5.0999999046,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Crisp and refreshing, this classic Bohemian Pilsner brings noble hop flavor and traditional German maltiness into perfect union before another healthy dose of imported hops tips the scales towards a decidedly hoppy finish.","ibu":7,"name":"Gold Star Pilsner","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":0.3126926017954912,"address":"275 East Kawili Street","category":"North American Ale","city":"Hilo","coordinates":[19.706,-155.069],"country":"United States","ibu":54,"name":"Red Ale","state":"Hawaii"},{"abv":12.702705583871767,"city":"London","coordinates":[51.5002,-0.1262],"country":"United Kingdom","ibu":56,"name":"Red Barrel","state":"London"},{"abv":2.555116641211155,"category":"German Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":26,"name":"Hefeweizen","state":"Washington"},{"abv":5,"address":"Tvaika iela 44","city":"Rga","country":"Latvia","ibu":81,"name":"Zelta"},{"abv":5.726882319661931,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":55,"name":"Zoo Brew 25","state":"Nebraska"},{"abv":5.869055716168939,"category":"North American Ale","city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":103,"name":"Red Ale","state":"Wisconsin"},{"abv":3.9711964931095354,"category":"North American Ale","city":"Waukesha","coordinates":[43.0117,-88.2315],"country":"United States","ibu":20,"name":"Amber Ale","state":"Wisconsin"},{"abv":11.771229504540294,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":15,"name":"Barleywine","state":"Wisconsin"},{"abv":11.547192296834233,"address":"3832 Hillside Drive","category":"Irish Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":115,"name":"Pewaukee Porter","state":"Wisconsin"},{"abv":5.3000001907,"address":"Schillerstrae 14","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":56,"name":"Dunkles Hefe Weizen","state":"Bayern"},{"abv":6.813306255242688,"address":"3191 Golf Road","category":"German Lager","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":5,"name":"Old World Oktoberfest","state":"Wisconsin"},{"abv":0.5641891730422888,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":4,"name":"Irish Red","state":"Wisconsin"},{"abv":5.579464564350197,"category":"North American Ale","city":"Belgrade","coordinates":[45.7786,-111.179],"country":"United States","ibu":110,"name":"Thunder Pup Pale","state":"Montana"},{"abv":5,"address":"High Street","category":"Irish Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":89,"name":"Taddy Porter","state":"North Yorkshire"},{"abv":9.803459162552802,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":76,"name":"Streamline Oatmeal Stout","state":"Missouri"},{"abv":14.537272707728576,"address":"841 East Milwaukee Street","category":"North American Ale","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":57,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":5.4000000954,"address":"2516 Market Avenue","category":"Belgian and French Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A Belgian Wit Ale spiced with orange peel, chamomile and coriander.","ibu":34,"name":"Holy Moses","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.4000000954,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":49,"name":"Irish Red","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":4.9000000954,"address":"600 Elmira Road","category":"Other Style","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Our easy drinking wheat beer is light in color and body ... perfect for those looking for a lighter taste. The combination of wheat and barley give our Apricot Wheat a different malt character than any of our other ales. The hint of apricot gives this beer a fruity finish, making it a fun beer to drink.","ibu":41,"name":"Apricot Wheat","state":"New York"},{"abv":6.5,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"An abundance of hops and malt are added to our IPA to create and preserve its distinctive flavors. Not only do we use generous portions of hops in the kettle, but we also dry hop this ale for one week after fermentation. The dry hopping process adds to this beer's floral and citrus aroma. This is truly a tasty adult beverage!","ibu":89,"name":"Russian River IPA","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":10,"address":"545 Canal Street","category":"North American Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","ibu":110,"name":"Hoptimus Prime","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":5.8000001907000005,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A hop lover's delight. In the India Pale Ale tradition this brew is very hoppy in both aroma and flavor from the generous amounts of cascade hops used in brewing. Look for a medium to full body and golden straw color.","ibu":111,"name":"Saranac India Pale Ale","state":"New York","website":"http://www.saranac.com"},{"abv":7.8000001907000005,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Special hoppy flavors and aromas are captured by adding freshly picked, undired hops during the harvest.\n\n\nThese wet hops impart a character unlike other brews, that is quite unique and satisfying for those who love hops – the spice of beer. Smell the hop fields, smell the freshness.","ibu":14,"name":"Fresh Frog Raw Hop Imperial Pale Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.389919717389156,"address":"1446 Garden of the Gods","category":"North American Ale","city":"Colorado Springs","coordinates":[38.8967,-104.855],"country":"United States","ibu":92,"name":"Flo IPA","state":"Colorado","website":"http://trinitybrew.com/"},{"abv":12.05056761676413,"address":"270 53","category":"North American Lager","city":"KruÅ¡ovice","country":"Czech Republic","ibu":52,"name":"Imperial Czech Premium Lager","website":"http://www.krusovice.cz/"},{"abv":5.5,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Nicely Hopped, Medium Bodied Pale Ale","ibu":118,"name":"Patchway Pale Ale","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"The history of the bible and religion is indeed the struggle of good vs. evil. Our Serpent’s Stout recognizes the evil of the dark side that we all struggle with. This is a massively thick and opaque beer that begs the saints to join the sinners in their path to a black existence. 10.5% ABV and available in 750 ml bottles and on draft at select locations.","ibu":15,"name":"Serpents Stout","state":"California","website":"http://www.lostabbey.com/"},{"abv":6,"address":"14600 East Eleven Mile Road","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Little more can be said about this beer than these two words: Chocolate and Stout. This brew fills the palate with slightly sweet, super chocolate, malty flavor.","ibu":18,"name":"Willy's Oompa-Loompa","state":"Michigan"},{"abv":10.199999809,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Old Ruffian is a hefty, hop-forward Barley Wine. Seemingly mellow at first sniff, with its subtle fruit aromas and complex caramel sweetness, this deep mahogany-hued ale quickly shows its true character marked by bold hop flavors and massive hop bitterness. Old Ruffian’s rich, slightly creamy, caramel malt mouthfeel balances its grapefruit, pine, and floral hop flavors, working wonders on your palate.","ibu":100,"name":"Old Ruffian","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":10.068640211857382,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":93,"name":"Pale Ale","state":"Washington"},{"abv":6.606004648950643,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":35,"name":"Irish Stout","state":"Washington"},{"abv":7.1999998093,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":61,"name":"Imperial I.P.A.","state":"Washington"},{"abv":5.1999998093,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":110,"name":"Flagship Red Alt Ale","state":"Washington"},{"abv":0.7822123644243995,"address":"Drren 5","category":"German Ale","city":"Kilegg","country":"Germany","ibu":27,"name":"Edelweiss","state":"Baden-Wrttemberg"},{"abv":6.6999998093,"address":"Rue Derbque 7","city":"Jumet","coordinates":[50.4431,4.4147],"country":"Belgium","ibu":71,"name":"Grimbergen Blonde","state":"Hainaut"},{"abv":4.3725866069628525,"category":"North American Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":56,"name":"Prairie Thunder Pale Ale","state":"Iowa"},{"abv":6.1999998093,"address":"Whimsey Road","category":"North American Ale","city":"Cinderford","coordinates":[51.8325,-2.5116],"country":"United Kingdom","ibu":8,"name":"Deep Shaft Stout","state":"Gloucestershire"},{"abv":5.719249485458798,"address":"Snekerstraat 43","category":"German Ale","city":"Bolsward","coordinates":[53.0606,5.5342],"country":"Netherlands","ibu":38,"name":"Us Heit Dubbel Tarwe Bier"},{"abv":6.317105882281363,"address":"1 West Grand Avenue","category":"German Lager","city":"Chicago","coordinates":[41.8915,-87.6284],"country":"United States","ibu":76,"name":"Goat Toppler Mai Bock","state":"Illinois"},{"abv":0.0835453386095375,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":72,"name":"Ginger-\\\"slap\\\" Spiced Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":7.3832772648442235,"address":"3945 Second Street South","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":69,"name":"London Banker ESB","state":"Minnesota"},{"abv":11.694761159911181,"address":"207 College Street","category":"North American Lager","city":"Burlington","coordinates":[44.4771,-73.2115],"country":"United States","ibu":96,"name":"Peat Smoked Altbier","state":"Vermont"},{"abv":13.736305107871614,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":118,"name":"Saint Peter Red","state":"Minnesota"},{"abv":5.9000000954,"address":"811 Edward Street","category":"Belgian and French Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Belgian Ale is Deliciously Fruity. It is brewed with a generous amount of Belgian Aromatic Malt, Hand selected hops, and a traditional Belgian ale yeast. Brewed in the \"Trappist Style\".","ibu":70,"name":"Saranac Belgian Ale","state":"New York","website":"http://www.saranac.com"},{"abv":6.6999998093,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"If being in one of the coldest places in the US isn't extreme enough, the contents of this beer may very well redefine your commitment to the pursuit of hops. Rockslide IPA is brewed in the 'West Coast' style with aggressive amounts of American hops such as Amarillo, Centennial and Summit hops. You are greeted with a full frontal assault of citrus/grapefruit/pine hop character, followed up with malt to balance the mouthfeel. This beer is all about hops.","ibu":53,"name":"Rockslide IPA","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":4.8000001907000005,"address":"Domring 4-10","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":55,"name":"Warsteiner Premium Dunkel","state":"Nordrhein-Westfalen"},{"abv":8.88848685415249,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":90,"name":"Red Fox","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A full-bodied stout with plenty of roast flavor. Kalamazoo Stout is available year round, leading our vast portfolio of stouts.","ibu":27,"name":"Kalamazoo Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.1999998093,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":74,"name":"1000 Barley Wine","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.5,"address":"4615-B Hollins Ferry Road","category":"British Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Our \"winter warmer\" ale, brewed with copious helpings of English malts and US and English hops, a ruddy hued \"Imperial ESB\" in style. Full malty flavors dancing with powerful hop aromas and a lingering, firm hop bitterness. Seasonally available from mid October to February.\n\n\nGold Medal, International Pale Ale Category- World Beer Cup","ibu":58,"name":"Winter Storm","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":5,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep black color, toasted black burnt coffee flavors and aroma. Dispensed with Nitrogen through a slow-flow faucet giving it the characteristic cascading effect, resulting in a rich dense creamy head.","ibu":113,"name":"563 Stout","state":"California","website":"http://www.21st-amendment.com/"},{"abv":9.311420165858657,"address":"1650 Dell Range Boulevard","category":"German Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":117,"name":"Big Horn Hefeweizen","state":"Wyoming"},{"abv":11.705483878141433,"address":"2400 State Highway 69","category":"German Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":39,"name":"Copper Kettle Weiss","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":1.395291337516641,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":79,"name":"St. Sebastiaan Dark","state":"Antwerpen"},{"abv":3.2799516435139964,"category":"North American Ale","city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":93,"name":"The Only Oat Malt Stout In The World","state":"Scotland"},{"abv":6.922877725526384,"category":"North American Ale","city":"New York Mills","coordinates":[46.518,-95.3761],"country":"United States","ibu":69,"name":"Pale","state":"Minnesota"},{"abv":4.6999998093,"address":"130 Stirling Highway","city":"North Fremantle","coordinates":[-32.0232,115.754],"country":"Australia","ibu":36,"name":"Redback Original Malt Wheat Beer","state":"Western Australia"},{"abv":8.052867129107993,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":52,"name":"Cleary Red","state":"Michigan"},{"abv":13,"category":"North American Ale","city":"Ronchin","coordinates":[50.6054,3.0775],"country":"France","description":"Beer of top fermentation, Belzebuth represents the achievement of a more than one hundred year-old know-how, the one of the Brewery Grain d'Orge. Under its copper colour, it hides a strong character for the lovers of sensations. It owes its strength to the subtle mixture of pure malts, hops and yeasts especially selected by our Master-Brewer.\n\n\nAt one time this beer was 15%. After the name change it was lowered to 13%.","ibu":13,"name":"Belzebuth"},{"abv":9.319336546501301,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":29,"name":"Belgian Trippel","state":"Wisconsin"},{"abv":4.767881409744465,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":32,"name":"Schlafly Smoked Porter","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":3.9522652487552046,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":119,"name":"Ale","state":"Wisconsin"},{"abv":9.3000001907,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Prophecy is our third ale to be aged in bourbon barrels. We've taken our Merry Monks' Ale and carefully aged it in bourbon barrels. The result is a fabulous unique ale, softened with hints of vanilla and oak, with an intriguing finish to it. Prophecy is a limited release so when it's here, be sure to grab a case or two to lay away before its gone. 9.3% ABV.","ibu":21,"name":"Prophecy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.1999998093,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Oktoberfest style Marzen is a favorite at the famous Bavarian fall beer festivals. The distinct toasted malt flavor of this amber lager finishes quite crisp due to the extensive lagering of this beer. One sip and you’ll swear you’re in Munich.\n\n\n\"Kipona\" is the Indian word for \"sparkling water\". Each year, over Labor Day weekend, Harrisburg celebrates Kipona with a carnival and festival along the Susquehanna River and on City Island.","ibu":71,"name":"Kipona Fest","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":12.450187207643587,"address":"5417 Trumpeter Way","category":"British Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Two words describe Montana winters... Cold, dark, and snowy. And we wouldn't have it any other way, because it's the only time of year for Powder Hound, our Northern Rockies Winter Ale. Rich malt taste and an avalanche of hops will make you want to say these three words- \"I'll have another Powder Hound!","ibu":12,"name":"Powder Hound Winter Ale","state":"Montana"},{"abv":5.654851944927658,"address":"2920 North Henderson Ave","category":"Other Style","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":104,"name":"Blueberry Blonde","state":"Texas"},{"abv":3.401477999236431,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":2,"name":"Auld Lang Syne","state":"California"},{"abv":5.0100002289,"address":"161 River Avenue","category":"German Lager","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"Blue Point Octoberfest is another palate-pleasing seasonal brew. Originally brewed in 1810 to celebrate the betrothal of the Crown Prince of Bavaria, Blue Point continues the celebration by traditionally brewing this special malty amber lager every October. Octoberfest lager is stored cold for 2 months to ensure its distinct smooth flavor. Tap a pint and celebrate the season!","ibu":28,"name":"Oktoberfest","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":6.8000001907000005,"address":"813 Mirror Lake Drive","category":"North American Ale","city":"Lake Placid","coordinates":[44.2829,-73.9813],"country":"United States","ibu":99,"name":"Lake Placid Frostbite Ale","state":"New York","website":"http://www.ubuale.com/"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":0,"name":"Anniversary IPA Glacier","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":13.816552897244382,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":60,"name":"Pilsner","state":"British Columbia"},{"abv":4.9000000954,"address":"Wilhelm-Schussen-Strae 12","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":12,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":6,"address":"West Hewish","category":"North American Ale","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":25,"name":"Ale Mary","state":"Somerset"},{"abv":3.168625643766462,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":107,"name":"Fallen Angel Sweet Stout","state":"Nebraska"},{"abv":9,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":67,"name":"Houblon","state":"Luxembourg"},{"abv":5.3000001907,"address":"800 East Lincoln Avenue","category":"British Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"We introduced 90 Shilling, our flagship beer, at our opening party in 1989. For a while, we'd been wondering - what would happen if we lightened up the traditional Scottish ale? The result is an irresistibly smooth and delicious medium-bodied amber ale. The name 90 Shilling comes from the Scottish method of taxing beer. Only the highest quality beers were taxed 90 Shillings. A shilling was a British coin used from 1549 to 1982. We think you'll find this original ale brilliantly refreshing, and worth every shilling.","ibu":79,"name":"90 Shilling","state":"Colorado"},{"abv":7.5,"address":"16 rue des Ecoles","city":"Hordain","coordinates":[50.2601,3.3125],"country":"France","ibu":106,"name":"Blonde"},{"abv":0.4296243906904307,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":87,"name":"Eric the Red","state":"Minnesota"},{"abv":7.2402626579722975,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":17,"name":"Witte Ezel","state":"West-Vlaanderen"},{"abv":10.684696846192093,"address":"23 White Deer Plaza","category":"North American Lager","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":43,"name":"Three Sisters Golden Wheat","state":"New Jersey"},{"abv":3.5320976137200444,"address":"527 Decatur Street","category":"German Ale","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":81,"name":"Weiss Beer","state":"Louisiana"},{"abv":4.1999998093,"address":"12 Toft Green","city":"York","coordinates":[53.9571,-1.0905],"country":"England","ibu":94,"name":"Yorkshire Terrier Premium Cask Bitter","website":"http://www.york-brewery.co.uk"},{"abv":8.167369517463495,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":40,"name":"Coffee Ale","state":"Wisconsin"},{"abv":5.4000000954,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Our flagship ale, Stone Pale Ale is our Southern California interpretation of the classic British pale ale style. Deep amber in color, Stone Pale Ale is robust and full flavored. A delicate hop aroma is complemented by a rich maltiness. This is an ale for those who have learned to appreciate distinctive flavor. Stone Pale Ale is great by itself, or with food that requires a beer of character.","ibu":110,"name":"Stone Pale Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":7.080559830221444,"address":"146 Snelling Avenue North","category":"North American Lager","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":72,"name":"Honey Brown","state":"Minnesota"},{"abv":0.07801967553206168,"category":"North American Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":75,"name":"Red Eye Amber","state":"Hawaii"},{"abv":9.085242687567264,"address":"9627 East County Line Road","city":"Englewood","coordinates":[39.5678,-104.874],"country":"United States","ibu":51,"name":"Walnut Buffalo Gold Premium Ale","state":"Colorado"},{"abv":9.396875830261976,"category":"North American Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":106,"name":"Pale","state":"California"},{"abv":2.241177836003586,"city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":117,"name":"Black Forest Dunkelweizen","state":"Illinois"},{"abv":5,"address":"71 King Street North","city":"Waterloo","coordinates":[43.4676,-80.5231],"country":"Canada","ibu":4,"name":"Kings Pilsener","state":"Ontario"},{"abv":8.6999998093,"address":"420 Acorn Lane","category":"German Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"This dark amber wheat beer features fruity and spicy aromas galore. Significant strength underlies the pleasant citric appeal of this bock beer. Redolent with the flavors of harvest fruit, Moonglow typifies the traditional weizenbock-style so thoroughly enjoyed throughout Bavaria. Left unfiltered, its unique yeast strain gives Moonglow a radiance all its own.","ibu":8,"name":"Moonglow Weizenbock","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":9.572815129331241,"city":"Ocean","coordinates":[39.9653,-74.3118],"country":"United States","ibu":65,"name":"Old Salty","state":"New Jersey"},{"abv":5.1999998093,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Noble Pils is one of the only brews made with all five Noble hops from the world’s growing regions. its bright flavor and lively, citrus hop character reminds us that the warm days of spring are just a few weeks away.","ibu":79,"name":"Samuel Adams Noble Pils","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A mild pleasant ale with lingering hoppy notes.","ibu":54,"name":"Padawan Pale Ale","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":7.875933154886438,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":117,"name":"Strawberry Honey Amber Ale","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":8,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Bucking Bock - it's a traditional German Spring Bock Beer - golden in color and mildly hopped...... Kick'n in at 8% alcohol - it has a smooth malty character that will surely thaw you out after a long cold winter. Spring is here and so is Rahr's Bucking Bock!","ibu":101,"name":"Rahr's Bucking Bock","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.4000000954,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Ridgeline Amber stands out as a stellar, complex choice in a sea of over-simplified amber beers available today. A malty, copper-hued treat from start to finish, Ridgeline begins with a distinctive, estery aroma. Followed with a complex, nutty malt flavor true to its Scottish-style heritage, Ridgeline delivers unparalleled character and dimension. A touch of hops rounds out its silky, full body, highlighting Ridgeline’s subtle but engrossing character. Show your friends that you care about their taste buds by turning them on to our imminently balanced and perfectly complex Ridgeline Amber. \n\n\nOf interest to Great Divide historians – Ridgeline originally debuted at the brewery as Great Divide’s first beer, Arapahoe Amber. It was renamed in 2004 to better reflect the Colorado lifestyle that Great Divide’s beers perfectly complement.","ibu":34,"name":"Ridgeline Amber","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.8000001907000005,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"An aggressively hopped American Style Pale Ale brewed with Simcoe and Amarillo hops. The use of 20% rye gives this ale a unique dry and spicy character.","ibu":9,"name":"Rye IPA","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":4.8000001907000005,"category":"Belgian and French Ale","city":"Saratoga Springs","coordinates":[43.0831,-73.7846],"country":"United States","description":"This Limited Edition unfiltered Belgian Style Ale, brewed with premium unmatted wheat has a crisp & refreshing flavor. This thirst quenching ale has a blend of sweet orange peel, a subtle hint of coriander and a delicate twist of lemon.","ibu":70,"name":"White Ale","state":"New York","website":"http://www.mendobrew.com/"},{"abv":5,"address":"23 South Main Street","category":"British Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"A full bodied special bitter brewed with British malt and American hops","ibu":16,"name":"Piston Bitter","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":7,"address":"1106 N. Charles St.","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"During the fermentation of the first batch of this Abbey-style dubbel, the yeast \"died\" and was \"resurrected\" by brewer Chris Cashell. Made with five types of barley malt and lots of sugar, this beer is quite flavorful, without being too sweet.","ibu":47,"name":"Resurrection","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"Ale Brewed with Columbian Coffee. Brewed with Sebastopol's Own Hard Core Coffee.","ibu":49,"name":"Cappuccino Stout","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.301649761828091,"address":"793 Exchange Street","category":"German Lager","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Oktoberfest is our version of the perennial favorite Bavarian Autumn beer. Oktoberfest's deep golden hue helps bring to mind the old country and its time honored traditions. Brewed with Hallertau and Tettnang hops to balance its clean, malty sweetness, it's the perfect brew for a crisp Autumn day. Available from August to November.","ibu":116,"name":"Oktoberfest","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":3.9887724008298897,"address":"175 State Road East","category":"North American Ale","city":"Westminster","coordinates":[42.5586,-71.8715],"country":"United States","description":"Nice Hoppy IPA - available in MA & NY only","ibu":13,"name":"Wachusetts IPA","state":"Massachusetts","website":"http://www.wachusettbrew.com"},{"abv":8,"address":"Rua Bahia, 5181","category":"German Ale","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":49,"name":"Eisenbahn Weizenbock","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":5.5999999046,"address":"1075 East 20th Street","category":"Irish Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nDark and rich, Sierra Nevada Porter is a delicious, medium-bodied ale with a creamy head. The Porter’s smooth flavor (malty with hints of caramel) comes from a blend of deep-roasted barley malts.\n\n\n\n“…there can be little doubt that this is one of the best porters being brewed anywhere in the world today.”\n\n\n— Christopher Finch, A Connoisseur’s Guide \n\nto the World’s Best Beer\n\n\nFIRST PLACE\n\nCalifornia Brewers Festival (Robust Porter: 2000)\n\nColorado State Fair (Porter: 1996)","ibu":80,"name":"Porter","state":"California","website":"http://www.sierranevada.com/"},{"abv":10,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Brew 10,000: One Brewer, Eighteen Years, Ten-Thousand Batches of Beer. \n\n\nBrew 10,000 is not so much a style of beer, rather it is a new recipe using some of the best ingredients John Maier has ever brewed with... Vienna, French Special Aroma, and Maris Otter Pale Malts; Yakima Summit and German Saphir Hops, Free-range Coastal Waters, and PacMan Yeast. \n\n\nBrew 10,000 was brewed only once, so its allocated and very, very limited. Its packaged in the swing-top 750-ml ceramic bottle and available only at select retailers. Note, Brew 10,000 was sold out at the brewery in early 2007, however, very limited amounts may still available in the retail trade, email Schuyler@rogue.com for a retailer near you.","ibu":59,"name":"Ten Thousand Brew Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.137786114928753,"address":"237 West Butler Avenue","category":"North American Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","ibu":97,"name":"Pale Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":8.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":22,"name":"Vertical Epic 05.05.05","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":113,"name":"Alembic Pale","state":"Washington"},{"abv":4.3000001907,"address":"404 South Third Street","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":29,"name":"Dutch Girl Lager","state":"Washington"},{"abv":5.1999998093,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":99,"name":"Golden Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":9,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":8,"name":"Hitachino Nest Celebration Ale 2006","state":"Kanto"},{"abv":4.5,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan farmhouse ale that is golden, naturally cloudy, bottle conditioned and dry hopped for a perfectly refreshing balance of spicy malts, hops and yeast.","ibu":10,"name":"Bam Bière","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":4.5999999046,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":85,"name":"Pillar Point Pale Ale","state":"California"},{"abv":7.5,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":70,"name":"Jenlain Blonde"},{"abv":1.5504905962391458,"address":"1650 Dell Range Boulevard","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":89,"name":"Big Horn Wyoming Blonde","state":"Wyoming"},{"abv":12.544826915020542,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":58,"name":"#40 Golden Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":9,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":8,"name":"Bornem Triple","state":"Oost-Vlaanderen"},{"abv":6.156197539126368,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":34,"name":"Hopfenstange Pils","state":"Wisconsin"},{"abv":0.284986688412866,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":55,"name":"Stüvenbräu Maibock","state":"Wisconsin"},{"abv":11.39551623979113,"address":"351 Allen Street","category":"Irish Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"A robust, yet surprisingly refreshing porter, Mud Puppy is a favorite of dark beer lovers. Characterized by a thick, rocky head and luscious chocolate-like nose, the malty profile is balanced by liberal hopping for its style.","ibu":38,"name":"Mud Puppy Porter","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":3.158239004327198,"address":"1 Old Brewery Lane","category":"North American Lager","city":"Formosa","country":"Canada","ibu":84,"name":"Premium Lager","state":"Ontario"},{"abv":4.400861543357547,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":40,"name":"Tower ESB","state":"Colorado"},{"abv":9.832399138737651,"address":"14250 Sweetwater Lane","category":"North American Ale","city":"Centreville","coordinates":[38.8289,-77.4393],"country":"United States","ibu":97,"name":"High Desert Imperial Stout","state":"Virginia"},{"abv":2.379671163792038,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":13,"name":"Copper Wheat","state":"Nebraska"},{"abv":11.100000381,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":94,"name":"Cow Palace Scotch Ale 2001","state":"Wisconsin"},{"abv":12.11965748579056,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":83,"name":"Brown Fox Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":8.352619540907499,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":18,"name":"Hefe-Weißbier","website":"http://www.paulaner.com/"},{"abv":12.50836987622038,"category":"German Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":3,"name":"Oktoberfest","state":"Iowa"},{"abv":4.392126119705292,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":50,"name":"Steam Engine Common","state":"Wisconsin"},{"abv":13.233211554523074,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":106,"name":"Nut Brown Ale","state":"Washington","website":"http://www.redhook.com/"},{"abv":13.554973905640257,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":97,"name":"Winter Fest Beer","state":"Wisconsin"},{"abv":2.8829643269990255,"address":"7536 Fay Avenue","category":"German Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":41,"name":"Wheat","state":"California"},{"abv":5.434163298231898,"address":"316 Main Street","category":"British Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":5,"name":"Caramel Apple Ale","state":"Iowa"},{"abv":6.5751479049531705,"address":"506 Columbia Street","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":9,"name":"Old Boardhead 1999","state":"Oregon"},{"abv":5.9000000954,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":77,"name":"Best Bull","state":"Wisconsin"},{"abv":6.126051195812647,"address":"1028 Johnny Dodds Boulevard","category":"North American Lager","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":111,"name":"Market Street Wheat","state":"South Carolina"},{"abv":7,"address":"1035 Sterling Avenue","category":"British Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":58,"name":"Kilt Kicker Wee Heavy","state":"Illinois"},{"abv":7.983421315664183,"address":"Via Val Venosta, 8","category":"German Lager","city":"Lagundo / Algund","country":"Italy","ibu":29,"name":"Sixtus"},{"abv":2.681102320536022,"address":"351 Allen Street","category":"North American Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"This crisp, zesty American pale is characterized by the sharp bitterness missing in many domestic pale ales. The clean finish and slight fruity notes help make our flagship brew a delightful treat.","ibu":83,"name":"Happy Heron Pale Ale","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":9.30818376996714,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"Perhaps the most ancient style of beer, our brown ale is robust with a hint of nut flavor. With definable malt characteristics, this dark ale is sure to please any beer enthusiast’s palate.","ibu":9,"name":"Nut Brown Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":12.540512660391062,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":85,"name":"Kölsch","state":"California"},{"abv":4.074698733332461,"city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":16,"name":"Amarossa","state":"Texas"},{"abv":3.250804369637609,"address":"6863 Lundy's Lane","category":"German Lager","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":106,"name":"Eisbock","state":"Ontario"},{"abv":3.842303292026826,"address":"1201 First Avenue South","city":"Seattle","country":"United States","ibu":94,"name":"5,000 Year Ale","state":"Washington"},{"abv":10.546530663020716,"address":"309 Court Avenue","category":"North American Lager","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":73,"name":"Vimalt Wheat","state":"Iowa"},{"abv":7.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch 31, the brothers and the brewers decided to revisit one of our favorite sweet spots – IPA – and have some fun with hop flavors. Dubbed ‘Citra of Brotherly Love’ in honor of Philly Beer week, Scratch #31 has generous amounts of Apollo, Cascade and Citra hops. This is our first use of Citra hops, which is known for an intense grapefruit aroma and flavor.\n\n\nWhile showcasing the intense Citra flavor we added additional bitterness with Apollo and Chinook hops as well. Scratch #31 went through a bed of Chinook hops in the hopback and was dry-hopped with Cascade and Citra hops.","ibu":79,"name":"Scratch Beer 31 - 2010 Citra Of Brotherly Love IPA","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"This Russian Imperial Stout is dedicated to Gregory Zhukov. Arguably one of World War II's finest generals and a man bold enough to appreciate the rich, complex flavors of a beer brewed to fortify a body through the Russian winter. Like military geniuses, Russian Imperial Stouts reach their peak with a little age on them, so we release Marshal Zhukov's Russian Imperial Stout in sweltering August so that it will be at peak flavor come January or February.\n\n\nOpaque black in color, the aroma has notes of espresso, chocolate, dark sweet toffee with hints of black strap molasses. The flavor starts with an unsweetened chocolate character and supporting notes of herbal dryness from English hop varietals. It then moves into dark toffee sweetness and closes with a slap of roasty espresso. Zhukov's Imperial Stout pairs well with Mushroom Solyanka, dark chocolate, cherries and ground wars in Russia. Enjoy, comrade.","ibu":75,"name":"Marshal Zhukov's Imperial Stout","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":6.195678560367385,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"With its dark-roasted coffee aroma, espresso and chocolate flavor, this stout has flaked oats which create a velvety body and a dry finish.","ibu":44,"name":"Standing Stone Nitro Stout","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":3.287524210393118,"address":"10983 Hills Road","category":"British Ale","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Cocoa Stout boasts a beautiful black body and tan head with notes of roasted barley, coffee, and bittersweet chocolate. Enjoy with dessert ‹ especially good in a float with vanilla ice cream. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience. Contains lactose (milk sugar).","ibu":72,"name":"Round Barn Cocoa Stout","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":1.8928921140145394,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":108,"name":"Capital Oktoberfest","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":7.3000001907,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is named after a song that sparked the idea to make this ale. Brown ales seem to be there, but not really there, do you know what I mean? Well that won't be the mistake with Wynona! We Voodooed out this style and added more that's what we say. Mildly hoppy and smooth with hints of chocolate and tons of brown malt to let you know it's there. Currently 7.3% by vol. \n\n\nBottle conditioned and Refermented. \n\n\nGet down with the brown, You'll be Happy You Did!!","ibu":21,"name":"Wynona's Big Brown Ale","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":2.979396247545727,"address":"656 County Highway 33","category":"North American Ale","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":27,"name":"Obamagang Inauguration Ale","state":"New York"},{"abv":12.100000381,"address":"127 Elm St., Unit C","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","description":"Our fourth in the Firehouse Ales Series, Pompier means \"fireman\" in French and represents our continued commitment to celebrate and honor the men and women who respond to the call day after day. Pompier is rich and smooth with complexities that come from a huge grain bill comprised of premium imported specialty malts, French Strisselspalt aroma hops and a 3 month aging process in oak hogsheads where it is combined with toasted French oak wood chips and champagne yeast. Pompier is intended to be a vintage quality English-Style Barleywine with a French twist. Appreciate its fine character and 12.1%ABV when we release this single 10 barrel batch sometime in December or you may choose to cellar it for many years to come. \n\n\nYou will find Pompier on retail shelves packaged in the same 1 Liter Swing-Top bottle that has become a signature for our specialty beers.","ibu":9,"name":"Pompier","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":2.9000000954000003,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Coopers Premium Light is brewed using malted barley and no sugar. Coopers has used traditional lager brewing techniques to produce a full-flavoured light beer. The light has a fresh aroma with clean floral hop notes, excellent head and colour presentation.","ibu":83,"name":"Coopers Premium Light","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An American pale ale made entirely with amarillo hops.","ibu":15,"name":"Broken Spoke","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":13.739253954233789,"address":"30 Germania Street","category":"British Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Ale brewed with Cherries, crisp and fruity with a hint of honey. Samuel Adams Cherry Wheat® follows the centuries old American tradition of brewing beer with native ingredients, in this case Michigan cherries as well as a touch of honey. The sweet fruitiness of the cherries is balanced against the crisp, cereal note from the malted wheat and the subtle citrus flavor from the Noble hops. The end result is a sweet, refreshing beer that is light on the palate but long on complexity.","ibu":59,"name":"Samuel Adams Cherry Wheat","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.5,"address":"1940 Olney Avenue","category":"British Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This ESB is a classic British extra special bitter made fresh with an American slant. A beautiful copper color with an amber head, this classic style features five different malts, including imported English malts, and three hop varieties. The rich malty start features caramel notes that develop into a smooth, pleasurable hop finish.","ibu":34,"name":"ESB Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":0.9790436888891019,"address":"426 St.Peter Street","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":84,"name":"Golden Prairie Blond","state":"Minnesota"},{"abv":4.741253556393556,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":50,"name":"Amber Ale","state":"New Jersey"},{"abv":8.279664565650634,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":102,"name":"Saison","state":"Wisconsin"},{"abv":12.656235368009801,"city":"Manchester","coordinates":[53.4807,-2.2344],"country":"United Kingdom","ibu":65,"name":"Pub Ale Draught","state":"Manchester"},{"abv":5,"address":"Lindenbergstraat 10","category":"Belgian and French Ale","city":"Sint-Ulriks-Kapelle","country":"Belgium","ibu":107,"name":"Gueuze 1882","state":"Vlaams Brabant"},{"abv":12.529362919828275,"address":"1004 South Olde Oneida","category":"North American Ale","city":"Appleton","coordinates":[44.2536,-88.4037],"country":"United States","ibu":79,"name":"Stout","state":"Wisconsin"},{"abv":5.661100112188349,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":7,"name":"Oatmeal Cream Stout","state":"Oregon"},{"abv":5.3000001907,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":60,"name":"Heavenly Helles","state":"Nebraska"},{"abv":3.7999999523,"address":"2106 North 55th Street","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":108,"name":"Warminster Special Bitter","state":"Washington"},{"abv":0.2586098882280352,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":91,"name":"Spezial-Export","state":"Baden-Wrttemberg"},{"abv":2.892116336616628,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":72,"name":"Alt-Dürrener-Weiße","state":"Baden-Wrttemberg"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":58,"name":"Bigfoot 2000","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.0999999046,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","ibu":4,"name":"Export Ale","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5,"address":"R Pereboomweg 13 achter","city":"Haarlem","coordinates":[52.3795,4.6377],"country":"Netherlands","ibu":11,"name":"Adriaan"},{"abv":8,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":106,"name":"Achel Bruin 8°","website":"http://www.achelsekluis.org/"},{"abv":6.3000001907,"address":"1207 N. FM 3083 E.","category":"North American Ale","city":"Conroe","coordinates":[30.3489,-95.4427],"country":"United States","description":"A deep copper colored ale with a substantial malt backbone accented with British crystal malts with aggressive hop bitterness and substantial American hop flavor and aroma. The yeast profile is neutral.","ibu":28,"name":"Pine Belt Pale Ale","state":"Texas","website":"http://www.southernstarbrewery.com/"},{"abv":6,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Terrapin India Style Brown Ale is a head on collision between a hoppy, west coast IPA and a complex, malty brown ale. Brewed with 5 varieties of hops and 7 different malts, this hybrid style represents the best of both worlds.","ibu":30,"name":"India Style Brown Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":8,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"It is through the movement of the universe that life presents itself in transformation. It is in this spirit that we make ÜberSun, a tribute to the dynamic energy of summer. The alignment of wheat and barley through this hop-infused brew embodies the solar system itself... This may be a difficult task, but one our brewers revel in! They brew a galaxy of taste into every batch. ÜberSun is the ultimate experience that will challenge you with each sip. ÜberSun Imperial Summer Wheat Beer takes off where our Hop Sun finishes. Like it’s little brother, ÜberSun is clean and full of flavor, but don’t pull an Icarus– this is one big beer! Pour a glass or drink straight from the bottle, it’s meant to be consumed wisely with friends between summer solstice and autumnal equniox.","ibu":9,"name":"Über Sun Imperial Summer Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A well balanced, full flavored, amber ale. It has a rich, malty body with a pleasant caramel character derived from a specialty Caravienne malt. A complex hop aroma, with a hint of floral and citrus comes from a combination of Cascades and Liberty hops. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \n\n\nSaint Arnold Amber Ale is best consumed at 50 - 55° Fahrenheit.","ibu":36,"name":"Saint Arnold Amber Ale","state":"Texas","website":"http://www.saintarnold.com"},{"abv":7,"address":"2800 North Reading Road","category":"German Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":47,"name":"Smooth Hoperator","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":8,"address":"303 Main Street","category":"British Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Old Chub is a Scottish strong ale brewed with hearty amounts of seven different malts, including crystal and chocolate malts, and a smidge of US and UK hops. Old Chub also gets a dash of beechwood-smoked grains imported from Bamburg, Germany, home of the world's greatest smoked beers. Old Chub is 8% alcohol by volume. While Dale's satisfies our hop addiction, Old Chub takes care of our deep affections for malt. The cola-colored beer (almost black) features a tan head, a creamy, skim-milk mouthfeel, and rich, semi-sweet flavors of caramel and chocolate throughout. The addition of smoked grains gives Old Chub a delicate kiss of smoke on the finish. Old Chub is the beer equivalent of a lightly smoked single malt scotch, or your favorite dark chocolate. We call it Rocky Mountain Mutha's Milk. People who tell us defiantly, \"I don't drink dark beer,\" often fall deeply in love with Old Chub. We can't blame them.","ibu":31,"name":"Old Chub","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":7,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Brewed with luscious apricots, finished with whole-leaf hops. A \"fruit beer for hop heads...\" Ale Street News","ibu":49,"name":"Aprihop","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.1454642892044262,"address":"23-1 Azumabashi 1-chome","category":"North American Lager","city":"Tokyo","country":"Japan","ibu":58,"name":"Asahi Super Dry","state":"Kanto"},{"abv":9.417242483006707,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":15,"name":"Holiday Spice Lager Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":9.826242802135818,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":32,"name":"Paddle Me IPA","state":"Oregon"},{"abv":8.75,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"This mammoth imperial red ale leads with a tantalizing hop aroma that is quickly complemented by an enormous malt backbone & finished with a multitude of hoppy goodness.","ibu":8,"name":"Big Hoppy Monster","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":0.4852088259503651,"category":"German Lager","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":50,"name":"Bock","state":"Iowa"},{"abv":1.2641195659325688,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":117,"name":"Lodestone Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":7.881769109621841,"address":"119 South Front Street","category":"North American Ale","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":38,"name":"Plank Road Pale Ale","state":"Michigan"},{"abv":7.976849553887386,"address":"300 North Main Street","category":"North American Ale","city":"Corona","coordinates":[33.8835,-117.565],"country":"United States","ibu":71,"name":"Hop Daddy IPA","state":"California"},{"abv":1.8189328735995647,"address":"200 North Main Street","category":"Irish Ale","city":"Las Vegas","coordinates":[36.1755,-115.145],"country":"United States","ibu":50,"name":"Black Chip Porter","state":"Nevada"},{"abv":8.774667779810114,"address":"501 State Street","category":"North American Ale","city":"Santa Barbara","coordinates":[34.4166,-119.696],"country":"United States","ibu":49,"name":"Pacific Pale","state":"California"},{"abv":14.996118130345259,"address":"102 West Main","category":"North American Ale","city":"Norman","coordinates":[35.2205,-97.4439],"country":"United States","ibu":54,"name":"IPA","state":"Oklahoma"},{"abv":1.7911308614228605,"address":"1812 North 15th Street","category":"North American Ale","city":"Tampa","coordinates":[27.9607,-82.4433],"country":"United States","ibu":12,"name":"Old Elephant Foot IPA","state":"Florida"},{"abv":1.8258742170249098,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":104,"name":"Iris 1996","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":0.9078078299578807,"address":"Hofmarkstrae 15","city":"Cham","coordinates":[49.1672,12.6399],"country":"Germany","ibu":119,"name":"Original Pils","state":"Bayern"},{"abv":10.254504696850741,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":5,"name":"Oatmeal Stout","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":4.5,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":109,"name":"Free Bike Amber","state":"Washington"},{"abv":6.242297477853453,"address":"1524 West Marine View Drive","category":"German Lager","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":32,"name":"Maibock","state":"Washington"},{"abv":5.5999999046,"address":"621 Front Street","category":"Irish Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":92,"name":"Possession Porter","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":11.163206877549571,"address":"13300 Bothell-Everett Highway #304","category":"Irish Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":89,"name":"Porter","state":"Washington"},{"abv":9.1999998093,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":56,"name":"Eisbock","state":"Bayern"},{"abv":8,"address":"Hillfoots Business Village","city":"Alva","coordinates":[56.1531,-3.8006],"country":"United Kingdom","ibu":47,"name":"Old Engine Oil Special Reserve (aged in malt whisky casks)","state":"Scotland"},{"abv":7.5,"address":"Slien 2, 2. tv","category":"North American Ale","city":"København","country":"Denmark","description":"Breakfast is the most important meal of the day, many say, and if you are a beer geek there is no better way to start the day than with a powerful, complex morning stout. The unique mix of oats and coffee gives this beer large body and power, while the coffee, at the same time, creates a nice balance.","ibu":29,"name":"Beer Geek Breakfast","website":"http://www.mikkeller.dk/"},{"abv":9.4600000381,"address":"5763 Arapahoe Avenue","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":73,"name":"Fourteen","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":9.45602482703774,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":47,"name":"Sharptail Pale Ale","state":"Montana"},{"abv":5,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":73,"name":"Oatmeal Stout","state":"North Yorkshire"},{"abv":13,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Decadence is our Tenth Anniversay spiced amber ale. This is a very limited production, brewed only once, to celebrate ten fantastic years in business. This ale weighs in at 13% ABV and is a fantastic sipper, especially after dinner or consider paring it with a good book on a cool fall evening. Decadence is brewed with honey, cardamom spice and gentian (a rare botanical!) This ale is very unique and will develop finer character when aged at cellar temperatures.","ibu":106,"name":"Decadence","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.3000001907,"address":"5417 Trumpeter Way","category":"Irish Ale","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"It's chocolate brown in color with a creamy texture. A malty beer with just enough hop presence to keep it from being too sweet. The aroma mostly comes from the malt with a hint of spice added by the hops. Moose Drool is brewed with pale, caramel, chocolate, and whole black malts; and Kent Goldings, Liberty, and Willamette hops. It has an original gravity of 13 degrees Plato, and is 4.2% alcohol by weight, 5.3% by volume.","ibu":111,"name":"Moose Drool Brown Ale","state":"Montana"},{"abv":6,"category":"German Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":59,"name":"Dusseldorfer Doppelbock","state":"Illinois"},{"abv":9.55222635723484,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":114,"name":"Red Fox Amber","state":"Illinois"},{"abv":6.875799053203413,"address":"117 South First Street","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":74,"name":"Extra Special Bitter","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":10.392079113783247,"address":"Landsberger Strae 35","category":"German Lager","city":"München","country":"Germany","ibu":12,"name":"Maximator","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5,"address":"Elisabethufer 18","city":"Jever","coordinates":[53.5755,7.9016],"country":"Germany","ibu":45,"name":"Pilsener","state":"Niedersachsen"},{"abv":5.4000000954,"address":"In den Hardtberggrten","city":"Lich","coordinates":[50.5208,8.8166],"country":"Germany","ibu":58,"name":"Export Premium","state":"Hessen"},{"abv":11.19690484746254,"ibu":95},{"abv":9.251669054478883,"address":"808 West Main Street","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":54,"name":"Witbier","state":"Wisconsin"},{"abv":0.43232748259656284,"address":"2400 State Highway 69","category":"German Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":71,"name":"Solstice Wheat","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":4.1835109324765165,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":76,"name":"Solitaire Stout","state":"Colorado"},{"abv":8,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":37,"name":"Augustijn Ale","state":"Oost-Vlaanderen"},{"abv":9.550442892775376,"address":"841 East Milwaukee Street","category":"North American Lager","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":24,"name":"Amber Lager","state":"Wisconsin"},{"abv":12.537891417751226,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":46,"name":"Winter Ale","state":"Ohio"},{"abv":6.8000001907000005,"category":"Belgian and French Ale","city":"Opwijk","coordinates":[50.9699,4.1892],"country":"Belgium","description":"A reddish-brown abbey ale brewed with dark malts. The secondary fermentation gives a fruity aroma and a unique, spicy character with a distinctive aftertaste. Secondary fermentation in the bottle. Contains barley malt.","ibu":44,"name":"Affligem Dubbel","website":"http://www.affligembeer.be/"},{"abv":4.4000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":83,"name":"Shiner Blonde","state":"Texas","website":"http://www.shiner.com"},{"abv":7.8246626094598515,"address":"2920 North Henderson Ave","category":"German Lager","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":34,"name":"Oktoberfest","state":"Texas"},{"abv":11.865090652011833,"category":"North American Ale","city":"Grand Rapids","coordinates":[42.9634,-85.6681],"country":"United States","ibu":97,"name":"Stout","state":"Michigan"},{"abv":6.665888436241284,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":87,"name":"Arkham Stout","state":"Illinois"},{"abv":7.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"he Humidor Series is a rotating offering of Cigar City Brewing beer aged on cedar. Cedar has a more subtle effect on beer than more traditional woods like oak. But, we think that once you taste it you’ll agree that cedar deserves a place alongside oak in the brewer’s wood-aging toolbox.","ibu":17,"name":"Humidor Series Jai Alai Cedar Aged India Pale Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":8.6000003815,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"The essence of Christmas is captured in this very bottle you are holding. Perfectly blended spices compliment Frosted Frog’s rich malt flavors, creating the ultimate Christmas experience. Celebrate the holidays as you savor this very special seasonal offering.","ibu":47,"name":"Frosted Frog Christmas Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5,"address":"63 Trevarthian Road","category":"British Ale","city":"St. Austell","coordinates":[50.3416,-4.7883],"country":"United Kingdom","description":"St Austell’s most legendary ale, HSD is fullbodied strong and Cornish, brimming with a kaleidoscope of flavours. Brewed with plenty of malt and lashings of English Fuggles and Golding hops, HSD is truly a classic ale of considerable depth and complexity. The real ale alternative to a well rounded premium red wine and simply superb with steaks and other red meat dishes.","ibu":114,"name":"HSD Hicks Special Draught","state":"Cornwall","website":"http://www.staustellbrewery.co.uk/"},{"abv":6.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A flavorful Red Ale with a generous helping of fresh Cascade hops. A full-bodied unfiltered beer with a slightly dry and roasted finish.","ibu":73,"name":"Indian Red Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":5.5,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":57,"name":"Oak Creek Amber Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":3.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Sea Dog Apricot Wheat Beer is a crisp and quenching wheat ale with a subtle essence of fresh apricots.","ibu":110,"name":"Sea Dog Apricot Wheat","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":6.3000001907,"address":"461 South Road","category":"North American Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Now here's a beer with punch! \n\n\nCoopers Best Extra Stout is a beacon for lovers of a hearty brew. With its robust flavour it is everything a stout should be. \n\n\nBrewed naturally using a top fermentation method, Coopers Stout's unique rich, dark texture comes from specially roasted black malt. \n\n\nCoopers Best Extra Stout contains no additives and no preservatives.","ibu":41,"name":"Coopers Best Extra Stout","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5,"address":"1093 Highview Drive","category":"Irish Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Full-flavored and robust ale with heavy notes of roasted malt. There are hints of coffee and chocolate flavors, complimented by medium hop bitterness and a hint of smokiness.","ibu":93,"name":"Peninsula Porter","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6.4000000954,"address":"21 W. Bay St.","category":"Other Style","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"This hard cider is fresh-pressed with delicious, sweet-tart \"Pink Lady\" apples from the Mercier Orchards in the North Georgia mountains.","ibu":56,"name":"Road Trip Hard Cider","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":4.5,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A refreshing and delightful ale with the subtle flavor and aroma of apricots. A wonderful change from the ordinary. This is not a sweet fruit beer.","ibu":109,"name":"Middle Ages Apricot Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":7.8000001907000005,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":102,"name":"Holy Moly","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.3000001907,"address":"811 Edward Street","category":"Belgian and French Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Our Belgian Style White beer is smooth, tangy and very thirst quenching. Brewed with a delicate combination of oats, wheat and barley malt, we season it ever so lightly with hops. Then we add sprinklings of coriander and orange peel for a refreshing brew with a citrus aroma. Don't be fooled by the cloudy appearance, that's expected of a classic Belgian-style \"Whitbier\" or white beer.","ibu":98,"name":"Saranac Belgian White","state":"New York","website":"http://www.saranac.com"},{"abv":13.463642443918909,"address":"310 Commercial Drive","category":"British Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"While hugely popular in Scotland, this style of beer escapes most North Americans. Designed and brewed by the Scottish punk rocker David “Malty” Macanulty, this creamy, nutty, malty, dark ale is true to its origins. David drives James crazy over this beer, insisting on rigid fermentation temperatures, traditional mild hops for bittering, and even some weird caramelizing ritual as the kettle is being filled. The beer continues to undergo subtle evolutionary changes because the stubborn Scottish bastard will never be satisfied.","ibu":76,"name":"Highland Scottish Ale","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":7.945060513187798,"address":"793 Exchange Street","category":"Belgian and French Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"White Sail is a Belgian-style white beer, craft brewed with wheat, malted barley, hops, and a little bit of coriander and orange peel. It is mild yet flavorful, with fruity undertones and a haze from the yeast and wheat. This ale is delicious on its own, or with a slice of orange.","ibu":61,"name":"White Sail","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":5.1999998093,"address":"1100 New York Ave, NW","category":"Irish Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down.","ibu":79,"name":"Irish Red Ale","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":2.032667590855083,"address":"429 W. 3rd St","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Square Feet Wheat is loosely based on a Berliner Weisse style of beer from Germany. It has a refreshing, yet slight wheat and malt sweetness that is supported by a distinct hop presence. On hot Summer days, Square Feet Wheat will cool you off. Bring it along to pool parties, picnics and backyard cookouts. Instead of a boring wedge of lemon or orange, try Square Feet Wheat with a splash of raspberry extract or a dash of essence of Woodruff – both a customary addition to Berliner Weisse beers in Berlin.","ibu":67,"name":"Square Feet Wheat","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":6,"address":"231 W. Fourth Street","category":"Irish Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big, RICH dark ale with a complex combination of beechwood smoked malts, chocolate, coffee and caramel flavors rounding out the beers smooth creamy body.","ibu":18,"name":"Smoked Porter","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":6.9000000954,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A strong India Pale Ale that is marked by intense hop flavor and high hop bitterness. This style of beer needed the high hop and alcohol to survive the trip around Africa. Medium to light body and very bitter. \n\n\nAlcohol content approximately 6.9% by volume (ALWAYS ON TAP!!)","ibu":16,"name":"The Raj India Pale Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":8,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"A dry Imperial stout with rich black color and aromas of roasted coffee, molasses, dark chocolate, toffee and caramel. Rich, powerful, and lingering.","ibu":42,"name":"Peg Leg Stout","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":14.61952893619776,"address":"1507 Montana Street","category":"North American Lager","city":"Missoula","coordinates":[46.8726,-114.02],"country":"United States","ibu":64,"name":"Hefeweizen","state":"Montana"},{"abv":4,"address":"2106 North 55th Street","category":"North American Lager","city":"Seattle","coordinates":[47.6688,-122.334],"country":"United States","ibu":39,"name":"Foster Child Australian Lager","state":"Washington"},{"abv":6.5999999046,"address":"1221 East Pike Street","category":"German Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":20,"name":"Whoville Weizenbock","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7.120982018706704,"address":"13450 - 102 Avenue","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":72,"name":"Boomers Red Ale","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":11.97160866960689,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":47,"name":"Winter Gale Spiced Ale","state":"Wisconsin"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":42,"name":"Harvest Ale 2001","state":"Manchester"},{"abv":10.855557210107808,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":57,"name":"Home Town Blonde","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":1.465341235671881,"address":"Holstenstrae 224","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":70,"name":"Astra Urtyp","state":"Hamburg"},{"abv":4.885296958542135,"address":"B-4864 Cty Rd F","category":"North American Ale","city":"Unity","coordinates":[44.8516,-90.3165],"country":"United States","ibu":42,"name":"Swede Saw Red Ale","state":"Wisconsin","website":"http://www.logjambeer.com/"},{"abv":11.233547094142281,"address":"22221 Pepper Road","category":"North American Ale","city":"Lake Barrington","coordinates":[42.1865,-88.1835],"country":"United States","ibu":13,"name":"Pale Ale","state":"Illinois"},{"abv":7.1999998093,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Selected as a benchmark for the Beer Judge Certification Program used in all American based beer judgings. Centennial IPA has quickly become the IPA of choice. Pour yourself a pint of this complex flavorful ale and bask in the frothy head's floral bouquet. Relish the immense citrus accents, achieved by the abundance of dry hopping. This ale's sweet, malty undertones balance the hop character with a finish that never turns too bitter.","ibu":87,"name":"Centennial IPA","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":7.1999998093,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","ibu":3,"name":"Maibock","state":"Bayern"},{"abv":12,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":84,"name":"Dark Knight","state":"Minnesota"},{"abv":6.9000000954,"address":"7803 Ralston Road","category":"North American Ale","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":112,"name":"IPA","state":"Colorado"},{"abv":5.9000000954,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":1,"name":"Censored (aka The Kronic)","state":"California","website":"http://www.lagunitas.com/"},{"abv":12.673306365729806,"address":"5775 Lower Mountain Road","category":"North American Lager","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":33,"name":"Lager","state":"Pennsylvania"},{"abv":5.0999999046,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Pilsener is a light bodied American Wheat Beer that is judiciously hopped with Cascade and Tettnang hops. \"Dry-Hopping\" imparts the distinctive hop aroma and finish. Look for a smooth, crisp taste and brilliant golden color. Enjoy!","ibu":115,"name":"Saranac Golden Pilsner","state":"New York","website":"http://www.saranac.com"},{"abv":7,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"Great chocolate stoudt.","ibu":3,"name":"Cocoa Loco","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":10.126202641081186,"address":"1398 Haight Street","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":43,"name":"Golden Bitter","state":"California","website":"http://www.magnoliapub.com/"},{"abv":2.1690782286668253,"address":"16 East Route 66","category":"North American Ale","city":"Flagstaff","coordinates":[35.1973,-111.648],"country":"United States","ibu":119,"name":"Agassiz Amber","state":"Arizona"},{"abv":2.4688724245900784,"category":"North American Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Chicago Fire","state":"Illinois"},{"abv":4.204019233423301,"address":"412 North Milwaukee Avenue","category":"German Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":71,"name":"Scapegoat Doppelbock","state":"Illinois"},{"abv":1.7806348389679316,"address":"45 South Barrington Road","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":54,"name":"Prairie Inn Pilsner","state":"Illinois"},{"abv":6.266857791057494,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":67,"name":"South Barrington Stout","state":"Illinois"},{"abv":9.844406909115794,"address":"25 North Madison St","category":"North American Ale","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":73,"name":"Calumet Amber","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":10.761788002424323,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":7,"name":"St. Paul Blond","state":"Antwerpen"},{"abv":4,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Our flagship brand! An amber Vienna-style lager beer that is smooth, mellow and full bodied, with delicate hop aroma. Uses two-row barley malt and caramel-roasted malt. Based on founder Tom Pastorius' favorite German bier.","ibu":81,"name":"Penn Pilsner","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.6999998093,"address":"2105 N. Atherton St.","category":"Other Style","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A light American wheat ale with the delicate aroma and flavor of apricot. ABV 4.7%","ibu":69,"name":"Apricot Wheat","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.942910311419439,"address":"8280-A Mira Mesa Boulevard","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":5,"name":"Christmas Ale","state":"California"},{"abv":6.878659515149767,"category":"North American Lager","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":10,"name":"Honey Weizen","state":"Oregon"},{"abv":12.412352665991845,"address":"1201 First Avenue South","category":"British Ale","city":"Seattle","country":"United States","ibu":14,"name":"Tilted Kilt Ale","state":"Washington"},{"abv":6.5,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":64,"name":"Dundee Export 90 Scotch Ale","state":"Nebraska"},{"abv":4.5999999046,"address":"1524 West Marine View Drive","category":"North American Lager","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":32,"name":"Hefe Weizen","state":"Washington"},{"abv":4.580919389528421,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":92,"name":"Trombipulator","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":11.893489781338525,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":10,"name":"Kronenbier","state":"Baden-Wrttemberg"},{"abv":5.5999999046,"address":"Piazza V Luglio, 15","city":"Piozzo","coordinates":[44.5153,7.8922],"country":"Italy","ibu":30,"name":"Wayan"},{"abv":6.5,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan pale ale brewed in the Grand Cru tradition. Enjoy its golden effervescence and gentle hop aroma. Coriander and Grains of Paradise round out the spicy palate, melting o so softly into a silken finish of hoppiness and bliss! Make any season a celebration!","ibu":109,"name":"Luciérnaga","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.5,"address":"121, rue de la Chapelle","city":"St-Sylvestre-Cappel","coordinates":[50.7975,2.5412],"country":"France","ibu":28,"name":"Gavroche French Red Ale","website":"http://www.brasserie-st-sylvestre.com/"},{"abv":13.645746028056374,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":73,"name":"Staghorn Oktoberfest","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":0.22277978779861818,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":71,"name":"Cheap Köln","state":"Wisconsin"},{"abv":1.034111921974834,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","ibu":44,"name":"Mariage Parfait 1995","state":"Vlaams Brabant"},{"abv":14.285959048486818,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":87,"name":"Scarlet Ale","state":"South Carolina"},{"abv":0.5587429574437919,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":37,"name":"Fox Tail Amber Ale","state":"Wisconsin"},{"abv":5.1999998093,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":25,"name":"American Pale Ale","state":"Wisconsin"},{"abv":13.255128930567995,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":64,"name":"Brown","state":"Wisconsin"},{"abv":12.66652133671139,"category":"North American Lager","city":"Wilmington","coordinates":[34.2257,-77.9447],"country":"United States","ibu":14,"name":"Golden Lager","state":"North Carolina"},{"abv":0.8812681603097605,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":25,"name":"Amber Ale","state":"California"},{"abv":8.5,"address":"235 Grandville Avenue SW","category":"British Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Founders flagship beer. Dirty Bastard is an absolute beautiful beer to behold. Dark ruby in color and brewed with ten varieties of imported malts this beer continuously lives up to its reputation as a bold and powerful ale. Dirty Bastard is complex in the finish with hints of smoke and peat paired with a malty richness, finalized with a good bit of hop attitude. This beer ain't for the wee lads.","ibu":4,"name":"Dirty Bastard Scotch Style Ale","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":4.3000001907,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"An abundance of fresh, natural fruit flavor makes this beer something special. You would think we picked the fruit moments before brewing.","ibu":51,"name":"Smashing Berry Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5,"address":"AB43 8UE","category":"British Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":50,"name":"The Physics","website":"http://brewdog.com/"},{"abv":2.0330663755508116,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"A light copper body low bitterness with good hop flavor. This is my impression of what the English troops may have been drinking when they occupied India. The pale ale they drank had mellowed considerably. The wooden casks had spent many months traveling on ships and long inland journeys to the troops, where they were then tapped and enjoyed.","ibu":103,"name":"Rock Art IPA","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":5,"address":"35 Fire Place","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A hearty sip of the Santa Fe Stout delights one’s taste buds first with a generous Irish serving of roast malt that rolls off the tongue with a creamy bitterness reminiscent of the finest coffee. Supported by the complex, yet light body only possible with a good Irish yeast strain, this coffee-like creaminess eventually yields to the warmth of a subtle variety of hops, and their mild, full flavor. A favorite with regular customers, this rare brew can occasionally be found on draft at restaurants in Santa Fe, but is more likely on tap at the Brewery's tasting room. Despite its intimidating dark color, this brew has an uncanny ability to convert those who claim not to like beer. The balance of flavors and complexity of aroma are recognized and appreciated by all who taste this fine brew.","ibu":78,"name":"Santa Fe Stout","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":13.172979525929602,"address":"195 Ottley Drive","category":"Irish Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"This is a classic American Porter, poured on tap it has a good head that stays and leaves a nice lace. It is defined by its chocolate malt, medium body, and smooth mouthfeel. Balanced by the Golding and Columbus hops on the finish is a hint of bitterness. \n\nDon’t be afraid of the dark.","ibu":44,"name":"Exodus Porter","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":9,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":98,"name":"Goose Island Imperial IPA","state":"Illinois"},{"abv":8.5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"To commemorate the 30th anniversary of Specialty Imports' specialty wine and beer import business, Midnight Sun Brewing Company brewed a very special beer--a black double IPA--to honor this Alaska company's long-term success. \n\n\nThis black double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \"Specialty Beer\" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale.\n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 01/16/2009)\n\n\n** An oak-aged version will be released in Fall 2009.","ibu":81,"name":"Specialty Beer: Black Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5999999046,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Portsmouth is a colonial era seaport town, so it goes to follow that sooner or later we'd brew an India Pale Ale as a tribute to those big, hoppy 19th century ales that made the long sea voyage from England's temperate shores, 'round the Cape of Good Hope, to the sultry climes of the faraway East Indies.\n\n\nBut there's another reason we brewed this beer, one that's closer to our home and hearts. Hopheads. \n\n\nTen years ago we brewed our first batch of Shoals Pale Ale, our American interpretation of the traditional British ESB (Extra Special Bitter) style. At the time, it was widely considered to be darned hoppy. However, a funny thing happened over the last decade - our Shoals Pale Ale didn't change; beer lovers did, and we started to hear more and more: “Why don't you guys make a really hoppy beer?”\n\n\nYou could say, then, that Smuttynose IPA is a physical salute to the glory of the American hop grower. The citrusy hop flavor coming from a mixture of Simcoe and Santiams is pleasantly balanced by a smooth bitterness from the Amarillo hops. The beer itself is light bodied and crisp with a golden color that will throw a slight haze, as we bottle it unfiltered. At 65 IBU's, this is definitely not a training-wheels IPA, but is meant for hop lovers looking to satisfy their craving in a way that's not easy to find. We think they’ll be quite pleased.","ibu":49,"name":"Smuttynose Finestkind IPA","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":3.7999999523,"address":"281 Heinlein Strasse","category":"British Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Don't let the name scare you, this is an easy drinker, slightly sweet and bitter.","ibu":109,"name":".38 Special Bitter","state":"Michigan"},{"abv":7,"address":"Walplein 26","category":"Belgian and French Ale","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","description":"Besides the goldenblond ale, a darker version of the townbeer has been created : Brugse Zot double, with 7,5 % Vol alc. It is brewed with 6 special kinds of malt, which give the beer a rich taste. The worldly renowned Tcheque Saaz hop from Zatec has been chosen to give the beer this unique bitter note. Brugse Zot double is a fill and stronger beer, highly appreciated by the beerlovers.","ibu":55,"name":"Brugse Zot Double","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":10,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A rich and very dark Imperial Stout that has a complex flavor profile with hints of molasses and caramel. Brewed in July to allow time for aging, Sick Duck finishes very smooth for such a big beer.","ibu":15,"name":"Sick Duck Imperial Stout","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":8.5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Imperial IPA is part our new High Peak Series, a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial IPA is brewed with 10 different malts and 10 different hops to make a delectably flavorful and complex Imperial IPA - at 85 IBU's and 8.5 % alc/vol.","ibu":69,"name":"Saranac Imperial IPA","state":"New York","website":"http://www.saranac.com"},{"abv":5.4000000954,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Nut Brown Ale's soft mellow malt character is rich and smooth with a medium body. Look for hints of toasted malt flavor, slight hop bitterness and amber brown color.","ibu":77,"name":"Saranac Nut Brown Ale","state":"New York","website":"http://www.saranac.com"},{"abv":11.994337627046306,"address":"Schlossalle 1","city":"Moos","country":"Germany","ibu":80,"name":"Bavarian Dark Wheat Beer","state":"Baden-Wurttemberg","website":"http://www.arcobraeu.de"},{"abv":10,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Created to celebrate Clipper City’s 10th Anniversary – extremely limited and “vintage” dated – this extravagantly malty barley wine will show well upon release but continue to evolve for years. Seasonally available in December while supplies last. Voted #1 beer by Mahaffey’s Pub.","ibu":60,"name":"Below Decks","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.5,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":116,"name":"Jade"},{"abv":9.458205912870385,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":33,"name":"Frostbite","state":"South Carolina"},{"abv":6,"address":"929 North Russell Street","category":"North American Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"Broken Halo IPA is a beer produced in the spirit of traditional IPA products shipped from the UK to India in the late 1800s. The almost excessive amounts of Cascade and Columbus hops used in Broken Halo give it notable citrus and grapefruit aromas and flavors. The beer bitterness measures high but tastes smooth due to the full-bodied, Caramel malt sweetness. The finish is juicy, clean, and short lived. A devilishly bold, heavenly smooth India Pale Ale.","ibu":59,"name":"Broken Halo IPA","state":"Oregon"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Free spirited Panty Peeler pours rambunctiously into your glass, releasing its engaging aroma. Curacao (bitter) orange peel and coriander create a beautiful yet bolder tripel by infusing color, citrus and spice. Belgian yeast adds playful character. Bottle conditioning assures a perfectly heady experience.\n\n\nBrewed as a Belgian tripel but with American boldness, Panty Peeler is delicious yet spirited. Originally named Extreme Polar White Bier, it got nicknamed \"Panty Peeler\" along the way. Then we translated it to French for a while: E'pluche-culotte. Now we're back to calling it Panty Peeler and we've kicked up the coriander and orange peel to represent its original design.\n\n\nAvailability:\n\nAK - 22-oz bottles (year-round) and draft (on occasion)\n\nOR - 22-oz bottles (year-round)","ibu":3,"name":"Panty Peeler Tripel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"1340 East Eighth Street #103","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"One of a kind ale. Brewed with 600 pounds of Arizona grown Medjool Dates added to the kettle. 1998 Gold Medal GABF. Alcohol content varies as every brew is slightly different. Usually very strong with sherry or port-like flavors. Brewed quarterly. Alcohol content approximately 7-9% by volume.","ibu":105,"name":"Blind Date Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.9000000954,"address":"Ole Steensgt. 10 Postboks 1530","category":"German Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"The Aass Bock is a dark \"lager\" also produced in accordance with the \"Purity law\". \n\n\nThe malted barely is produced in the Scandinavian countries. It is a combination of bayer-, color- and caramel malt. \n\n\nWe use the very best of hops from the Hallertau area in Germany, and the water is pure Norwegian mountain water. \n\n\nThe Aass Bock is largered at cool temperatures, and it is allowed to mature for as long as 6 months before bottling. \n\n\nThe beer is sold in a caracteristic nice-looking green bottle containing 11.2 fl. oz or 330 ml.","ibu":11,"name":"Bock Beer","website":"http://www.aass.no"},{"abv":4.5,"address":"2423 Amber St","category":"North American Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"This is a real drinkin' beer! - a golden session ale that boasts both a European birthright and a thirst-quenching Philadelphia sensibility. Ke n zinger is refreshingly crisp and smooth, with a spirited flavor that grabs the attention of taste buds everywhere. Get some!","ibu":13,"name":"Kenziger","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":1.9153071105830533,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":46,"name":"Summer Brau","state":"California"},{"abv":4.855795235561869,"address":"14800 San Pedro Avenue","category":"German Lager","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","ibu":115,"name":"Wicked Springfest","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":9.633714134562151,"category":"North American Ale","city":"Wauwatosa","coordinates":[43.0495,-88.0076],"country":"United States","ibu":71,"name":"Rainbow Red Ale","state":"Wisconsin"},{"abv":9.566369733474952,"address":"42 Slateford Road","city":"Edinburgh","coordinates":[55.9358,-3.2297000000000002],"country":"United Kingdom","ibu":83,"name":"Double Dark","state":"Scotland"},{"abv":5.3000001907,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Arrr this be a dark beer with strong notes of coffee and chocolate flavors.","ibu":19,"name":"Pirate's Porter","state":"Michigan"},{"abv":5.183016704552546,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":55,"name":"Lilja's Hop Nest Monster","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":5,"address":"254 Wilkins Street","category":"North American Ale","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"Our golden American ale has a crisp body and slightly dry, hoppy finish. This is a real treat for the beer lover. Pale, wheat and torrified wheat malts are used with Northern Brewer and Mt. Hood hops.","ibu":111,"name":"Whitetail Golden Ale","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":12.699999809,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Vicious and viscous, this menacing brew pours opaque black with a creamy maduro-colored head. Its aroma offers seductive whiskey, chewy red wine, dark fruit and lavish tobacco. Berserker Imperial Stout invades your taste buds with in-your-face flavor. Weighing in at almost 13% alcohol by volume, Berserker is completely out-of-control. Give it a good fight.\n\n\nThis version of Berserker Imperial Stout was aged in both red wine and whiskey barrels. The entire batch was brought back together before being packaged in kegs and 22-oz bottles.","ibu":100,"name":"Berserker Imperial Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":8.5,"address":"Rue de Panneries 17","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A limited production, spiced Christmas ale available during the cold-weather months. (across the northern hemisphere)\n\nAbbye St. Martin Ales are pure Belgium.","ibu":25,"name":"Abbaye de Saint-Martin Cuvée de Noel","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":10,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":53,"name":"Apocalypse Cow","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Inspired by West Coast I.P.A.'s, but brewed with Michigan style. The Crooked Tree is heavily dry hopped to give it a big aroma of pine and citrus. The flavors are big, yet very balanced between fresh hops and malt. Often described as \"grapefruit\" our hops give this beer an excellent fruit flavor that finishes dry, crisp, and clean. It will pour a nice deep copper color with a bit of haziness. Because of our almost patented \"Intense Transfer Methods\" our Crooked Tree has won several medals in the India Pale Ale category.","ibu":33,"name":"Crooked Tree IPA","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":4.5,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our red is a special bitter. This means it has medium body and mild bitterness. These balance well with the rich copper color. We use American hops.","ibu":31,"name":"Trail Ridge Red","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":6.5999999046,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Our namesake IPA is a Northwest classic. Generous additions of Amarillo, Centennial, and Ahtanum hops find their way into the kettle, hop-back, and dry-hop. This judicious use of the \"brewers spice\" creates rich and resinous flavors of citrus fruit and pine. The finest organic Canadian pilsner malt and organic German Munich and Caramunich malts then bring balance to your new favorite beer.","ibu":105,"name":"Hopworks IPA","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":6.129852979603005,"address":"2100 Locust Street","category":"German Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":85,"name":"Baracktoberfest","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":13.18259187234166,"category":"North American Lager","city":"Qingdao","coordinates":[36.0663,120.383],"country":"China","ibu":29,"name":"Red Dragon Xtreme","state":"Shandong"},{"abv":5.5,"address":"79 North Eleventh Street","category":"North American Lager","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Please enjoy Brooklyn Oktoberfest, a rich, malty version of the beer brewed for the fall festival which originated in Germany with the betrothal of the Crown Prince of Bavaria in 1810. Brooklyn Oktoberfest is in the marzen style, an amber lager beer brewed in March and stored cold through the summer for sale in autumn.","ibu":80,"name":"Oktoberfest","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":9,"address":"127 Elm St., Unit C","category":"British Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":98,"name":"Bagpiper's Scottish Ale","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":36,"name":"Andelot Euphorique","state":"Oost-Vlaanderen"},{"abv":2.2089058378085227,"address":"180 - 14200 Entertainment Boulevard","category":"North American Lager","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":92,"name":"Vienna Lager","state":"British Columbia"},{"abv":10.63626954587983,"address":"Brandschenkestrasse 150","category":"German Ale","city":"Zrich","coordinates":[47.3642,8.5245],"country":"Switzerland","ibu":73,"name":"Löwen Weisse"},{"abv":7.9704552622036005,"address":"Dominikanerstrae 6","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":72,"name":"Aecht Schlenkerla Rauchbier Märzen","state":"Bayern"},{"abv":12,"address":"Franseplaats 1","city":"Nijmegen","coordinates":[51.8486,5.8639],"country":"Netherlands","ibu":43,"name":"Nieuw Ligt Grand Cru 2006"},{"abv":6.023259866375624,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","description":"0","ibu":24,"name":"Pale Ale \\\"á la Bushner\\\";\"3","state":"Wisconsin"},{"abv":7.602450786676362,"address":"800 LaSalle Plaza","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":33,"name":"Saison Goux","state":"Minnesota"},{"abv":13.570583452800824,"city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":25,"name":"Helles Naturtrub","state":"Nordrhein-Westfalen"},{"abv":7.2817047775800035,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":111,"name":"Mönchshof Original Pils","state":"Bayern"},{"abv":5.028314873311144,"address":"1525 St. Charles Avenue","category":"North American Lager","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":107,"name":"Lager","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":9.277499167065779,"address":"1500 Jackson Street","category":"North American Ale","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":44,"name":"Voyageur Extra Pale Ale","state":"Minnesota"},{"abv":5.5,"address":"425 South Melrose Drive","category":"German Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":44,"name":"Sweet Spot Hefe","state":"California"},{"abv":8.196373635896949,"address":"316 Main Street","category":"German Lager","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":64,"name":"Marzen Lager","state":"Iowa"},{"abv":4.3000001907,"address":"50 N. Cameron St.","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This Braggart Mead styled ale is light and refreshing with an essence of orange blossoms, pear, and honey in the aroma and a balanced fruity and clean finish. \n\n\nThis style was developed by our Brewmaster to have the perfect carbonation and crispness on our summer’s hot and humid Pennsylvania days.","ibu":97,"name":"Sophie's Sparkling Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.6233370361058552,"category":"Irish Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":9,"name":"Porter","state":"Nebraska"},{"abv":1.7816196625749492,"address":"10-1 Ginza 7-chome, Chuo-ku","category":"German Lager","city":"Tokyo","country":"Japan","ibu":110,"name":"Imported Black Stout Draft","state":"Kanto"},{"abv":14.877191179933192,"category":"North American Lager","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":86,"name":"Hefe Weizen","state":"Oregon"},{"abv":10.94168419754647,"category":"North American Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":4,"name":"Yellow Rose Cream Ale","state":"Texas"},{"abv":1.965657965950094,"category":"Other Style","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":0,"name":"Raspberry Weizen","state":"Oregon"},{"abv":14.199479994015583,"category":"North American Ale","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":7,"name":"Stout","state":"California"},{"abv":11.50375409012604,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":77,"name":"Burton Pale Ale","state":"California"},{"abv":3.4819575214786225,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":25,"name":"Founders Light","state":"Illinois"},{"abv":7.55123777871741,"address":"636 Massachusetts","category":"North American Ale","city":"Lawrence","coordinates":[38.9718,-95.2357],"country":"United States","ibu":62,"name":"Old Backus Barleywine 1997","state":"Kansas","website":"http://freestatebrewing.com/"},{"abv":4.431645930567532,"address":"Kreuzstrae 4-10","category":"North American Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":91,"name":"Obergärig / Münster Alt","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":6.381451815207381,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Strawberry Harvest Lager is a wheat beer made with real Louisiana strawberries.","ibu":76,"name":"Strawberry","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5.8000001907000005,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A new version of an American classic. Our Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast.","ibu":55,"name":"Pale Ale","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":7.5,"address":"254 Wilkins Street","city":"Morrisville","coordinates":[44.5693,-72.6034],"country":"United States","description":"“Robust, Dark and Smooth, hold on to your hat cause you’ll lose your feet on this one!” Brewed with pale, dark crystal, Munich, flaked barley, black and chocolate malts. Hops include Cascade, Crystal, Challenger and Perle.","ibu":30,"name":"Ridge Runner Barley Wine","state":"Vermont","website":"http://www.rockartbrewery.com/"},{"abv":8,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"The Andygator is a fearsome beast...much too big for any little bottle. Don't let his toothy grin, slightly sweet flavor and subtle fruit aroma fool you: this cold-blooded creature is a Helles Doppelbock that can sneak up on you. Sip, don't gulp and taste the wild of Abita Andygator","ibu":100,"name":"Andygator","state":"Louisiana","website":"http://www.abita.com/"},{"abv":7,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #20 has been dubbed Apollo Imperial Ale because of our experimentation with a new hop variety.\n\n \n\nApollo hops are high alpha acid with an intense aroma. Married with other high alpha hops, with almost two pounds of hops added per barrel produced, AIA has an intense staying power in the back of the throat. After a long discussion between Chris, John and the brewers, they dubbed this hop flavor stinky grapefruit with a hint of perfume. The dark color might lead you to believe the some malt may shine through; but no, the hops are the true player in this ale.\n\n \n\nScratch #20 has a dual role, also serving at The Drafting Room’s Anniversary Ale for 2009. We brewed a bit more to serve the brewery and The Drafting Room, but get it while when you see it. Before this intense hop flavor subsides, this beer will be sold out.","ibu":99,"name":"Scratch #20 2009 Apollo Imperial Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":1.8745182390898785,"address":"101 Ehalt St.","category":"North American Ale","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":44,"name":"Canvas Back American Pale Ale","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":5.612566241906059,"address":"100 West Main Street PO Box 432","category":"Irish Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Named for our beloved State Park this Robust Porter draws its uniquely enticing roasted character from a thoughtful combination of malts. Generous hop additions ensure a satisfying beer drinking experience.","ibu":94,"name":"Poe Paddy Porter","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":3.2000000477,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A British-style mild ale. Milds are a common ale type in England where session ales are lower in alcohol but not low on flavor. Ours has a strong malt backbone and is very quaffable.","ibu":4,"name":"Arthur's Mild Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"An epic barleywine, made in the tradition of British Farmhouse Brewing. Lavished with a velvety blend of six different malts this is a warming beer with a lush mouthfeel. The complexities your discriminating palate will detect are ever changing as this barleywine matures. When young, an assertive hop character predominates and with age the beauty of the big malt balance unfolds.","ibu":57,"name":"Druid Fluid","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":11.756180216219985,"address":"636 East Main Street","category":"German Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"It is a good clean hefe.","ibu":95,"name":"Cask Hefe","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":5.3000001907,"address":"811 Edward Street","category":"North American Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Brewed with a special blend of domestic and Belgian malts for a delicate nut-like character, you'll love this Lager's rich taste and signature hop aroma. The exceptional full-bodied taste reflects our Brewery's extraordinary commitment to brewing beers of the highest standard of quality.","ibu":31,"name":"Saranac Season's Best","state":"New York","website":"http://www.saranac.com"},{"abv":11.800996784573751,"address":"310 Commercial Drive","category":"Other Style","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"These authentic Belgian-style ales are intensely sour, dry and complex. All three of the lambics - Raspberry, Blackberry and Black Cherry - are aged in oak casks for more than one year. 15 kg, give or take, of whole unpasteurized fruit is added to each 200 litre oak barrel of fermented beer. The naturally occurring wild yeasts cause a second, slow fermentation, breaking down the fruit sugars to total dryness.","ibu":26,"name":"Fruit Lambics","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":0.3093869152852935,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":56,"name":"Bare Knuckle Stout","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5999999046,"address":"One Busch Place","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Originally known as \"B to the E\";\"0","ibu":20,"name":"Bud Extra","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"category":"North American Lager","city":"Skopje","coordinates":[42.0038,21.4522],"country":"Macedonia, the Former Yugoslav Republic of","ibu":94,"name":"Skopsko","website":"http://www.pivaraskopje.com.mk/"},{"abv":4.5,"address":"544B W. Liberty St.","category":"North American Lager","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"Frank Duveneck was a famous Cincinnati painter who produced such masterpieces as Whistling Boy andOld Man In a Fur Cap. Our Dortmunder is a medium- bodied golden lager showcasing a delicious malt profile balanced with Noble German hops. This beer is designed to satisfy even the stodgiest of old beer curmudgeons!","ibu":37,"name":"Duveneck's Dortmunder","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.8000001907000005,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":57,"name":"Railyard Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.0999999046,"address":"Beukenhofstraat 96","city":"Vichte","coordinates":[50.8322,3.3884],"country":"Belgium","ibu":45,"name":"Vichtenaar","state":"West-Vlaanderen"},{"abv":13.111259065824068,"address":"14 East Railroad","category":"North American Ale","city":"Kearney","coordinates":[40.6954,-99.0812],"country":"United States","ibu":29,"name":"Stout","state":"Nebraska"},{"abv":1.254406739655335,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":98,"name":"Light","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.5,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":37,"name":"Yellowjacket Pale Ale","state":"Washington"},{"abv":5.5,"address":"1514 NW Leary Way","category":"Irish Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":65,"name":"Nightwatch Dark Ale","state":"Washington"},{"abv":11.582196224129538,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":101,"name":"Schimmele Hefe Pils","state":"Baden-Wrttemberg"},{"abv":4.92805219698675,"address":"1110 Westloop Center","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":11,"name":"Bovine Belgian Winter Ale","state":"Kansas"},{"abv":7.673292520885655,"address":"7474 Towne Center Parkway #101","category":"German Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":107,"name":"EOS Hefeweizen","state":"Nebraska"},{"abv":5.9000000954,"address":"2501 Southwest Boulevard","category":"Other Style","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Nutcracker Ale is Boulevard’s holiday gift for real beer lovers. This hearty, warming brew is a classic winter ale, deep amber in color, with hints of molasses balanced by the “spiciness” of freshly harvested Chinook hops.","ibu":105,"name":"Nut Cracker Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.586296008545546,"address":"Kendlerstraße 1","category":"German Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","ibu":41,"name":"Columbus Bock","website":"http://www.stieglbrauerei.at/"},{"abv":8.712184285866673,"address":"233 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":36,"name":"Sheepshead Stout","state":"Wisconsin"},{"abv":6.397290167464337,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":6,"name":"Adler Bräu Cherry Creek Cherry Flavored Lager","state":"Wisconsin"},{"abv":5.1999998093,"address":"445 St.Paul Street","category":"North American Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":40,"name":"Genesee Cream Ale","state":"New York"},{"abv":4.409898655159827,"address":"12105 North Center Avenue","category":"North American Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":6,"name":"Whiskey Stout","state":"Oregon"},{"abv":3.0645699149851167,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":94,"name":"Christmas Ale","state":"Illinois"},{"abv":14.214260674603569,"address":"Westgate Street","category":"British Ale","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":59,"name":"Olde Suffolk","state":"Suffolk"},{"abv":4,"address":"639 Conner Street","category":"North American Ale","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":73,"name":"Whose Ear? Red Ale","state":"Indiana"},{"abv":7.045406476493574,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":2,"name":"Caber Tossing Scottish Ale","state":"Wisconsin"},{"abv":9.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Brewed in the style of a Russian Imperial Stout. Strong, chocolatety and aggressively hopped with finest English hops.","ibu":22,"name":"Dragonslayer","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":14.442654797251631,"address":"16 North Brown Street","category":"North American Lager","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":29,"name":"Aussie Lager","state":"Wisconsin"},{"abv":5.1999998093,"address":"Chelsea Piers, Pier 59","city":"New York","coordinates":[40.7457,-74.0086],"country":"United States","ibu":39,"name":"Checker Cab Blonde Ale","state":"New York","website":"http://chelseabrewingco.com/"},{"abv":5.793872429031896,"address":"Eigelstein 41","city":"Kln","coordinates":[50.9465,6.9563],"country":"Germany","ibu":56,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":7.1999998093,"address":"Grntenstrae 7","category":"German Lager","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":37,"name":"Doppel-Hirsch Bavarian-Doppelbock","state":"Bayern"},{"abv":2.1168456444488326,"address":"146 Snelling Avenue North","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":70,"name":"Sligo Red","state":"Minnesota"},{"abv":11.5,"address":"56 Market Street","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","ibu":83,"name":"Wheat Wine","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":9.1999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","description":"Hoppy? Brother, 471 IPA redefines hoppy. 471 is a small batch, limited edition ale that was created by our Brewmaster to separate the weak from the strong. 471 is a double IPA, that combines Pale, Munich, Caramel-30, Carapils and Torrified Wheat malts, with Chinook, Centennial, Simcoe and Fuggles hops. It has a big sweet mouthfeel, followed by more hoppiness than you've ever had at one time. Enjoy.","ibu":91,"name":"471 IPA","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A West Coast IPA. Our original single IPA made with Simcoe and Amarillo hops “in harmony.” 1.065 OG 45 IBU 7%ABV","ibu":60,"name":"Duet","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5,"address":"2401 Tulane Avenue","category":"North American Lager","city":"New Orleans","coordinates":[29.9606,-90.0871],"country":"United States","description":"Inspired by old-world brewing methods, this bewitching all-malt brew is a darkly rich, exotic lager, crafted with a touch of magical New Orleans spirit.","ibu":85,"name":"Blackened Voodoo","state":"Louisiana"},{"abv":6.919978336002951,"address":"3301-B East Fifth Street","category":"German Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"A fall classic, our Oaktoberfest emphasizes rich malt flavor. We use German malt and hops to give it an authentic Bavarian character. The rich, maltiness of this brew is a good match with spicy cuisine, as well as barbecue. Live Oak Oaktoberfest will certainly raise the level of enjoyment at your next fall gathering. Available September - December","ibu":76,"name":"Oaktoberfest","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":10.390537692882862,"address":"101 Ehalt St.","category":"North American Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":7,"name":"Greensburg Lager","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":2.120718909103947,"address":"121 North Market St.","category":"Other Style","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":50,"name":"Captain Selin's Cream","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":6.6999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"We wanted to see if we could grow hops at our brewery in Chico, California so we planted our own hop field selecting our prized Cascade and Centennial varieties along with some specialty hop varieties to experiment with. To our surprise, we not only could grow hops, we were also able to harvest them in late summer due to Chico’s ideal climate. \n\n\nChico Estate Harvest Ale is one of the very few estate harvest ales produced anywhere in the world today. All the hops in the beer are grown naturally on the premises of our brewery in Chico. We pick the hops ourselves and then take them directly to the brew kettle, without being dried, just after picking so they retain nearly all of their natural oils and resins. It is made with Cascade, Centennial and Chinook hops. Until now, this beer has only been available in draft. Starting this year, we will be bottling it on a very limited basis, with plans to expand its availability as we expand our Chico hop field in the coming years.","ibu":43,"name":"Chico Estate Harvest Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Rahr's Red is a delicious, medium-bodied red lager. Notes of caramel with a sound malt character. Not too hoppy, very smooth.","ibu":102,"name":"Rahr's Red","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":3.2401257615042067,"category":"North American Ale","city":"Jacksonville","coordinates":[30.3617,-81.6966],"country":"United States","ibu":32,"name":"Lone Palm Ale","state":"Florida","website":"http://www.landsharklager.com/"},{"abv":13.357357765865723,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":24,"name":"Édition 2005","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":44,"name":"Super Natural Oatmeal Stout","state":"Oregon"},{"abv":9.884649789472755,"address":"1415 First Avenue","category":"North American Lager","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":18,"name":"Weisse","state":"Washington"},{"abv":10.422097218437479,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":21,"name":"Pale Ale","state":"Washington"},{"abv":4.9000000954,"address":"1253 Johnston Street","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":6,"name":"Johnston Pilsener","state":"British Columbia"},{"abv":10.829928927048458,"address":"4301 Leary Way NW","category":"British Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":67,"name":"Wee Heavy Winter Ale","state":"Washington"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":28,"name":"Grand Cru 2006","state":"California","website":"http://alesmith.com/"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":78,"name":"Harvest Ale 2005 (Whisky)","state":"Manchester"},{"abv":8,"address":"Hollselund Strandvej 74","category":"Irish Ale","city":"Tisvildeleje","coordinates":[56.0746,12.1161],"country":"Denmark","ibu":3,"name":"Porter"},{"abv":14.327327034823202,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":119,"name":"Alt","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":3.9054436714705187,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":97,"name":"Jasper Lyte","state":"Michigan"},{"abv":8.116320358932205,"address":"100 Little Dam Road","category":"North American Lager","city":"Dillon","coordinates":[39.6282,-106.059],"country":"United States","ibu":72,"name":"Dam Straight Lager","state":"Colorado"},{"abv":13.543945279075825,"address":"412 North Milwaukee Avenue","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":31,"name":"Güdenkrisp Kölsch","state":"Illinois"},{"abv":5.1999998093,"address":"115 S. Fifth St.","category":"North American Ale","city":"Columbia","coordinates":[38.95,-92.3323],"country":"United States","description":"A great summer fruit beer, with 168 pounds of blackberry puree added to a light ale base. The blackberries add a distinct purple haze, and hopping is light to allow the berries to be the featured flavor. The ABV is 5.2% and hop bitterness is 22 BU's.","ibu":36,"name":"Blackberry Ale","state":"Missouri","website":"http://www.flatbranch.com"},{"abv":3.500912818612678,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","ibu":21,"name":"Strawberry Harvest Lager","state":"Louisiana","website":"http://www.abita.com/"},{"abv":4.5999999046,"address":"1705 Mariposa Street","category":"Other Style","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","description":"Anchor Summer is the first American wheat beer in modern times. Our first brew of this light and refreshing beer was in the summer of 1984.\n\n\nAnchor Summer is an all-malt beer, and over 50% of its malt comes from malted wheat. It is fermented with a Triticum aestivum, AKA wheat traditional top-fermenting \"ale\" yeast because we prefer the clean flavors developed by this yeast. We believe that this style best celebrates the refreshingly light flavor of malted wheat. You may notice that the head on this beer is unusually abundant, with a consistency similar to whipped egg whites. This is due to protein contributed by the wheat.\n\n\nThe brewers at Anchor are proud to have revived not only rich hearty dark beers, but also this light crisp style of a modern American wheat beer.\n\n\nSummer getaway Wheat malt contributes to an unusual lightness and dryness to the palate, and this—combined with the distinctive flavor of the wheat—makes for a perfect thirst-quenching beverage. It is the ideal drink for beer lovers who appreciate tradition and character in their beer, but also seek a lighter, refreshing style, perfect for warm weather.\n\n\n-http://www.anchorbrewing.com/beers/summerbeer.htm","ibu":96,"name":"Anchor Summer Beer","state":"California"},{"abv":7.8000001907000005,"address":"2401 Blake St.","category":"Irish Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Gonzo Imperial Porter is deep and complex. This turbo charged version of the Road Dog Porter is mysteriously dark with a rich malty body, intense roasted flavors, and a surprisingly unique hop kick. With Gonzo weighing in at 7.8% ABV, it will bite you in the ass if you don't show it the proper respect.","ibu":119,"name":"Gonzo Imperial Porter","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":6.1999998093,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"At the request of you hopheads, we produced this I.P.A. with a deep golden color, plenty of hop bitterness balanced by malt sweetness. Because of the extensive dry hopping, there's a floral and citrus hop finish. It's then lightly filtered to maintain the appropriate body and flavor. The beer features a combination of American, English and German malts to balance the large amount of hops. The HopFish also uses three hop varieties at five different times and has been dry-hopped for two weeks with 22lbs of Nugget whole leaf hops.","ibu":78,"name":"HopFish IPA","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6.13042275505109,"address":"124 Manhattan Beach Boulevard","city":"Manhattan Beach","coordinates":[33.8844,-118.411],"country":"United States","ibu":19,"name":"Blonde","state":"California"},{"abv":0.01698463424802732,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":10,"name":"Carta Blanca","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":10.473630165542613,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":26,"name":"ESB","state":"California"},{"abv":10.64614665623051,"category":"North American Lager","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":88,"name":"Pilsner","state":"Texas"},{"abv":3.9800000191000002,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":74,"name":"Goudenband 1996","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":11.06583481605205,"category":"North American Ale","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":59,"name":"Pantown Pale Ale","state":"Minnesota"},{"abv":9.761858439874695,"address":"279 Springfield Avenue","category":"German Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":113,"name":"Octoberfest","state":"New Jersey"},{"abv":0.1195641115564472,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":88,"name":"Black River Brown","state":"New Jersey"},{"abv":5.0999999046,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":72,"name":"Meister Pilsener","state":"Hessen"},{"abv":5.466610757269467,"address":"57 Hamline Avenue South","category":"North American Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":70,"name":"Grand Marais Pale Ale","state":"Minnesota"},{"abv":14.899999619,"address":"5763 Arapahoe Avenue","category":"Belgian and French Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"The Beast is a seducer - accommodating, complicated, powerful, dark and created to last the ages. With a deep burgundy color and aromas of honey, nutmeg, mandarin orange and pineapple, this massive and challenging brew has flavors akin to a beautiful Carribean rum. Dates, plums, raisins and molasses are dominant in a rich vinous texture. Cellarable for 10+ years.","ibu":30,"name":"The Beast Grand Cru","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":1.072008016126681,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":3,"name":"Kasota IPA","state":"Minnesota"},{"abv":7.1999998093,"address":"24 North Pleasant Street","category":"British Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber in color, full-bodied strong ale with a prominent malt flavor delicately balanced with Goldings hops. Made with a hint of molasses, this beer is usually on tap for Super Bowl with a keg or two of the previous year's batch.","ibu":110,"name":"Half in the Bagpipe","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":1.190974951738204,"address":"233 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":64,"name":"Pull Chain Pail Ale","state":"Wisconsin"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":115,"name":"Belgian Burgundy Ale","state":"Hainaut"},{"abv":4.5,"address":"800 Vinial St.","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A spring fest beer that is amber in color, Penn Märzen has full flavor and body. Highly rated by the National Beverage Tasting Institure.","ibu":26,"name":"Penn Marzen","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":7.1999998093,"address":"50 N. Cameron St.","category":"German Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The Maibock style was traditionally produced in the winter and released in early May to celebrate the coming of Spring. This malty lager is deep golden in color and medium in body. The finish holds a bold sweetness that is balanced by a subtle hop flavor and aroma. \n\n\nWe will be releasing this beer every spring in celebration of our Anniversary.","ibu":77,"name":"Anniversary Maibock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":7.777601689623488,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":28,"name":"Ice","state":"Ontario"},{"abv":10.561221377806742,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":16,"name":"Stout","state":"California"},{"abv":1.6561026534899426,"address":"2920 North Henderson Ave","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":9,"name":"Cask Scotch Ale","state":"Texas"},{"abv":3.9000000954000003,"address":"2522 Fairway Park Drive","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A refreshing, flavorful filtered wheat beer. The perfect beer to accompany a meal or for a summer's day. The wheat contributes a lighter flavor while maintaining a rich body. The beer has a light hop profile -- just enough to give the beer balance and complexity. The light fruitiness is derived from a Kölsch yeast strain. A chill haze may be present, which is a characteristic of wheat beers. \n\n\nSaint Arnold Texas Wheat is best consumed at 40-45° Fahrenheit.","ibu":5,"name":"Saint Arnold Texas Weat","state":"Texas","website":"http://www.saintarnold.com"},{"abv":8.6000003815,"category":"British Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":49,"name":"Strong Scotch Ale","state":"Nebraska"},{"abv":5.6999998093,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish.","ibu":28,"name":"Sly Rye Porter","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.842800930116126,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Free Loader Double Red IPA was \"double-brewed\". [How's that for a catchy term that those BiG brewers can't TouCH. I love it, LoVe it, LOVE it.] The first batch of red IPA was mashed, sparged, and transferred to the kettle. The second batch of red IPA was mashed, sparged and transferred to the kettle using the sweet wort from batch one as its mash \"water\". Hmmm...using \"beer\" to make beer. Hence the name FREE LOADER. This Double Red IPA is just that--big, red, hoppy.","ibu":80,"name":"Free Loader Double Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.0712254062218796,"address":"130 W Gurley St","category":"Irish Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":109,"name":"Petrified Porter","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":5.5,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"By using an exact amount of rye, a grain seldom found in other micro brewed beers, the Rye Pale Ale acquires its signature taste. Made with five varieties of hops and a generous amount of specialty malts, it offers a complex flavor and aroma that is both aggressive and well balanced – a rare find among beers.\n\n\nThe Terrapin Rye Pale Ale was released in Athens, GA in April of 2002 at the Classic City Brew Fest. Six months later this beer which was sold only in Athens was awarded the American Pale Ale Gold Medal at the 2002 Great American Beer Festival, the most prestigious competition in North America. We hope you will agree with our peers in the brewing industry that this is truly one of the best pale ales in the country.","ibu":94,"name":"Terrapin Rye Pale Ale","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":7.5,"address":"35 Fire Place","category":"Belgian and French Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Viszolay is a distinctly continental ale with a hint of the southwest. Belgian malt, Bavarian and Czech hops, and a secret blend of German and Belgian yeast strains provide this beer, inspired by the Trappist’s Dubbel style ale, with a strong traditional base, while a hint of New Mexico wildflower honey infuses it with that ethereal quality that we New Mexicans simply call, “enchanting”. Like the Trappist ales from which it sprung, Viszolay is light and refreshing. The hop’s subtle notes are overpowered by complex fruity flavors derived from the Belgian yeast, leaving Viszolay a very drinkable (yet rather potent) addition to the Santa Fe Brewing Company’s family of beers.","ibu":42,"name":"Viszolay Belgian","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":6.3299999237,"address":"104 Mill St.","category":"North American Ale","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"This American style amber ale will be our opening release and house beer for SCBC. AmericAle is smooth and diverse all in one shot. With a medium malt body and fresh hop aroma we hope you enjoy drinking it as much as we do making it.","ibu":9,"name":"South County American Ale","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":5.1999998093,"address":"1214 East Cary St","category":"British Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"If you don’t do dark beers, do yourself a favor and cancel that policy for this Oatmeal Stout. Keywords: Sweet Lusciousness; Roasty chocolate. Served on a nitro tap.","ibu":118,"name":"Richbrau Oatmeal Stout","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":13.270143191167827,"address":"RR 1 Box 185","category":"German Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"A German style lager. Light in color, with medium to full body and mild hop bitterness.","ibu":111,"name":"Mountaineer Maibock","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":5.0999999046,"address":"901 S. Bond St.","category":"North American Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"This medium bodied amber ale has a smooth, malt character with a hint of roasted (dark) malt flavor. This beer has just enough hops to balance and goes well with many foods.","ibu":82,"name":"Misfit Red","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5.5999999046,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":42,"name":"Gordon Biersch Czech Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":6.0999999046,"address":"540 Clover Lane","category":"North American Lager","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A German-style Munich Duenkle. Dark and smooth. Release date: February 1.","ibu":30,"name":"Dark Lager","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":13.60299746855107,"ibu":18,"name":"Beeston Chocolate, Black, Munich and Carastan malts. Perle and Centennial hops. Mocha Porter is available in a 12-ounce 6-pack, the classic 22-ounce bottle, and on draft.\""},{"abv":5,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our version of the traditional Irish Amber Ale. This beer combines the richness of German and Austrian malts with the delicate and spicy British hops for a taste worthy of the Red Rose City.","ibu":68,"name":"Celtic Rose","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":11.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Back by popular demand, our original \"Wild Dog Release\" is back, and this time it's for good. Double Dog Double Pale Ale is a generously hopped ale with a deep red color and pours with a nice frothy head. The abundance of hops will conjure some provocative aromas with hints of raisins and citrus.","ibu":56,"name":"Double Dog Double Pale Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"This beer is brewed in the Belgian Saison style (country farm house ale). A potent yet delicate ale, brewed with a unique Belgian yeast which develops a spicy, fruity flavor. Enormously complex. Available from May to around August.","ibu":18,"name":"Red Sky at Night","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":5.3000001907,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":108,"name":"Pilsner","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":9,"address":"St Lievensplein 16","city":"Sint-Lievens-Esse","coordinates":[50.8564,3.8845],"country":"Belgium","ibu":84,"name":"Kerst Pater Special Christmas Beer","state":"Oost-Vlaanderen"},{"abv":5.123929865582541,"address":"Hauptstrae 6","city":"Knigseggwald","coordinates":[47.9262,9.4204],"country":"Germany","ibu":78,"name":"WalderBräu Export","state":"Baden-Wrttemberg"},{"abv":7.5,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":78,"name":"Very Bad Elf Special Reserve Ale","state":"Oxford"},{"abv":5.345400258774675,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":60,"name":"Train Wreck IPA","state":"California"},{"abv":5.5,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","description":"Our award-winning IPA sparkles with effervescence, the result of natural-conditioning, a process where the beer is double-fermented in each bottle, keg or cask. Brewed with a blend of five hop varieties, BridgePort IPA presents a floral, citrusy aroma and full hop flavor, while downplaying the bitterness. The beer pours smooth in the glass, emitting its signature golden glow.","ibu":24,"name":"Bridgeport India Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":11.43329586202432,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":86,"name":"India Pale Ale","state":"California"},{"abv":6.8000001907000005,"address":"425 South Melrose Drive","category":"North American Ale","city":"Vista","coordinates":[33.2029,-117.255],"country":"United States","ibu":11,"name":"Torrey Pines IPA","state":"California"},{"abv":4.5999999046,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Most welcoming British pubs off a house ale or \"pub ale\" — this is ours. We use only the finest English barley, hops and yeast to create this classic English-style pale ale. It is noted for its nice malt flavor balanced with a medium hop presence. The pub ale is often referred to as our house \"session beer\" (a beer you can drink a number of and not fall off your barstool).","ibu":67,"name":"West Bank Pub Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A Golden Rye IPA.\n\nAn outstanding hop from New Zealand, Nelson Sauvin, is generously used throughout the brewing and dry-hopping of this unique beer. European rye is added for a smooth, malty addition to flavor. 1.065 OG 7%ABV","ibu":118,"name":"Nelson","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5,"address":"Hoogstraat 2A","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7668,4.3081],"country":"Belgium","ibu":7,"name":"Drie Fonteinen Kriek","state":"Vlaams Brabant","website":"http://www.3fonteinen.be/index.htm"},{"abv":4.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","description":"ESB was launched into the Fuller's family in 1971, as a winter brew to replace a beer named Old Burton Extra. The potential of the beer was soon realised and ESB was installed as a permanent fixture, creating an immediate impact. \n\n\nNot only was it one of the strongest regularly brewed draught beers in the country (at 5.5% ABV), it was also one of the tastiest, and as the awareness of the beer grew, so did its popularity. ESB's reputation was soon enhanced after being named CAMRA's (Campaign for Real Ale) Beer of the Year in 1978, and the beer has not stopped winning since! \n\n\nWith three CAMRA Beer of the Year awards, two World Champion Beer awards, and numerous other gold medals to speak of, ESB is, quite simply, the Champion Ale.","ibu":63,"name":"Fuller's ESB","state":"London","website":"http://www.fullers.co.uk/"},{"abv":5.8000001907000005,"address":"2501 Southwest Boulevard","category":"German Lager","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard’s fall seasonal beer, Bob’s ’47 Oktoberfest is a medium-bodied, dark amber brew with a malty flavor and well-balanced hop character. With this Munich-style lager we solute our friend Bob Werkowitch, Master Brewer and 1947 graduate of the U.S. Brewer‘s Academy. Available from September through October in bottles and on draught.","ibu":44,"name":"Bob's '47 Oktoberfest","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":10.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A massively hopped Imperial IPA brewed to celebrate Valley Brews 10th anniversary. 1 pound of hops were added every 10 minutes during a 100 minute boil, a total of 10 different boiling hops. 4 different fresh hops were used in the hopback and then the beer was passed through a chamber containing 10 lbs of fresh hops on the way from the serving tanks to the bar taps. Hopperiffic.","ibu":103,"name":"Uberhoppy Imperial IPA","state":"California","website":"http://www.valleybrew.com/"},{"abv":14.269034077056894,"address":"2050 Yavapai Dr","category":"German Lager","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":9,"name":"Oak Creek Micro Light","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":8.1000003815,"address":"11197 Brockway Road","category":"Belgian and French Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"There are hundreds of Trappist Monasteries in the world, many of them make fruitcake. This beer is not made by Monks nor does it resemble fruitcake. Furthermore, Truckee has no Trappist Monastery and that, my friend, is why we at FiftyFifty bring you Trifecta. This is one of FiftyFifty's seasonal ales, and is a high alcohol Belgian style beer. Brewed with inspiration from Belgian Trappist Ales, Trifecta also includes locally grown Purple Sage Honey. With a complex spiciness tempered by the sweeter notes from the sage honey, flavors of spicy sage, alcohol, and mild malt sweetness are apparent, and sage and clove like aromas predominate. Coming in at over 8%, this beer is deceptively strong.","ibu":42,"name":"Trifecta Belgian Style Tripel","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":14,"name":"Oak Aged Unearthly Imperial Pale Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"We brewed this traditional witbier with orange peel and coriander, and then added a hint of blackberry. The flavor is very complex with malt and cereal notes, intense spice and citrus flavors and a smooth, sweet/tart finish. It will be available in January in its own 6-pack and in the Samuel Adams® Brewmaster's Collection Variety 6 & 12-packs.","ibu":77,"name":"Samuel Adams Blackberry Witbier","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":0.42103090830794665,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":21,"name":"Prohibition Pale Ale","state":"California"},{"abv":3.524133377646409,"category":"North American Ale","city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":0,"name":"Brown Ale","state":"Colorado"},{"abv":11.800000191,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Grand Champion in the 2000, and again in 2004 at United States Beer Tasting Championship, Weyerbacher QUAD is the first quadrupel style beer to be commercially brewed and bottled in the United States.\n\n\nIn December 2002 QUAD won Mid-Atlantic Champion at the USBTC for the third year in a row.\n\n\nMassively big and delicious, QUAD is an elegant and dark ale. Rich with complexity and flavor, try savoring it after a long day or during a fine dinner. You also might enjoy it as an aperitif or as an accompaniment to a dessert, but QUAD stands alone quite well. We recommend enjoying QUAD in a brandy snifter or wineglass so you can drink in the aroma of this fine elixir. QUAD, with an alcohol content of 11.8% (by volume) is the strongest beer we make, so please pay proper accord as you enjoy it.\n\n\nAs with any higher alcohol beers, QUAD will be at its best after a period of 6 or 12 months in the bottle, perhaps longer. We expect a shelf life of 3-5 years, but go ahead, we know you can't wait (we couldn't either). Enjoy one now, and another every month or two, and you'll be truly amazed as QUAD gains smoothness and complexity over time as it ages.","ibu":112,"name":"Quad","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":2.8833485806623305,"address":"3410 Sassafras Street","city":"Pittsburgh","coordinates":[40.4616,-79.9653],"country":"United States","ibu":77,"name":"Evil Eye Ale","state":"Pennsylvania"},{"abv":12.428597687823864,"category":"North American Ale","city":"Emeryville","coordinates":[37.8313,-122.285],"country":"United States","ibu":58,"name":"Amber","state":"California"},{"abv":1.2787347776797697,"address":"91 South Royal Brougham","category":"German Lager","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":67,"name":"Oktoberfest","state":"Washington"},{"abv":8.284215898634107,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":94,"name":"Hard Core Crisp Apple Cider","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"104 North Lewis Street","category":"North American Ale","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":91,"name":"N.W. Pale Ale","state":"Washington"},{"abv":10.39554865115475,"address":"Rue Maurice Grevisse 36","city":"Habay-Rulles","coordinates":[49.7185,5.5571],"country":"Belgium","ibu":44,"name":"Bière de Gamme","state":"Luxembourg"},{"abv":4.8000001907000005,"address":"Coppermines Road","city":"Coniston","country":"United Kingdom","ibu":113,"name":"Old Man Ale","state":"Cumbria"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":26,"name":"Harvest Ale 2005 (Calvados)","state":"Manchester"},{"abv":4.3000001907,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":33,"name":"Schwarzbier","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":2.930806516742781,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":86,"name":"Sandbagger Gold","state":"Montana"},{"abv":10,"address":"80 Des Carrires","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":105,"name":"16","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.117085808516652,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Maple syrup is added to each barrel of Maple Nut Brown Ale to impart roasted sweetness balancing the nut flavor produced by chocolate malts.","ibu":107,"name":"Maple Nut Brown Ale Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Exactly what it says, Bud Light and Lime. Brewed in Georgia.","ibu":18,"name":"Bud Light Lime","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.5,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A holiday ale brewed with honey and spiced with fresh ginger and cinnamon. Availability, November to December.","ibu":20,"name":"Christmas Ale","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":6,"address":"529 Grant St. Suite B","category":"North American Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A Traditional German Lager brewed with all German grain & yeast. Very drinkable.","ibu":61,"name":"Labrador Lager","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9.646929746491809,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Let Battle Commence... Trafalgar is a Gold Medal Award winning bottle conditioned India Pale Ale brewed to a 19th Century recipe. Listed in the Top 500 Ales in the World, Trafalgar measures 6% ABV. Brewed in the Royal Forest of Dean at Freeminer Brewery in the UK and distributed by Rogue Ales in the US.\n\n\nTrafalgar IPA is a true India Pale Ale, brewed to an original 19th Century recipe. IPA's were brewed at high APV and heavily hopped to enable their preservation on the long journey to the colonies from England. This Ale is brewed from the oldest working traditional floor maltings in Warminster, Wiltshire. The hops are traditional \"Goldings\" variety grown around Ledbury, Herefordshire as they have been for centuries.","ibu":2,"name":"Trafalgar IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"Belgian and French Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A Belgian - Style Pale Ale. The Belgian yeast produces flavors of cloves, banana, and other spices that meld perfectly with the malt and hops. Ingredients: Pilsner Malt, Saaz Hops, Blegian Yeast, Free Range Cascade Water.\n\nNo Chemicals, Additives or Preservatives.","ibu":30,"name":"Golden Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"HazelNut Brown Nectar is a nutty twist to a traditional European Brown Ale. Dark brown in color with a hazelnut aroma, a rich nutty flavor and a smooth malty finish. Dedicated to the homebrewer in each of us--the homebrewer who inspired this creation is Chris Studach, a friend of Rogues resident wizard John Maier, who added a Northwest twist to the classic style by adding hazelnuts for the host homebrew at the 1993 American Homebrewers Association convention. Chris put the nut in nut brown!\n\n\nHazelnut Brown Nectar Ale is a blend of Great Western 2-row Pale, Munich, Hugh Baird Brown, Crystal 80 and Crystal 135, Carastan, and Beeston Pale Chocolate malts; hazelnut extract; Perle and Saaz hops. HazelNut Brown Nectar is available in a 22-ounce bottle, a special commemorative 3-litre bottle with ceramic swing-top, and on draft.","ibu":100,"name":"Hazelnut Brown Nectar","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"5429 Shaune Drive","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Based on the traditional style of Kölsch beer brewed in Cologne, Germany.\n\n\nAlaskan Summer Ale balances a softly malted palate with the clean freshness of Hallertauer hops. In the tradition of the style, neither overpowers the other. Both hops and malt come together to refresh and renew the palate. The straw-gold color and easy drinkability are an enjoyable way to celebrate summer.\n\n\nAlaskan Summer Ale is made from glacier-fed water and a generous blend of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall Juneau receives each year.","ibu":79,"name":"Alaskan Summer Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":103,"name":"Original","state":"Nordrhein-Westfalen"},{"abv":4.5999999046,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Dark Island is an iconic beer: a standard-bearer for traditional Scottish ales. In cask, this beer has twice won CAMRA’s Champion Beer of Scotland.\n\nOn the nose, this dark beer offers bitter chocolate, figs, toffee and hints of fruit.\n\n\nOn the palate, this resolves into beautiful, silky-smooth, coffee-and-chocolate flavours, followed by figs, dates and dried fruits, with a very appealing, lingering aftertaste of fruits and hop bitterness.","ibu":8,"name":"Dark Island","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":10.329009438047441,"address":"21290 Center Ridge Road","category":"North American Ale","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":14,"name":"Bombardier Brown","state":"Ohio"},{"abv":4.301624403895118,"address":"6515 Kingston Pike","category":"North American Ale","city":"Knoxville","coordinates":[35.932,-84.012],"country":"United States","ibu":30,"name":"Cherokee Red Ale","state":"Tennessee"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":89,"name":"Red Lager","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.714344319163715,"address":"114 North Main Street","category":"Other Style","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":18,"name":"Apple Ale","state":"Michigan"},{"abv":9.5,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Double the malt, double the hops, and double the flavor of the original Rye Pale Ale recipe. (Hence the name Rye Squared.) With its mammoth hop aroma, bitterness and flavor, this beer is not for the faint at heart. The Rye Squared clocks in at a hefty 9.5% ABV so double your pleasure and double your fun because Terrapin went a little crazy with this one!","ibu":19,"name":"Rye Squared","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":3.8726627591964267,"address":"66 East Eighth Street","category":"Other Style","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A refreshing wheat ale, Zoomer is brewed to quench your summer thirst. American-grown wheat provides Zoomer's straw color and its soft, clean body. With subtle, yet flavorful hints of citrus fruit in its finish, Zoomer is the perfect companion to all things summer. Food pairings include artisan cheeses, fresh greens, fish and chicken.","ibu":69,"name":"Zoomer","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":11.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"LUST Belgian-style Dark Strong Ale stirs shameless desire in men (and women) with its captivating appearance, enticing aroma and satisfying flavors. Aged in bourbon oak barrels for twelve months, Lust is worldly, smooth and decadent. Sour cherries contribute tartness while brettanomyces brings muskiness to this naughty brew. \n\n\nThe pleasure you derive from this dark beer is beyond words. \n\n\nLUST. Regret. Repent. Repeat.","ibu":44,"name":"Lust","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.454998048520317,"address":"Franz-Brombach-Strae 1-20","category":"German Ale","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":88,"name":"Weißbier Pikantus","state":"Bayern"},{"abv":7.395636655841078,"address":"110 Wisconsin Dells Parkway South","category":"German Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":102,"name":"Oktoberfest","state":"Wisconsin"},{"abv":4.96710365936635,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":72,"name":"Hacker-Pschorr Dunkel Weisse","website":"http://www.paulaner.com/"},{"abv":6.6999998093,"address":"11197 Brockway Road","category":"Irish Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"Sustenance to get you through those long, cold winters, the Donner Party Porter is another of FiftyFifty's flagship beers. Reminiscent of dark chocolate, espresso, and dark dried fruits with a long complex finish, this beer is good for one of those nights where you've dug yourself into a snow bank because the ski trip didn't go quite as planned. Deep brown with mahogany highlights, the hops and malt are very well balanced leaving one to contemplate the myriad of flavors as the beer warms. Moderate to slightly heavy, this beer is heaven in a glass.","ibu":55,"name":"Donner Party Porter","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":4.8000001907000005,"address":"Bergstrae 2","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":17,"name":"Hell","state":"Bayern"},{"abv":7.233379399320523,"address":"The Eagle Maltings","category":"British Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":80,"name":"Old Devil","state":"Oxford"},{"abv":6,"category":"Irish Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":92,"name":"Porter","state":"Wisconsin"},{"abv":1.8275930959829878,"category":"German Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":117,"name":"Hoptoberfest","state":"Washington","website":"http://www.redhook.com/"},{"abv":2.219422843134332,"address":"10450-L Friars Road","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":5,"name":"Old 395 Barleywine","state":"California"},{"abv":8.418415890853352,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":96,"name":"Speciale Noël","state":"Luxembourg"},{"abv":0.9870983628821739,"address":"30 Butterfield Road","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":114,"name":"Prairie Path Golden Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":4.9000000954,"address":"Oberer Markt 1","city":"Neuhaus","coordinates":[49.6283,11.5498],"country":"Germany","ibu":76,"name":"Original Lager","state":"Bayern"},{"abv":5.1999998093,"address":"Mill Lane","city":"Skegness","coordinates":[53.1691,0.3169],"country":"United Kingdom","ibu":113,"name":"Victory Ale","state":"Lincoln"},{"abv":8.385239563655405,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":77,"name":"Best Brown","state":"California"},{"abv":14.58582672345471,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","ibu":114,"name":"IPA","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":2.8825288181951727,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":29,"name":"Bourbon Barleywine","state":"Wisconsin"},{"abv":6.7267416077899,"address":"Circunvalacin Sur Km. 3 1/2","category":"North American Lager","city":"Holguin","country":"Cuba","ibu":99,"name":"Fuerte"},{"abv":5.3000001907,"address":"Alte Akademie 2","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":3,"name":"Hefeweissbier Dunkel","state":"Bayern"},{"abv":2.7531836350569208,"address":"Broughton","category":"North American Ale","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":94,"name":"Kinmount Willie Stout","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":0.18480198294449024,"address":"7734 Terrace Avenue","category":"German Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":112,"name":"Capital Weizen Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":12.362273085836055,"address":"1107 Railroad Avenue","category":"German Lager","city":"Bellingham","coordinates":[48.7475,-122.481],"country":"United States","ibu":105,"name":"Doppel Bock","state":"Washington"},{"abv":8,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":101,"name":"La Quintine Blonde","state":"Hainaut"},{"abv":1.7963625634226432,"city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":1,"name":"Original ESB","state":"Ohio"},{"abv":12.985992662322289,"address":"7734 Terrace Avenue","category":"German Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":84,"name":"Capital Kloster Weizen","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.824098972214909,"address":"412 North Milwaukee Avenue","category":"Irish Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":87,"name":"Porter","state":"Illinois"},{"abv":4.491241550037127,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":43,"name":"Red Amber Ale","state":"Missouri"},{"abv":5.966309938039536,"address":"4301 West Wisconsin","category":"German Lager","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":54,"name":"What the Helles Bock","state":"Wisconsin"},{"abv":6.222691381220429,"address":"RR 1 Box 185","category":"Belgian and French Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"A Belgian-style summer favorite. Malted wheat, Pale, Munich and Cara Vienna malt, then moderately hopped with Saaz and a double dose of Hallertau. Served unfiltered with an orange wedge, this is fun in a glass.","ibu":22,"name":"Iron Arm Belgian Style Wheat","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":4.581758596325781,"address":"One Busch Place","category":"German Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":27,"name":"Michelob Golden Pilsner","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.5,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Gratefully dedicated to the Rogue in each of us. In the early 1990s Dead Guy Ale was created as a private tap sticker to celebrate the Mayan Day of the Dead (November 1st, All Souls Day) for Casa U Betcha in Portland, Oregon. The Dead Guy design proved popular and was incorporated into a bottled product a few years later with Maierbock as the elixir. Strangely, the association with the Grateful Dead is pure coincidence.\n\n\nDead Guy is a German-style Maibock made with Rogues proprietary \"PacMan\" ale yeast. It is deep honey in color with a malty aroma, rich hearty flavor and a well balanced finish. Dead Guy is created from Northwest Harrington, Klages, Maier Munich and Carastan malts, along with Perle and Saaz Hops. Dead Guy Ale is available in 22-ounce bottles, 12-ounce 6-pack, and on draft.","ibu":117,"name":"Dead Guy Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.3000001907,"address":"1100 New York Ave, NW","category":"North American Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center.","ibu":9,"name":"Amber Waves","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":4.5,"address":"8111 Dimond Hook Drive","category":"German Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This is our perennial summer seasonal beer, first brewed in Summer 1995 when we opened. \n\n\nAffectionately called \"Spunky and Chunky\", Old Whiskers Hefeweizen is a traditional Bavarian-style unfiltered wheat beer. Created with equal parts malted wheat and pale two-row malt, Old Whiskers is lightly hopped to style. A unique Bavarian strain of yeast imparts a clove- or banana-like aroma and flavor. (We swear we did not put cloves into the brew. It is the magical powers of The Yeast.) Old Whisker is delicious and refeshing--the perfect summer quencher, served with or without a slice of lemon.","ibu":76,"name":"Old Whiskers","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.8000001907000005,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Our Wit (white) beer is an old style Belgian wheat-ale, spiced with Curacao bitter orange peel and corriander. Light and exotic... A party in your mouth!","ibu":62,"name":"Wild Wacky Wit","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":7,"address":"6 Verkhny per., d. 3","category":"Other Lager","city":"St. Petersburg","country":"Russia","description":"appearance: deep, dark brown to black, deep tan head\nsmell/taste: sweet, malty, roasted coffee, molasses\nfull-bodied, smooth, minimal carbonation","ibu":20,"name":"Baltika 6","website":"http://baltikabeer.com/"},{"abv":6,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Extra Special Bitter, or ESB, were the benchmark beers for British brewers to serve to their special customers. Brewed with British pale and crystal malt, this reddish copper beer finishes with a subtle dose of English Fuggles hops.","ibu":23,"name":"Barrel Aged Synapse ESB","state":"Michigan","website":"http://liverybrew.com/"},{"abv":11.00078467201148,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":18,"name":"Capital U.S. Pale Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.5,"address":"2713 El Paseo Lane","category":"German Lager","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A stronger German lager brewed with lots and lots of Munich malt for a toasty bready like aroma.","ibu":70,"name":"Sacramento Bock","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":7.5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":35,"name":"Odd Notion Winter 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":14.980816757678197,"address":"1621 Dana Ave.","category":"Other Style","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","ibu":30,"name":"#42 Cream Ale","state":"Ohio","website":"http://www.listermann.com/"},{"abv":8.8999996185,"address":"Roeselarestraat 12b","category":"Belgian and French Ale","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":69,"name":"Bos Keun","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":6.395583437209863,"address":"Rua Bahia, 5181","category":"German Lager","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":60,"name":"Eisenbahn Escura","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":7,"address":"1777 Alamar Way","category":"North American Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":72,"name":"Certified Organic India Pale Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":11,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":111,"name":"Malheur Brut Reserve","state":"Oost-Vlaanderen"},{"abv":6.5,"address":"Papenstrae 4-7","category":"German Lager","city":"Einbeck","coordinates":[51.8162,9.8643],"country":"Germany","ibu":50,"name":"Ur-Bock Hell","state":"Niedersachsen"},{"abv":5.654856229544066,"address":"7734 Terrace Avenue","category":"North American Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":102,"name":"Capital Brown Ale","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":5.336454940219674,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":9,"name":"Beer","state":"Bremen"},{"abv":6.5,"address":"Rijksweg 16","category":"German Lager","city":"Gulpen","coordinates":[50.8109,5.9213000000000005],"country":"Netherlands","ibu":71,"name":"Dort"},{"abv":14.094861798517048,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":51,"name":"Dark Walnut Stout","state":"Wisconsin"},{"abv":7,"address":"14 Wickliffe Street","category":"British Ale","city":"Dunedin","coordinates":[-45.872,170.518],"country":"New Zealand","ibu":64,"name":"Old 95"},{"abv":4.1999998093,"address":"808 West Main Street","category":"North American Ale","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":9,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":6.3865391621451995,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":112,"name":"El Niño IPA","state":"Minnesota"},{"abv":9,"category":"British Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":65,"name":"Anniversary Ale","state":"Minnesota"},{"abv":13,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Gargantuan Russian Stout brewed with coffee, molasses, and honey.","ibu":53,"name":"Dark Lord Russian Imperial Stout","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":1.3789544585520852,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"The Cappucino of beers. Roasty, smooth and sweet.\n\nSamuel Adams® Cream Stout is a true cream stout, balancing body and sweetness with the natural spiciness of grain and hand selected English hops. Our Brewers use generous portions of roasted chocolate and caramel malts as well as unroasted barley to impart a fullness of body, a roasty malt character and rich, creamy head. Its dark mahogany color make it almost as easy on the eyes as it is on the palate.","ibu":44,"name":"Samuel Adams Cream Stout","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":13.12314688892375,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":46,"name":"Chapeau Pêche Lambic","state":"Vlaams Brabant"},{"abv":5.5,"address":"Markt 1","city":"Ichtegem","coordinates":[51.0923,3.01],"country":"Belgium","ibu":79,"name":"Vlas Kop","state":"West-Vlaanderen"},{"abv":13.696115140013614,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":118,"name":"Allgood Amber Ale","state":"Colorado"},{"abv":8,"address":"515 Jefferson Street SE","category":"German Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":1,"name":"Detonator Doppelbock","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":8.46825612425323,"address":"618 S. Wheeling Ave","category":"Other Style","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":60,"name":"Sundown Wheat","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":7.785519555909807,"ibu":7},{"abv":6.414487240532224,"city":"Pacific Beach","coordinates":[32.7978,-117.24],"country":"United States","ibu":79,"name":"Rudolf Red Barleywine","state":"California"},{"abv":1.2708386197437282,"address":"75-5629 Kuakini Highway","category":"North American Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":7,"name":"Stout","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":7.396127780557929,"city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":12,"name":"Macadamia Nut Brown Ale","state":"Hawaii"},{"abv":6.9360664900186295,"category":"North American Lager","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":66,"name":"Honey Wheat","state":"North Carolina"},{"abv":10.80430672376201,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":67,"name":"Original Munich Premium Lager","website":"http://www.paulaner.com/"},{"abv":11.31485170442745,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Save Our Shores (S.O.S) is an unfiltered weizen pils and has a brilliant golden color. A Charitable Pilsner","ibu":95,"name":"S.O.S","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Originally brewed for thirsty British troops stationed on the subcontinent of India, India Pale Ales had to withstand the sea voyage around Africa. Brewers need to take full advantage of two preservatives at the time: hops and alcohol. They increased their hopping rates, doubled their malt useage to increase alcohol content, and dry-hopped the brew before it set out on its voyage.\n\nOur Imperial IPA carries on this tradition- and then some! The fruity and citrusy hop aroma intermingles perfectly with an assertive malty backbone. Our brewers added a generous supply of hops to this brew throughout the entire process to provide an enormous hop flavor and balance the elevated alcohol content.\n\n\nThis beer is 11% alcohol by volume, and 135 IBU!","ibu":100,"name":"Otter Creek Imperial India Pale Ale","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":4.004623156153984,"address":"Kendlerstraße 1","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This dark wheat beer specialty is a natural and spicy beer brand.","ibu":1,"name":"Weizengold Dunkel","website":"http://www.stieglbrauerei.at/"},{"abv":5,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"Other Style","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":70,"name":"Baltika #8","state":"Sankt-Peterburg"},{"abv":9.3999996185,"address":"1245 Puerta del Sol","category":"North American Ale","city":"San Clemente","coordinates":[33.4577,-117.589],"country":"United States","description":"Here at Left Coast Brewing Co. we pride ourselves on being one of the first breweries to pioneer a Double IPA style beer. In 2003, we brewed our first Double IPA, and haven't looked back since. This hop monster uses Premium American 2- Row and a touch of light crystal malt to create a solid malt foundation. The recipe calls for hops to be used in every step of the brewing process; in the mash, in a hop back, in the fermenter, and in the bright tanks. We use hop extract, hop pellets and hop flowers, hence the name Hop Juice. Hop Juice spends more than 4 weeks dry hopping in the fermenter and the bright beer tank. It is approximately 9.4% abv and has massive IBUs. Hop usage is over 4lbs per barrel. Hopeheads, step up to the plate!","ibu":16,"name":"Hop Juice Double IPA","state":"California"},{"abv":6.4000000954,"address":"1214 East Cary St","category":"Irish Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"This dark brown porter has more bark than bite. It is actually fairly sweet and fruity with a nutty/chocolate flavor as well. Highly recommended.","ibu":33,"name":"Big Nasty Porter","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":7.5,"address":"905 Line Street","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","ibu":2,"name":"Weyerbacher Fireside Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":14.003363857891273,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Turbodog is a dark brown ale brewed with Willamette hops and a combination of British pale, crystal and chocolate malts.\n\n\nThis combination gives Turbodog its rich body and color and a sweet chocolate-toffee like flavor. Turbodog began as a specialty ale but has gained a huge loyal following and has become one of our three flagship brews.\n\n\nJust a bit stronger than our other brews, so . . .beware of the dog!","ibu":32,"name":"Turbodog","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5.0999999046,"address":"91 S Royal Brougham Way","category":"Other Style","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma. \n\n\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.","ibu":12,"name":"Pyramid Apricot Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":4.9000000954,"address":"91 S Royal Brougham Way","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Inspired by the traditional Kölsch style beers of Cologne, Germany, Curve Ball boasts a clean, crisp slightly herbal taste and a lighter body. With its sporty packaging and refreshing taste, Curve Ball is the perfect accompaniment to summer grilling and ballpark outings. Try swingin' at it on a hot summer day!","ibu":45,"name":"Curve Ball","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":7.636629210307252,"address":"1516 Sansom Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":54,"name":"3C Extreme","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":9.5,"address":"Krommekeerstraat 21","category":"Belgian and French Ale","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":113,"name":"Urthel Hop-It","state":"West-Vlaanderen"},{"abv":4.965092686837805,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":82,"name":"Dry Hopped IPA","state":"Washington"},{"abv":4.8000001907000005,"address":"7160 Oliver Street","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":0,"name":"Blonde Draft","state":"British Columbia"},{"abv":7.6999998093,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","ibu":109,"name":"Grotten Flemish Ale","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":13.617489064362127,"address":"113 North Broadway","category":"North American Lager","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":102,"name":"Whitetail Wheat","state":"Montana"},{"abv":7,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":11,"name":"Kriek","state":"West-Vlaanderen"},{"abv":12.38629583911894,"address":"138 Nassau Street","category":"North American Lager","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":57,"name":"Honey Wheat","state":"New Jersey"},{"abv":5.547346949289354,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":94,"name":"Old Krogh Oatmeal Stout","state":"New Jersey"},{"abv":0.7472735768823258,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":119,"name":"Ungespundetes","state":"Bayern"},{"abv":5.6999998093,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":8,"name":"Braunbier","state":"Bayern"},{"abv":7.769014702720215,"address":"Laurenziplatz 20","city":"Bamberg","coordinates":[49.8851,10.8823],"country":"Germany","ibu":98,"name":"Lagerbier","state":"Bayern"},{"abv":14.772735588999177,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":119,"name":"Irish Red Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6.5,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":106,"name":"French Country Spring Beer","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":13.25262642839895,"address":"906 Washington Street","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":101,"name":"Cask ESB","state":"California"},{"abv":4.5999999046,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A dry Irish-style stout served via nitrogen. Black Mo is a very smooth and creamy beer with a pleasant roasted malt character.","ibu":95,"name":"Black Mo Stout","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":0.7485974951337471,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"A rich, dark and malty ale with plenty of roasted barley flavor. Blackbird has a silky smooth oatmeal finish. It is one of our NEW flagship's and is now available year round.","ibu":93,"name":"Blackbird Oatmeal Stout","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":1.4230439983292265,"category":"Irish Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":115,"name":"Blacksmith Porter","state":"Oregon"},{"abv":10.056924776319358,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":34,"name":"IPA Series (Zeus)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6.1999998093,"address":"1680-F East Waterloo Rd.","category":"Irish Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Dark, robust and silky-smooth, with many flavors of roasted, toasted and caramel malts. Porter is an old-world beer style, so popular that it helped start the industrial revolution. Taste the history.","ibu":35,"name":"Silk Porter","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"AB43 8UE","category":"North American Lager","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":96,"name":"Hop Rocker","website":"http://brewdog.com/"},{"abv":5.0999999046,"address":"225 Heritage Ave","category":"Other Style","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Smuttynose Pumpkin Ale is our homage to the craft and heritage of America’s brewers. Recipes calling for the use of pumpkins in beer date back to early colonial times, when brewers sought to extend their supply of costly imported malt with locally grown ingredients, such as squash and “pompions.”\n\n\nIn that spirit, we brew our ale with the addition of pumpkin to the mash, along with traditional spices to create a delicious American original.","ibu":17,"name":"Smuttynose Pumpkin Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.25,"address":"35 Fire Place","category":"Other Style","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A true Bavarian wheat yeast, sixty percent wheat malt, and German hops make Santa Fe Wheat Beer as true to the style as any American rendition can be. German Wheat Beer, with its hints of banana and clove, its delectable, spicy, hops, and its pale golden color, is becoming increasingly popular in America’s craft brewing world, and with good reason: wheat beers are both light enough to please light beer drinkers, and complex enough to please true micro-brew connoisseurs. To mimic a classic German Hefeweisen, after pouring your Santa Fe Wheat Beer into a glass, swirl the last few drops in the bottle to loosen the yeast from the bottom, then pour the yeast over the top of your beer.","ibu":81,"name":"Santa Fe Wheat","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":13.71249538686995,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":58,"name":"Timmermans Kriek","website":"http://www.anthonymartin.be/"},{"abv":15,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is an Imperial Stout that is Brewed to great strength and complexity. We then gently age that beer in Elaigh Craig 13 1/2 year old Bourbon Barrels for 1 yr. and then primed and bottled to bottle condition for continued aging and celler life. Black Magick should be able to be aged up to about 5 years, to heighten the complexity and smooth nature of this beer. This beer should be opened to breath, pour into snifter and enjoy at 55-60 F. \n\n\nThis is a truly Barrel aged ale and is not to have a large carbonation. We bottle condition it to achieve cask like characteristics.","ibu":96,"name":"Black Magick","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":5.4000000954,"address":"2713 El Paseo Lane","category":"North American Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A malty dark ale wtih ale with a chocolate and biscuit like flavor and balanced finish.","ibu":117,"name":"Sacramento Nut Brown Ale","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":6,"address":"1705 Mariposa Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","description":"San Francisco's famouse Liberty Ale was first brewed on the 18th of April, 1975 to celebrate the 200th anniversary of Paul Revere's historic ride. It is virtually handmade by the brewers of Anchor Steam Beer in one of the smallest and most traditional breweries in the world. Liberty Ale is made with the finest barley malt, fresh, whole hops, top fermenting yeast, pure water and the simple natural methods which reflect our exceptional respect for the ancient art of brewing. It is \"dry hopped,\" a classic ale tradition, and slowly completes its fermentation in sealed vats in our cellars. This unique process creates Liberty Ale's distinctive bouquet and uncommonly delicate, entirely natural carbonation.","ibu":63,"name":"Liberty Ale","state":"California"},{"abv":12.94248910076827,"address":"1634 18th Street","category":"North American Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"This blonde beer has a very light body and mild flavors of hops and pale malts. A hint of caramel malt gives color to this popular choice for craft beer newcomers","ibu":102,"name":"Light Rail Ale","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":3.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Our unique contribution to the fruit ale category features the nutty quench of wheat ale combined with the delightful aromatics and subtle fruit flavor contributed by Maine wild blueberries.","ibu":91,"name":"Sea Dog Blue Paw Wheat","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":5,"address":"620 South Madison Street","category":"North American Lager","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"This amber Austrian lager has a distinct bready malt aroma and flavor, followed by a crisp, clean finish typical of lager styles. The nose also shows plenty of the spicy hop aroma contributed by the use of Saaz hops.","ibu":16,"name":"Vienna Red Lager","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":4.5,"address":"545 Canal Street","category":"German Ale","city":"Reading","coordinates":[40.3256,-75.9283],"country":"United States","description":"Our Altbier is brewed in the classic German-style brown ale tradition. The “alt” translates to \"old\" in German and is one of the original ale types brewed in Germany. Brown Aled Girl is dark brown in color, medium in carbonation with a great balance between malt and hops.","ibu":68,"name":"Brown Aged Girl","state":"Pennsylvania","website":"http://www.legacybrewing.com"},{"abv":5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Stretching the longer summer days into Twilight! There is something magical about the time of day that falls between light and dark, the high-desert summer day fading into a warm evening with brilliant skies.\n\n\nTwilight Ale is a lighter, but full flavored ale with a balanced malt profile and a harmonious blend of four hops. A final dry hopping of bold Amarillos creates the distinctive finishing touch. Twilight is best enjoyed when chilled and consumed outdoors.","ibu":3,"name":"Twilight Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Michelob ULTRA Amber is an American-style amber lager that boasts a beautifully rich, dark-amber color with a full-bodied, malty taste that also is low in calories and carbohydrates.","ibu":12,"name":"Michelob Ultra Amber","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":12.284616383043511,"address":"289 Huger Street","category":"North American Ale","city":"Charleston","coordinates":[32.8017,-79.9455],"country":"United States","ibu":76,"name":"Pale Ale","state":"South Carolina"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Rogues annual holiday offering, Santas Private Reserve, is a variation of the classic Saint Rogue Red, but with double the hops--including Chinook, and Centennial, and a mystery hop called Rudolph by head brewer John \"more hops\" Maier!This holiday elixir is brewed with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, Carastan 13-17, and Crystal 70-80 malts, plus free range coastal water and Johns proprietary top-fermenting Pacman yeast. Available in both 22-ounce bottles, 12oz Loose packs for Winter 2005, and 12oz six packs for 2006.","ibu":35,"name":"Santas Private Reserve","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Light golden color. Sweet dry aroma with crisp, clear bitterness. Brewed with imported German hops.The perfect beer to have when you'd like to have more than one.","ibu":35,"name":"South Park Blonde","state":"California","website":"http://www.21st-amendment.com/"},{"abv":3.659595718380295,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":22,"name":"Admiral ESB","state":"Washington"},{"abv":3.2444873585568104,"address":"611 North Pine","category":"German Lager","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":104,"name":"Spring Bock","state":"Washington"},{"abv":4.6999998093,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":0,"name":"Cypress Honey Lager","state":"British Columbia"},{"abv":7.273986691260078,"address":"Konradigasse 2","category":"German Ale","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":37,"name":"Weizen","state":"Baden-Wrttemberg"},{"abv":3.047455683683361,"city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":115,"name":"Huusbier"},{"abv":6.0999999046,"address":"Spott Road","category":"North American Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":85,"name":"Twisted Thistle India Pale Ale","state":"Scotland"},{"abv":6.5,"address":"Spitalstrasse 50","city":"Raeren","coordinates":[50.6718,6.122],"country":"Belgium","ibu":9,"name":"Rader Blonde","state":"Lige"},{"abv":3.7999999523,"address":"830 Main Street","category":"Irish Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":69,"name":"Zone 7 Porter","state":"California"},{"abv":9,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"We think the russian tsar would have liked his stout this way. A dark, rich ale in which a generous sweetness with roasted malt bitterness. Serving temp.10°C/50°F. Great with vanilla ice cream or dark chocolate.","ibu":48,"name":"Nøgne Ø Imperial Stout","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":89,"name":"La Divine Tripel Amber","state":"Hainaut"},{"abv":2.97980643477902,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":2,"name":"Golden Ale","state":"Wisconsin"},{"abv":8.024276781866002,"address":"1260 Lincoln Avenue #100","category":"German Ale","city":"Pasadena","coordinates":[34.1696,-118.159],"country":"United States","ibu":49,"name":"Heavenly Hefe","state":"California"},{"abv":9.191443556559864,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":104,"name":"IPA","state":"Wisconsin"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":75,"name":"Bigfoot 1994","state":"California","website":"http://www.sierranevada.com/"},{"abv":13.953411835502779,"address":"426 St.Peter Street","category":"North American Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":24,"name":"Saint Peter Pale Ale","state":"Minnesota"},{"abv":11.727587973166955,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":80,"name":"Hefe Weiss","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":5.0999999046,"address":"Hofbräuallee 1","city":"München","country":"Germany","ibu":96,"name":"Original","state":"Bayern"},{"abv":11.423197195486821,"category":"Irish Ale","city":"Redmond","coordinates":[47.6701,-122.118],"country":"United States","ibu":110,"name":"Three Threads Porter","state":"Washington"},{"abv":6,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Hope and King is a full-body brew and is rich in malt complexity. Brewed with both English and American barley and many, many specialty malts this deeply colored ale has hints of roasted chocolate, caramel and raisins with very little hop presence. Our interpretation of the classic ale that originated in Glasgow, Scotland.","ibu":94,"name":"Hope & King Scotch Ale","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":9.733936611501827,"address":"2565 North Highway 14","category":"North American Lager","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":63,"name":"Mojave Red","state":"California"},{"abv":12.6498463288801,"address":"1647 South Tejon Street","category":"North American Ale","city":"Colorado Springs","coordinates":[38.8097,-104.826],"country":"United States","ibu":95,"name":"Winter Warlock Oatmeal Stout","state":"Colorado"},{"abv":7.026403774564826,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","ibu":50,"name":"XP Pale Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":12.21271192143179,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":15,"name":"East Bay Brown","state":"South Carolina"},{"abv":12.14694801014241,"address":"114 North Main Street","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":83,"name":"Tripel","state":"Michigan"},{"abv":8.275340964621344,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":42,"name":"Jamaica Brand Red Ale","state":"California"},{"abv":13.144714701154584,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":22,"name":"Main Street Brown Ale","state":"Wisconsin"},{"abv":9.66220227773819,"address":"Krekelput 16-18","city":"Oudenaarde","coordinates":[50.8431,3.6077],"country":"Belgium","ibu":46,"name":"St.Hermes Abbey Ale","state":"Oost-Vlaanderen"},{"abv":2.7116533505080733,"address":"2145 Blake Street","category":"German Lager","city":"Denver","coordinates":[39.7557,-104.993],"country":"United States","ibu":119,"name":"Oktoberfest","state":"Colorado"},{"abv":4.198613742300975,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":69,"name":"Little Point Pale","state":"California"},{"abv":5.8000001907000005,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"At the heart of Saranac Winter Wassail is a classic English ale brewed with English Malt & Fuggles Hops. Look for hits of cinnamon, nutmeg, orange and allspice. Cheers to the holiday season!","ibu":36,"name":"Saranac Winter Wassail","state":"New York","website":"http://www.saranac.com"},{"abv":1.4920067824303296,"city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":119,"name":"Pilsner","state":"North Carolina"},{"abv":10.47643008468307,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":113,"name":"Blackwood Mountain Stout","state":"North Carolina"},{"abv":11.114122064826295,"category":"Irish Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":61,"name":"Porter","state":"Hawaii"},{"abv":2.1880783259825884,"address":"196 Alps Road","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"A black IPA.","ibu":67,"name":"Capt'n Krunkles","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":1.9015404020026938,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":53,"name":"Redwood Amber","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":2.8122376962648046,"address":"113 18th Street","category":"North American Lager","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":30,"name":"Wigged Pig Wheat","state":"Illinois"},{"abv":6.847966120758753,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"There’s nothing quite likes Mom’s apple pie…But I am willing to bet this beer is pretty darn close. An American Tripel, dry-hoped with Amarillo hops and aged in Apple Brandy barrels from one of this country’s oldest distilleries. The tropical aroma of the hops and the delicate apple aroma from the barrels are a perfect match. Straight from the Captain’s cellar to yours, we hope you enjoy.","ibu":46,"name":"Golden Delicious","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":7.590748189455048,"address":"50 Catoctin Ct. NE #100","category":"North American Ale","city":"Leesburg","coordinates":[39.1126,-77.5537],"country":"United States","ibu":107,"name":"Point Of Rocks Pale Ale","state":"Virginia","website":"http://www.vintage50.com/"},{"abv":5.8000001907000005,"address":"5919 Chicago Road","category":"North American Ale","city":"Warren","coordinates":[42.5278,-83.0472],"country":"United States","description":"Black ale beer, made with real coffee. This java stout goes through a unique process, involving caramelizing brown sugar to give it an intense caramel & vanilla aroma.","ibu":52,"name":"Creme Brulee Java Stout","state":"Michigan","website":"http://www.kbrewery.com/"},{"abv":0.6491156015552269,"address":"104 Mill St.","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"Crisp and smooth. This beer is deep amber in color. Toasty, malty flavor. Full-bodied with a clean finish.","ibu":77,"name":"South County Munich Dunkel Lager","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":9.80163403405964,"address":"7734 Terrace Avenue","category":"Belgian and French Ale","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":78,"name":"Capital Prairie Gold","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.5584974423972318,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Another one of our first recipes, which we have improved with experience. This ale is pleasantly malty with nutty and toffee like undertones. East Kent Golding hops were used to compliment this English style ale.","ibu":72,"name":"Bube's Brown Ale","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.4000000954,"address":"24 North Pleasant Street","category":"Other Style","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"2003 Silver medal winner herb and spice catagory Great American Beer Fest, made without hops, 100% heather flowers giving it a flowery aroma, subtle sweetness, and crisp, clean finish.","ibu":32,"name":"Heather Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":14.010027373743428,"address":"206 W. Pratt St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":62,"name":"Oliver Irish Red","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"Irish Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":59,"name":"Odd Notion Spring 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"As the story goes, I was redesigning our I.P.A. to be bigger and better but as it came together it started to take on a life of its own. After much deliberation and several pints of our new creation we decided to name him after the master of macabre, Edgar Allen Poe, as a tribute to his aptly named short story \"HOP FROG.\" As Edgar fermented and spewed his almost abusive hop aroma throughout the pub, his legend and our thirst grew until finally one day, he was released into the world. We hope Edgar amuses you as much as he has us but stay on his good side because much like the story, this Hop Frog bites back!","ibu":117,"name":"Edgar I.P.A.","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":7,"address":"111 Main Street","category":"British Ale","city":"Lucan","coordinates":[44.4105,-95.4107],"country":"United States","description":"Originally brewed exclusively for beer shows, this award-winning ale has always been a Brau Brothers favorite! This is not your typical Scotch Ale. Combined with traditional malt\n\nsweetness is a distinct smoke flavor derived from authentic peat-smoked malt. This beer will change your opinion about Scottish ales due to its drinkability. Hop flavor and bitterness are minor, yet balance out this malty beer.\n\n\nBrau Scotch Ale is copper to amber in color with an off-white head of tightly laced bubbles. Wide-bowled glassware will allow the sweet and smoky aroma to escape. This ale can be served from 34- 50 degrees Fahrenheit. Lower temps will make it easier to drink while higher temps will enhance both malt and hop flavor. Portion control is important as this beer.","ibu":84,"name":"Scotch Ale","state":"Minnesota","website":"http://www.braubrothersbrewing.com/"},{"abv":2.570299696434626,"address":"1501 East Wilson","category":"North American Lager","city":"Batavia","coordinates":[41.8539,-88.2776],"country":"United States","ibu":44,"name":"Light","state":"Illinois"},{"abv":12.008754631990913,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":89,"name":"Endless Summer Gold","state":"California"},{"abv":5.334447279859688,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":84,"name":"Lucky U Denver Special Bitter","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.6999998093,"address":"Heitzerstrae 2","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":0,"name":"Barock-Dunkel","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":10.988332616865383,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":32,"name":"Vashon Old Stock Ale","state":"Washington"},{"abv":5.5,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":16,"name":"IPA","state":"Washington"},{"abv":12.50847040768819,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":44,"name":"Faux Paddy Irish Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6,"address":"Unit 21-24 Batten Road Industrial Estate","city":"Salisbury","country":"United Kingdom","ibu":64,"name":"Pickled Santa","state":"Wiltshire"},{"abv":13.508303189334693,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":90,"name":"Harvest Ale","state":"Montana"},{"abv":7,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":67,"name":"Imperial Stout","state":"North Yorkshire"},{"abv":6.8000001907000005,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"In 1859 Col. Edwin L. Drake successfully drilled the first oil well in Northwest Pennsylvania. Because of the project known as \"Drake's Folly,\" Pennsylvania was actually responsible for almost half of the world's oil production until the 1901 oil boom in Texas. Erie Brewing Co. reflects on our regions oil history and oil rush by producing a crude oil Black, silky smooth, malt bonanza oatmeal stout.","ibu":81,"name":"Drake's Crude","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.5,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our Spring Saison is light blonde in color with a fresh hoppiness and a wild and rustic Brettanomyces character. Lighter in color and alcohol than our Saison Rue, yet equally complex in its own way. Perfect for warmer weather and Spring celebrations.","ibu":76,"name":"Saison De Lente","state":"California","website":"http://www.thebruery.com/"},{"abv":8.5399999619,"address":"104 Mill St.","category":"Irish Ale","city":"Fawn Grove","coordinates":[39.7323,-76.4496],"country":"United States","description":"Our Brigantine Smoked Porter, much like the high seas, can be a wild ride. This beer is dark brown and full bodied with roasted tones and a hint of chocolate. As if that weren't enough it finishes with a smoked flavor that seems right at home during cooler months here in Southern York County.","ibu":3,"name":"Brigantine Smoked Porter","state":"Pennsylvania","website":"http://www.southcountybrewing.com/"},{"abv":7.1999998093,"category":"North American Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"Constant addition of fresh Cascade and Willamette hops from Brad’s Stillwater hop garden during boil and fermentation process. Aromatic and caramel malts compliment the hop character for an incredibly balanced beer that celebrates the hop harvest without killing your tongue.","ibu":2,"name":"Harvestör Fresh Hop Ale","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":12.016630163965331,"address":"2050 Yavapai Dr","category":"Irish Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":46,"name":"Pullman Porter","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.3000001907,"address":"Brouwerslaan 1","category":"German Ale","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","ibu":107,"name":"Grolsch Amber Ale","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":5,"address":"529 Grant St. Suite B","category":"British Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Caramelized sugars lend a unique flavor and aroma to this lightly hopped, malty smooth, Scottish Export Ale.","ibu":26,"name":"Twisted Kilt Scotch Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":1.2889296504720715,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Chamomellow is an herbal golden ale infused with chamomile, which provides an enticing floral aroma. Chamomile is one of the oldest garden herbs used by ancient Egyptians and other cultures to battle illness, promote calm and relieve anxiety, hence the name Chamomellow. Dedicated to Caleb McLoughlin, a revolutionary brewer who created this elixir at Rogues Issaquah Brewhouse and won a Gold medal in the Herbs & Spice category at the 2003 Great American Beer Festival.\n\n\nChamemollow is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops, and infused with Chamomile. Available in a limited edition 22-ounce bottles (originally as Test Batch 1 - Gold Medal Series), and on draft at Rogues six Public Houses.","ibu":72,"name":"Chamomellow","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.1999998093,"address":"563 Second Street","category":"British Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Traditional English E.S.B. made with English malt and hops. Fruity aroma with an imparted tart flavor brought about by replicating the water profile in England at Burton on Trent.","ibu":23,"name":"Potrero ESB","state":"California","website":"http://www.21st-amendment.com/"},{"abv":2.091018240768092,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":25,"name":"Little Barley Bitter","state":"Minnesota"},{"abv":1.6031754670649712,"address":"636 Massachusetts","category":"North American Ale","city":"Lawrence","coordinates":[38.9718,-95.2357],"country":"United States","ibu":66,"name":"Ad Astra Ale","state":"Kansas","website":"http://freestatebrewing.com/"},{"abv":8.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":39,"name":"Moinette Blonde","state":"Hainaut"},{"abv":7.497024284149575,"category":"German Ale","city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":112,"name":"Weiss","state":"Colorado"},{"abv":9.820152850679644,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":43,"name":"Barrel Select Pils","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":6.206966219633369,"address":"842 East 65th Street","category":"North American Lager","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":100,"name":"Wheat Beer","state":"Indiana"},{"abv":8.022917563683317,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":39,"name":"Buzz Beer","state":"Ohio"},{"abv":1.4494784836497387,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":66,"name":"Firehouse Red","state":"Washington"},{"abv":2.26126754363953,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":34,"name":"Red Truck Ale","state":"British Columbia"},{"abv":11.873495117371993,"address":"1650 Dell Range Boulevard","category":"Irish Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":38,"name":"Big Horn Total Disorder Porter","state":"Wyoming"},{"abv":6.081698869042057,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":19,"name":"River Back Jack IPA","state":"Illinois"},{"abv":4.314637414884316,"address":"2002 Broadway","category":"Irish Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":7,"name":"Old Fort Porter","state":"Indiana"},{"abv":5.3000001907,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Trail Blaze Organic American Brown Ale exhibits a beautiful deep copper color and an evident hop bitterness & aroma. This is balanced against roasted caramel-like characteristics and hints of chocolate. \n\n\nOur first in a series of organic beers is named for the markers that keep a hiker on the correct path. Many of the hiking trails in our area have simple to very distinguished trail blazes. After a long hike, there is nothing better at the end of the trail than ABC organic ale.","ibu":90,"name":"Trail Blaze Organic Brown Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.79756882822479,"city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":102,"name":"Black Lion Lev Czech Premium Dark Beer"},{"abv":1.7534243180853182,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":65,"name":"Kozlov Stout","state":"California"},{"abv":13.004941458370842,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":77,"name":"Dunkelweizen","state":"Texas"},{"abv":6.0637594591174695,"address":"200 North Tenth Street","category":"German Lager","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":78,"name":"Maibock","state":"Iowa"},{"abv":4.885565704879696,"category":"German Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":50,"name":"Hefeweizen","state":"Wisconsin"},{"abv":7.8000001907000005,"address":"800 Paxton Street","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":69,"name":"Scratch #24 2009 Van de Hoorn","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.0999999046,"address":"3300 Old Seward Highway","category":"North American Ale","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"A hop lover and beer connoisseur's favorite, this ale is surprisingly drinkable and fully delights with its hoppy aromatics. Stick your nose in this one.","ibu":6,"name":"Fairweather IPA","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":5.8000001907000005,"address":"2501 Southwest Boulevard","category":"Irish Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Irish Ale, Boulevard’s spring seasonal beer, is our Midwestern tribute to the legendary red ales of old Ireland. Our recipe combines six kinds of pale and roasted barley malts to provide a rich, toasty flavor and tawny reddish hue.","ibu":112,"name":"Boulevard Irish Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"address":"35 Soi Prommit, Sukumvit 39","category":"North American Lager","city":"Bangkok","coordinates":[13.7234,100.476],"country":"Thailand","description":"Phuket Beer was created as a refreshing ‘boutique’ beer in view of the exotic island of Phuket with a much lower formula of bitterness than any other domestic rivals in Thailand.\n\n\nPhuket Beer is the first regional beer brewed in Thailand and is positioned to appeal to both the international markets as well as the local population. This is manifested through the label and packaging designs presented in both English and Thai languages.\n\n\nPhuket Beer is well positioned as a premium brand located somewhere between the local standard brands and the imported premium brands. The efforts were inspired from the feeling of being in a tropical paradise. Thai beer consumers have become more sophisticated over the years, by selecting and demanding premium and high-end beers. initial consumer target was Phuket Island's significant tourist sector, a sector that is prone to taste and drink locally produced brands.However, strategic positioning and selected marketing of Phuket Beer has resulted in a ray of successful export markets with overwhelming response from the initial markets overseas.\n\n\nThe philosophy is to provide a ‘tropical lifestyle’ drinking experience in a fresh clean light tasting lager beer with 5% alcohol by volume, which is in total contrast to the other Thai beers that are very bitter with higher alcohol content.","ibu":85,"name":"Phuket Lager","website":"http://www.tropbevco.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"It's our very first beer - golden medium-bodied and brewed as a traditional Munich Helles style pale lager. It features a rounded maltiness without being too heavy. And like every proud Texan, it has a good head, is pleaseant but never overly sweet.","ibu":93,"name":"Blonde Lager","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":9,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","ibu":66,"name":"Green Flash Imperial India Pale Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":9.481376071395376,"address":"102 North Market Street","category":"German Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This traditional German-style wheat beer is rich in banana and clove undertones, with a wonderful frothy head.","ibu":106,"name":"Bube's Hefeweizen","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":4.5,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A refreshing neo-BerlinerWeisse fermented with honest-to-goodness peaches to (get this!) 4.5% abv! Because extreme beers don't have to be extremely boozy! Available in 4-pack and draft during the sweaty months.","ibu":112,"name":"Festina Pêche","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.0999999046,"address":"1201 First Avenue South","category":"North American Ale","city":"Seattle","country":"United States","ibu":38,"name":"DPA","state":"Washington"},{"abv":5.5,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":55,"name":"Salmon Bay E.S.B.","state":"Washington"},{"abv":0.6973283850309608,"address":"13450 - 102 Avenue","category":"North American Ale","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":23,"name":"Steelhead Stout","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":10.5,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":11,"name":"Grand Cru","state":"Lige"},{"abv":16.030000687,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":65,"name":"Mephistopheles Stout","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":2.3913240962508695,"address":"636 East Main Street","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":119,"name":"Hell for Certain","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":116,"name":"Ertvelds Wit","state":"Oost-Vlaanderen"},{"abv":5.029352698644223,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":100,"name":"Classic Oatmeal Stout","state":"Wisconsin"},{"abv":5.663472353677681,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":57,"name":"Double Hop Premium Ale","state":"Cheshire"},{"abv":1.7853296819725717,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":93,"name":"Roundhouse Rye","state":"Wisconsin"},{"abv":8.916037300308643,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":113,"name":"Christmas Ale 2003","state":"California"},{"abv":5.6999998093,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light in color, full bodied and very malty, this lager has a toasted malt flavor. Brewed in February and usually on tap by May with a keg of the previous year's batch.","ibu":17,"name":"Boltwood Bock","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":6.6501450294324735,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":113,"name":"Monk Brown Ale","state":"Antwerpen"},{"abv":3.7326055025390636,"category":"Irish Ale","city":"Marblehead","coordinates":[41.5403,-82.7355],"country":"United States","ibu":2,"name":"Port Clinton Porter","state":"Ohio"},{"abv":4.467520306611396,"category":"German Lager","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":1,"name":"Märzen","state":"Illinois"},{"abv":8.5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This Specialty Beer Black Double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \"Specialty Beer\" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale. Then this ale was aged in oak barrels for several month","ibu":59,"name":"Specialty Beer: Oak-Aged Black Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.6999998093,"address":"2800 North Reading Road","category":"North American Lager","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Stoudt's Gold Lager is widely recognized as one of the finest German-style beers brewed in America. Brewed with the finest specialty malts and noble hops, this light bodied, easy drinking lager features a subtle balance of sweet malt and clean crisp hops.","ibu":24,"name":"Stoudt's Gold Lager","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":5.4000000954,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Our Crisp, lighter in body, yet still full flavored brew. Before Prohibition, thirst quenching lagers were firm and substantial, and enjoyed in huge volumes. This recipe incorporates yeast from the C. Schmidt Brewery of Philadelphia and a small portion of brewer's corn to recreate an \"industrial\" lager of the turn of the century. \n\n\nReleased April 6 to celebrate Prohibition's repeal 73 yrs. ago, Throwback Lager is a draft only release that should flow into June","ibu":114,"name":"Throwback Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.6999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This amber ale is dosed with cinnamon, nutmeg, ginger, and fresh orange zest. It is well balanced with low hop flavor and nice hint of the spices in the finish. This spiced ale is not overbearing; rather it is smooth and very drinkable.","ibu":40,"name":"Grinnin' Grizzly Spiced Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":9.5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Strong and sensual, this golden, Belgian-style ale glows with goodness. The richness of German malts and Belgian yeast are tempered by a sparkling approach and overall light body. Considerable depth of character with abundant herbal, fruity notes make this one to savor.","ibu":76,"name":"Golden Monkey Tripel","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5,"address":"102 Kifissou Avenue","city":"Athens","country":"Greece","ibu":65,"name":"Athenian"},{"abv":10.298664397206194,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":83,"name":"Valencia Wheat","state":"California"},{"abv":8,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":113,"name":"Brune / Brown","state":"Lige"},{"abv":9.8999996185,"category":"North American Lager","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":94,"name":"Imperial Gold Malt Liquor","state":"Oregon"},{"abv":2.642613666004351,"address":"Werbellinstrasse 50","city":"Berlin","coordinates":[52.4793,13.4293],"country":"Germany","ibu":34,"name":"Weisse","state":"Berlin"},{"abv":5,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"Medium-bodied with an appealing amber hue, this is the First Ale of the Republic. Its organic pale, Munich, and crystal malts create a gentle sweet character that is difficult to resist. From organic Hallertauer hops come a zesty flavor and aroma that beautifully balance Organic Amber's malt profile. The result: Truly delicious ale that salutes organic farmers and all the goodness they bring to our tables.","ibu":9,"name":"Organic Amber Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":10.324876917424977,"address":"Kaiser-Ludwig-Platz 1","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":3,"name":"Kloster Edel-Hell","state":"Bayern"},{"abv":4.3000001907,"address":"Dominikanerstrae 6","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","ibu":104,"name":"Schlenkerla Helles Lagerbier","state":"Bayern"},{"abv":4.9000000954,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":0,"name":"Pilsner","state":"Bayern"},{"abv":6.0999999046,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"The September hop harvest is a once-a-year opportunity to brew with fresh hops, also called “wet hops.” Given the perishable nature of just-harvested hop cones, they are shipped overnight to Great Divide shortly after harvest. The morning of the scheduled hop delivery in Denver, Great Divide’s brewers begin brewing Fresh Hop and are ready to hop the beer just as the fresh hops are delivered.\n\n\nUsing fresh hops is a big endeavor, requiring four to five times the volume of hops compared to the usual process of using pelletized hops. This complex process brings impressive results: Fresh Hop is an American-Style Pale Ale with moderate hop bitterness marked by a unique and intensely grassy hop flavor and aroma. Fresh Hop is a superbly refreshing, medium bodied, light-copper colored pale ale.","ibu":26,"name":"Fresh Hop Pale Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":11.869383180840549,"address":"471 Kalamath Street","category":"North American Lager","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":103,"name":"Hefe Proper Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7.5,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":69,"name":"Imperial Hefeweizen","state":"California"},{"abv":6,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":36,"name":"Oak Aged IPA","state":"Nebraska"},{"abv":3.690106795918109,"address":"1401 Miner Street","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":27,"name":"Cocoa Porter","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.105908199074182,"address":"123 East Doty Street","category":"Other Style","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":87,"name":"Raspberry Ale","state":"Wisconsin"},{"abv":7.243875854820589,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":99,"name":"St. Paul Double","state":"Antwerpen"},{"abv":3.6453312982633412,"city":"Henley-on-Thames","coordinates":[51.5375,-0.9046000000000001],"country":"United Kingdom","ibu":30,"name":"Henley Ale","state":"Oxford"},{"abv":10.681701521139997,"address":"23 Commerce Street","category":"North American Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":118,"name":"Mahogany Ale","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":0.2687436465950066,"address":"Wisbech PE13 1LN","category":"Irish Ale","city":"Wisbech","coordinates":[52.6643,0.1595],"country":"United Kingdom","ibu":107,"name":"Flag Porter 1825 Original","state":"Cambridge"},{"abv":12.892883076971236,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":10,"name":"IPA","state":"Indiana"},{"abv":9.882674007108076,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":69,"name":"1,2,3 Ale","state":"Michigan"},{"abv":5.829153375168756,"city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":13,"name":"Pumpkin Ale","state":"Indiana"},{"abv":4.8000001907000005,"address":"50 North Airport Parkway","category":"North American Lager","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":56,"name":"Meridian Street Premium Lager","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":11.875440723977167,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":59,"name":"Queen Anne Light","state":"Minnesota"},{"abv":14.313676554684971,"address":"426 St.Peter Street","category":"North American Ale","city":"Saint Paul","coordinates":[44.9467,-93.097],"country":"United States","ibu":16,"name":"Brown Trout Brown","state":"Minnesota"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":117,"name":"Pale Pale Boss Ale","state":"Iowa"},{"abv":4.5,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":55,"name":"Premium"},{"abv":6.045450251959876,"address":"279 Springfield Avenue","category":"German Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":90,"name":"Blackforest Lager","state":"New Jersey"},{"abv":11.8578798800704,"address":"1 Fairmount Road","category":"Irish Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":99,"name":"Lazy Jake Porter","state":"New Jersey"},{"abv":12.653097498030734,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":106,"name":"Oatmeal Stout","state":"New Jersey"},{"abv":4.989519735809234,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":22,"name":"Witbier","state":"Wisconsin"},{"abv":4.1999998093,"address":"701 West Glendale Avenue","category":"German Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This coarse-filtered wheat ale is fermented with a German yeast culture for a refreshingly light spiciness and hints of citrus fruit. A cloudy appearance and an immense creamy head are characteristic of this lightly hopped Bavarian Brew.","ibu":25,"name":"Hefe Weiss","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.979170681746431,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":94,"name":"Reichelbräu Eisbock","state":"Bayern"},{"abv":5.260889913111178,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":104,"name":"Iris","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":9.6000003815,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":25,"name":"Dorado Double IPA","state":"California","website":"http://www.ballastpoint.com/"},{"abv":0.3545273671108218,"address":"333 North Main Avenue","category":"Irish Ale","city":"Gresham","coordinates":[45.5001,-122.431],"country":"United States","ibu":15,"name":"Powell Porter","state":"Oregon"},{"abv":6.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Close your eyes. The delicate aroma, flavor, texture of this beer whisper “witbier”. Now open your eyes. The color is deceiving. You take another sip. Yes, witbier … but black as night. It is something quite peculiar—BuT it is brilliant—something shimmering and [not so] white.","ibu":33,"name":"Cosmic Black Witbier","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.6999998093,"address":"4405 Honoapiilani Highway #217","category":"Irish Ale","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"Our Coconut Porter is a classic robust porter spiced with all natural toasted coconut. It is black in color and crowned with a creamy, dark tan head. It begins with a malty-toasted coconut aroma followed by a rich, silky feel with tastes of dark malt, chocolate, and hints of coffee. It then finishes with flavors of toasted coconut and hoppy spice to balance the finish.","ibu":67,"name":"Maui Coconut Porter","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":4.5999999046,"address":"5401 Linda Vista Road #406","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"So where can you taste a Kolsch? There are no Kolsches being imported into the United States. So you could fly to Cologne. A better idea is to come to Ballast Point Brewing Company and try our Yellowtail Pale Ale Kolsch. We make it with 5% Wheat, finish hop it with Liberty and Tettnanger hops, and ferment it with a yeast we borrowed from a brewery in Cologne. So come on in and enjoy a taste of the Rhineland!!","ibu":35,"name":"Yellowtail Pale Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":7.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"There is a long story to this malty ale. It was first brewed in the spring 2006 in Nørrebro Bryghus in Copenhagen, Denmark, as a joint brew between Nøgne Ø and Nørrebro. Nørrebro calls their version “Double Knot Brown”. It is the perfect thing to drink with almost any cheese.","ibu":70,"name":"Nøgne Ø Imperial Brown Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A Belgian, lightly spiced pale ale. This caramel colored, light-bodied brew has a mild caramel flavor, a hint of orange peel and coriander and slight hop bitterness.","ibu":87,"name":"Celis Pale Bock","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7.0999999046,"address":"701 S. 50th Street","category":"Belgian and French Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A swanky interpretation of a double strength wheat beer, fermented solely by champagne yeast. Notes of tart citrus and white grape soothe the pallet in this sparkling ale.","ibu":43,"name":"Bubbly Wit","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":5.0999999046,"address":"800 Paxton Street","category":"North American Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Old world brewing techniques combine with Noble hops for Scratch #6-2007.\n\nThis Export Lager features a single stage decoction—a first for Tröegs Brewery. After combining barley and water we transfer a portion of the mash to the brew kettle for a quick boil. The heated mash is then returned to the mash kettle and the brewing process continues. This process deepens the malt character and adds a subtle toffee backbone to this delicious lager.\n\n\nWe’ve added Magnum hops for bittering and Czech Saaz hops for aroma to create a classic European Noble hop flavor. \n\n\nScratch #6-2007 is unfiltered, so there will be a slight haze to the beer.","ibu":86,"name":"Scratch #6 2007","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":10.5,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"\"Piraat is a 'living' beer, which means that after the primary fermentation in the keg, the beer also continues to evolve during the secondary fermentation in the bottle or in the keg after packaging. This is a world-class amber colored beer. American beer connoisseurs give it 98 out of 100. No other beer scores better. The flavor is so complex and so rich that every swallow conjures up new associations. Note the spicy light sweetness, which is richly balanced with the robust bitterness of the hops. It is an adventure of a beer, a treat.\";\"0","ibu":70,"name":"Piraat 10.5%","state":"Oost-Vlaanderen"},{"abv":9,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Imperial Red is the newest addition to Rogues award winning Imperial Family of XS products. The Imperial Red recipe originates from Rogues Eugene City Brewery and is being produced in Newport for distribution (note, initially during 2007 in kegs only to JLS accounts. A 750-ml ceramic swing-top bottle and 13.2 gallon kegs will be available in 2008.) Imperial Red has already garnered international acclaim and awards, including a Bronze Medal at the 2006 Great American Beer Festiva and recently it was named Grand Champion at the US Beer Tasting Championships! \n\n\nDeep copper chestnut color with toffee, brown sugar, nuts, and spice amomas. A rich supple entry leads to an off-dry medium body of tangy raisins and citrus marmalade, bittersweet chocolate, and mild spice flavors. It finishes with a long nutty, fruity fade. \n\n\nImperial Red is brewed with Crystal, Chocolate, Munich and two-row Pale Malts; Palisade and Aroma Crystal hops, Pacman Yeast, and Free Range Coastal Waters.","ibu":88,"name":"Imperial Red","state":"Oregon","website":"http://www.rogue.com"},{"abv":9.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Above and beyond an India Pale Ale--I2PA is radically hopped with an intense aroma and hop bitterness. Unfiltered and aged for 9 months before it leaves the brewery--not for the faint of heart. I2PA is brewed with two-row Pipkin Pale malts, Saaz, Cascade and Northwest Golding hops. I2PA is available in a new 750ml Silkscreened black ceramic bottle and on draft.","ibu":112,"name":"Imperial India Pale Ale / I2PA","state":"Oregon","website":"http://www.rogue.com"},{"abv":12.529146081076737,"address":"233 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":50,"name":"Rye I Oughta","state":"Wisconsin"},{"abv":7.623298676751987,"address":"256 Moody Street","category":"North American Ale","city":"Waltham","coordinates":[42.3718,-71.2367],"country":"United States","ibu":94,"name":"Hops Explosion IPA","state":"Massachusetts"},{"abv":5.276790133197169,"address":"100 Little Dam Road","city":"Dillon","coordinates":[39.6282,-106.059],"country":"United States","ibu":25,"name":"Extra Special Bitter","state":"Colorado"},{"abv":5.302256932910653,"address":"11 North Palouse","category":"Irish Ale","city":"Walla Walla","coordinates":[46.0697,-118.336],"country":"United States","ibu":119,"name":"Penitentiary Porter","state":"Washington"},{"abv":3.9253848371228894,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":41,"name":"Grumpy Two","state":"Wisconsin"},{"abv":6.437632380295603,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":101,"name":"Storm Ale","state":"Nebraska"},{"abv":5.5,"address":"50 North Airport Parkway","category":"North American Ale","city":"Greenwood","coordinates":[39.615,-86.0901],"country":"United States","ibu":90,"name":"Indiana Amber","state":"Indiana","website":"http://www.oakenbarrel.com/"},{"abv":4.0999999046,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced in 1994.","ibu":109,"name":"Bud Ice Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.566956245160036,"ibu":16,"name":"07/22/10 08:00 PM"},{"abv":6.5999999046,"address":"Dinant","category":"North American Ale","city":"Dinant","coordinates":[50.2606,4.9122],"country":"Belgium","ibu":46,"name":"Leffe Blonde","state":"Namur"},{"abv":5.1999998093,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A refreshing, blond colored pale ale. Bell's pale ale is made almost exclusively from pale malt. It expresses a spicy floral hop aroma and taste.","ibu":111,"name":"Pale Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"Irish Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Inspired by local artist & roaster Michael Allen's eccentricly-named blend of coffee beans, Midnight Sun's brewers designed a beer recipe and infusion process that perfectly captures the alluring aroma, satisfying flavor and curious legend of Allen's Arctic Rhino Coffee. \n\n\nArctic Rhino Coffee Porter combines two quintessential Pacific Northwest favorites: coffee and ale. The result is wonderfully romantic and robust--a duel-fueled porter that melds charismatic dark malt with freshly roasted coffee beans. The (un)rest is up to you.","ibu":66,"name":"Arctic Rhino Coffee Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5999999046,"category":"North American Lager","city":"Latrobe","coordinates":[40.3212,-79.3795],"country":"United States","ibu":104,"name":"Rolling Rock","state":"Pennsylvania"},{"abv":12.213462204605143,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":9,"name":"Wintertime Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5.5999999046,"address":"rstadvgen","category":"British Ale","city":"Falkenberg","coordinates":[56.9002,12.5405],"country":"Sweden","ibu":14,"name":"Falcon Lagrad Gammelbrygd"},{"abv":11.521667600333192,"category":"North American Ale","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":38,"name":"No Doubt Stout","state":"Oregon"},{"abv":8.748605520569921,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":60,"name":"Nitro Stout","state":"California","website":"http://avbc.com/"},{"abv":14.160323378904014,"category":"Irish Ale","city":"Mountain View","coordinates":[37.3861,-122.084],"country":"United States","ibu":79,"name":"Rosed Porter","state":"California"},{"abv":9.438762536394634,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":94,"name":"Classic Pale","state":"Texas"},{"abv":14.0434232076808,"address":"High Street","category":"North American Ale","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":23,"name":"India Ale","state":"North Yorkshire"},{"abv":7.804703392938578,"address":"200 North Tenth Street","category":"North American Ale","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":10,"name":"Barnstormer Pale Ale","state":"Iowa"},{"abv":11.671202247505214,"address":"Waffnergasse 6-8","category":"North American Lager","city":"Regensburg","coordinates":[49.0156,12.0913],"country":"Germany","ibu":13,"name":"Schierlinger Roggen","state":"Bayern"},{"abv":11.57617481145803,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"No mere beverage could satisfy the thirst of the courageous and gallant soldiers who stood guardover the colonies of the British Empire. Their thirst could only be quenched by a full-bodied hearty Ale; an Ale balanced with rich flavorful hops. We are proud to offer our interpretation of this English style India Pale Ale for those who loong for the time when once your duty was complete, the taste of a fine Ale was reward enough for a job well done.","ibu":21,"name":"Cricket Hill Hopnotic","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":9.583764283136055,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This clean, crisp ale was dry-hopped and is as refreshing as a plunge in the Slippery Rock Creek.","ibu":9,"name":"Paddlers Pale Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":7,"address":"725 Fourth Street","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Brown ale aged in Pinot Noir wine barrels for one year with sour cherries, Brettanomyces yeast, and Lactobacillus & Pedicoccus bacteria.","ibu":83,"name":"Supplication","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4,"category":"British Ale","country":"New Zealand","ibu":1,"name":"Speight's Gold Medal Ale","website":"http://www.steinlager.co.nz/"},{"abv":8.5,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Saison Rue is an unfiltered, bottle conditioned, Belgian/French-style farmhouse ale. This is a beer of subtlety and complexity, with malted rye, spicy, fruity yeast notes, biscuit-like malt backbone, and a slight citrus hop character. With age, this beer will dry out and will become more complex with rustic notes of leather and earth from the contribution of a wild yeast strain. Being a Saison, Saison Rue is ambiguous unto itself as it is a different beer when fresh and when aged. We hope you enjoy it in all of its incarnations.","ibu":7,"name":"Saison Rue","state":"California","website":"http://www.thebruery.com/"},{"abv":8.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","description":"Schneider & Brooklyner Hopfen-Weisse is a collaboration between brewmasters Hans-Peter Drexler of the Schneider Weissbier Brewery and Garrett Oliver of the Brooklyn Brewery. Garrett and Hans-Peter have long admired each others beers. Now together they bring you a new sensation, a pale weissbock robustly dry-hopped with the Hallertauer Saphir variety grown in the fields near the Schneider brewery. Hoppy, zesty and supremely refreshing, Scheider & Brooklyner Hopfen-Weisse is a delicious blend of Bavarian craftsmanship and American ingenuity.","ibu":33,"name":"Hopfen Weisse","website":"http://www.schneider-weisse.de"},{"abv":7.8000001907000005,"address":"6923 Susquehanna St.","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"THE UGLY AMERICAN is a perfectly enjoyable classic Belgian Trippel corrupted almost beyond recognition with a completely inappropriate amount of US hops. Only in America can such excessive excesses be fully appreciated, celebrated, and enjoyed...and for now, only at East End Brewing! To make this one a little more cellar-able, and a lot more portable, it's going into the bottle.","ibu":74,"name":"Ugly American","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":6.0999999046,"category":"North American Ale","city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":67,"name":"Regiment Pale Ale","state":"Pennsylvania"},{"abv":7.1999998093,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":110,"name":"Cambonator Doppelbock","state":"Bayern"},{"abv":11,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":3,"name":"Kasteel Bier Donker-Foncee","state":"West-Vlaanderen"},{"abv":6.5,"address":"St Peter's Hall","category":"North American Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":71,"name":"Cream Stout","state":"Suffolk"},{"abv":0.6682145824153862,"address":"113, rte Nationale","city":"Jenlain","coordinates":[50.3089,3.6285],"country":"France","ibu":29,"name":"Bière de Noël"},{"abv":5.4000000954,"address":"279 Springfield Avenue","category":"North American Lager","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":68,"name":"Hathor Red Lager","state":"New Jersey"},{"abv":2.4803342641935844,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":95,"name":"Beer Line 2000","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":14.873890651664178,"address":"375 West 910 South","category":"North American Ale","city":"Heber City","coordinates":[40.496,-111.42],"country":"United States","ibu":44,"name":"Tie Die Red","state":"Utah"},{"abv":8,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":79,"name":"Saxo","state":"Namur"},{"abv":11.660349443344485,"address":"2565 North Highway 14","category":"North American Lager","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":48,"name":"Mojave Gold","state":"California"},{"abv":9.5,"address":"620 South Madison Street","category":"North American Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","ibu":62,"name":"Russian Imperial Stout","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":6,"address":"302 N. Plum St.","category":"German Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Light and refreshing! This very bubbly Munich style weizen beer is highlighted by a spicy, banana finish.\n\n\nAvailable at the Brewery from May - October","ibu":39,"name":"Lancaster Hefe Weizen","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"Belgian and French Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An Abbey-style Dubbel ale. This dark amber brown ale is full of apple, raisin, and banana esters with a smooth malty finish.","ibu":76,"name":"Dubbel Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":9.6000003815,"address":"2105 N. Atherton St.","category":"Belgian and French Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An Abbey-style Tripel ale. This light colored traditional tripel is made with Pils malt and candisugar and fermented with a traditional yeast strain. Esterey and strong best describe this unique specialty beer.","ibu":42,"name":"Tripel Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.8000001907000005,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Cask conditioned ale has been the popular choice among brews since long before prohibition. We continue this pioneer spirit with our Wisconsin farmhouse ale. Brewed with flaked barley and the finest Wisconsin malts. We even give a nod to our farmers with a little hint of corn. \n\n\nNaturally cloudy we allow the yeast to remain in the bottle to enhance fullness of flavors, which cannot be duplicated otherwise. \n\n\nExpect this ale to be fun, fruity and satisfying. You know you're in Wisconsin when you see the Spotted Cow.","ibu":50,"name":"Spotted Cow","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":0.0018507548751911518,"address":"Utica NY 13502","category":"North American Lager","city":"Utica","coordinates":[43.1467,-75.1779],"country":"United States","ibu":52,"name":"Three Stooges Beer","state":"New York"},{"abv":1.6598580433086019,"city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":117,"name":"Dunkel Weizen","state":"Texas"},{"abv":6.932966657905361,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":68,"name":"Best Bitter","state":"Ontario"},{"abv":7.994570396268017,"city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":23,"name":"Harvest Gold","state":"Florida"},{"abv":7.0999999046,"category":"North American Ale","city":"Eugene","country":"United States","ibu":18,"name":"Watershed IPA","state":"Or"},{"abv":6.357188810262184,"address":"1800 North Clybourn Avenue","category":"Irish Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","description":"We begin with a custom mixture of dark and roasted barley malts, then we add the choicest hops. The resulting ale has a dark chestnut color and a deep nutty flavor. Brewed specially for Trader Joe's.","ibu":106,"name":"Black Toad Dark Ale","state":"Illinois"},{"abv":5,"address":"190 5th Street","category":"German Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A lightly hopped, refreshing, Bavarian style wheat ale that has hints of banana and clove in the finish. Available May until October.","ibu":56,"name":"The Livery Hefe Weizen","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.1999998093,"address":"40 Van Dyke St","category":"North American Ale","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","ibu":10,"name":"Hop Obama","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.516486509251867,"address":"100 Searsport Avenue","category":"British Ale","city":"Belfast","coordinates":[44.4295,-68.975],"country":"United States","ibu":5,"name":"McGovern's Oatmeal Stout","state":"Maine","website":"http://www.belfastbaybrewing.com/"},{"abv":0.7665435352319949,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A red ale with rich and smooth flavors of malted barley, balanced by underlying hints of dark fruit. Brewed in homage to our hometown tulip festival, Red Tulip evokes spring’s renewing spirit. Excellent with roasted pork, red-meats and dried fruit.","ibu":55,"name":"Red Tulip","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.4000000954,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"\"The Traditional British Pint\" lives on at Deschutes Brewery & Public House. One of the original three packaged beers, it is still available year-round, but only at our pub. Coppery in color and robust in flavor, Bachelor Bitter will leave your taste buds humming. Galena, Willamette and Kent Golding hops create fantastic hop bitterness, aroma and flavor.\n\n\nBachelor Bitter also kicked off the Bond Street Series that launched in April 2005. The Bond Street Series is a specialty line of beers available in 22-ounce bottles.","ibu":93,"name":"Bachelor Bitter","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":9.109917453609503,"address":"636 East Main Street","category":"German Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"It is a nice example of a Hefeweizen.","ibu":32,"name":"Hoppy Hefe","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":6,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A hop lover's delight! Our I.P.A. is loaded with Ahtanum, Tohmahawk, Palisade, East Kent, Goldings and finished with the ever popular Cascades, balanced with generous amounts of floor malted crisp Maris Otter barley.","ibu":38,"name":"Afterburner IPA","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.5999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bigger..Richer...Smoother, are all ways to describe a Marzenbier. Look for a toasted malt character balanced with slight hop bitterness. Marzenbiers are traditionally aged for months and unveiled to great celebration.","ibu":119,"name":"Saranac Marzenbier","state":"New York","website":"http://www.saranac.com"},{"abv":8.854635003498807,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"a special bottle dedicated to Jim Steen, member of the Professional Rodeo Coyboys Association and rogue extrodinaire.","ibu":77,"name":"Roughstock Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":8,"address":"1940 Olney Avenue","category":"Irish Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This robust dark brew has been created using rich Colombian dark roast coffee to celebrate our 10th anniversary in royal fashion. The enticing regal aromas of toffee and licorice lead to the coronation of taste; a palate of malty richness exhibiting chocolate and coffee notes, balanced by the noble and novel Mt. Rainer hop, all topped with a rich creamy crown. This very special offering will warm your soul and lift your spirits. Oh yeah, it also packs a royal kick at 8% alcohol.","ibu":62,"name":"Imperial Espresso Porter","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":46,"name":"Moinette Brune","state":"Hainaut"},{"abv":9,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":16,"name":"Gouden Carolus Tripel","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":5.6999998093,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":57,"name":"Piranha Pale Ale","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6.253184790051105,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":55,"name":"Red Ale","state":"California"},{"abv":4.8000001907000005,"address":"390 Capistrano Road","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":28,"name":"Harbor Light Ale","state":"California"},{"abv":8.5,"address":"Hauwaart 105","city":"Oudenaarde","coordinates":[50.831,3.6759],"country":"Belgium","ibu":14,"name":"Ename Tripel","state":"Oost-Vlaanderen"},{"abv":6.75,"address":"2400 State Highway 69","category":"German Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":40,"name":"Uff-Da Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.1999998093,"address":"1 Jefferson Avenue","category":"German Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"In 1888, After enduring one of the coldest winters on record, the employees of Jacob Leinenkugel's spring brewery crafted their first seasonal beer to celebrate the coming of spring. They blended dark and pale roasted malted barley with select hops and allowed for longer aging to create a robust beer with an exceptionally creamy head. Unchanged since 1888, You'll find our bock's sturdy bod and deep color perfect to draw you out of one season and the into next.","ibu":48,"name":"1888 Bock","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":13.927929049368178,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":113,"name":"Wallace","state":"Scotland"},{"abv":1.2510877342607718,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":0,"name":"Vondel","state":"West-Vlaanderen"},{"abv":14.123392951331258,"address":"Delaunoystraat 58/60","category":"Belgian and French Ale","city":"Molenbeek","coordinates":[50.8527,4.3311],"country":"Belgium","ibu":19,"name":"Gueuze","state":"Brussel"},{"abv":2.5484815286051954,"city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":68,"name":"Derailer ESB","state":"Colorado"},{"abv":7.689468972898654,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":8,"name":"Cyclops Barleywine","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":1.4206236945620965,"address":"424 South Gay Street","category":"North American Ale","city":"Knoxville","coordinates":[35.9657,-83.9181],"country":"United States","ibu":90,"name":"Black Bear Ale","state":"Tennessee"},{"abv":10.74757124446852,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":100,"name":"Stout","state":"Ohio"},{"abv":9.686619240884859,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":6,"name":"Nut Brown Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.85527894440757,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":70,"name":"Burning Skye Scottish Ale","state":"Nebraska"},{"abv":4.436073856344285,"address":"33 Main Street","category":"North American Ale","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":48,"name":"Hop Garden Pale Ale","state":"New Jersey"},{"abv":1.441891954186152,"address":"1295 North West Street","category":"North American Ale","city":"Wilson","coordinates":[43.4988,-110.877],"country":"United States","ibu":29,"name":"Moose Juice Stout","state":"Wyoming"},{"abv":7.8636566986126955,"address":"Alte Akademie 2","category":"German Lager","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":6,"name":"Festbier","state":"Bayern"},{"abv":2.0367020285972104,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":112,"name":"Reserve Speciale / Spéciale Noël","state":"Hainaut"},{"abv":7.5,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":54,"name":"Northwind Imperial Stout","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":5,"city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":115,"name":"Classic Pilsener","state":"Wisconsin"},{"abv":14.53655173042756,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":118,"name":"Mermaid Red","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":4.8000001907000005,"address":"620 South Madison Street","category":"British Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"English style best bitter. It is a traditional English pub ale that is easy drinking, often referred to as a \"session beer\". It is medium-bodied and copper colored with a noticeable malt flavor up front that finishes with a hop bitterness and floral hop flavor.","ibu":90,"name":"Anvil Ale","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":13.280182150028857,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":3,"name":"Hop Hazard","state":"Pennsylvania"},{"abv":7,"address":"555 North Mill Street","category":"North American Ale","city":"Aspen","country":"United States","description":"Have you ever heard of an ESB? In most cases, it stands for Extra Special Bitter, and man is this red extra special. Conundrum walks the line between a malt-centric sweet ale and a hop-centric bitter ale so well, it","ibu":65,"name":"Conundrum Red Ale","state":"Colorado","website":"http://aspenbrewingcompany.com"},{"abv":9,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A dry and stupendously hopped medium bodied Imperial IPA brewed with Canadian two-row malt, dextrose sugar and lots of American hops. Arctic Panzer Wolf has superior aromas of marmalade, white wine, pine and apricot all mixed with an intense American hop bitterness.","ibu":93,"name":"Arctic Panzer Wolf","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":9.3999996185,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":53,"name":"Canadian Breakfast Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":1.3350104694338893,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":67,"name":"2xIPA","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A unique 7% Belgian blonde ale, flavoured with juniper berries. The beer has bittersweet malt flavours, and a heady perfumed aroma of orange and juniper.","ibu":90,"name":"Abbaye de St Amand","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":8,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Country of origin: India \n\nBeer type: Lager \n\nAlcohol content by volume: < 8 % by volume \n\nCarbohydrates: - \n\nTaste: Smooth and strong with a rich malty taste \n\nMalts: Indian malts, 6 row barley \n\nHops: Hops extract from Germany and Indian hops palate \n\nColour: Golden yellow \n\nAvailability: India \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml, 330 ml Indian standard glass bottle ; 500 ml cans and 330 ml cans,( in select markets) \n\n\nhttp://www.sabmiller.in/brands_knock-out.html","ibu":17,"name":"Knock Out","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":12.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"\"Black, dense, and rich, this is a great ale for the cellar.\" This big brew is made with molasses and brewer's licorice.","ibu":58,"name":"Bell's Batch 9000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.4000000954,"address":"Cnr Turumaha and Herbert St","category":"Irish Ale","city":"Greymouth","coordinates":[-42.4505,171.207],"country":"New Zealand","description":"Monteith’s Celtic Beer is considered an ‘Irish-style ale’ in the heritage of beers of a burnt-red colour traditionally brewed in the Emerald Isle.\n\n\nMonteith’s Celtic Beer has a dry roasted malt flavour characteristic of this style of brewing. This malty characteristic and crisp dryness is derived from malts of the roasted chocolate malt style. The hop character is medium to allow the chocolate malts to show through.\n\n\nMonteith’s brewers have been able to develop traditional ale fermentation characters while allowing the interesting roasted malt notes to come through in the aroma.","ibu":111,"name":"Monteith's Celtic Beer","website":"http://www.monteiths.com/nz/"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"A massive beer in every sense of the word. A stronger and more contemplative version of our Lost and Found Ale. Judgment Day is the base beer for our Cuvee de Tomme. Many of the Trappist Breweries produce a version of beer which ages incredibly well for many years to come. And, since none of us knows when the end of the world is coming, we suggest you stock up with lots of Lost Abbey beers so that when the end of the world magically appears from no where, you’ll have a beer or two on hand for even the stingiest of angels. Available in 750ml bottles and on draft at select inspired locations.","ibu":47,"name":"Judgement Day","state":"California","website":"http://www.lostabbey.com/"},{"abv":9,"address":"701 Galveston Ave","category":"Other Style","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Warm up the long, cold nights of winter with Rahr's latest seasonal offering. Wonderfully robust, rich and full-bodied, Rahr's Winter Warmer is crated in the fine British tradition of holiday ales. Perfect for either holiday gatherings or quiet evenings at home.","ibu":20,"name":"Rahr's Winter Warmer","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Rahr's Buffalo Butt is a smooth, medium-bodied amber lager. Notes of caramel with a sound malt character. Nice hop finish, it's as smooth as a baby buffalo's...!","ibu":38,"name":"Buffalo Butt","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.5,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Munich Dark is a blend of dark malts that creates a deeper hue than some other beers brewed in this style. The grains which create a malty chocolate-like flavor also add a warm malty nose that mingles with the subtle hop aroma. This medium bodied beer is balanced quite well with a moderately bitter hop finish.","ibu":25,"name":"Harpoon Munich Dark","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.8000001907000005,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"The ale by which all others should be measured. With its famous cloudy sediment and its distinctive balance of malt, hops and fruity characters, the old 'Red Label' is a tasty slice of Coopers history. \n\n\nLittle has changed since Thomas Cooper produced his first batch of Coopers Sparkling Ale in 1862. It's still brewed naturally using the century old top fermentation method and it still tastes great! \n\n\nSparkling Ale contains no additives or preservatives.","ibu":108,"name":"Coopers Sparkling Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":11.213361463167155,"address":"Brauhausplatz 1","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":48,"name":"Golden Abbot Lager","state":"Brandenburg"},{"abv":9.807466907583946,"address":"2323 N Milwaukee Ave","category":"North American Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"An amber pale ale dry hopped with a blend of American hops.","ibu":14,"name":"Iron Fist Pale Ale","state":"Illinois","website":"http://revbrew.com/"},{"abv":13.035250900834368,"address":"519 Seabright Avenue #107","category":"North American Ale","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":99,"name":"Blur IPA","state":"California"},{"abv":0.8408063725918569,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":98,"name":"Stillwater Rye","state":"Montana"},{"abv":8.3163430303359,"address":"7474 Towne Center Parkway #101","category":"Irish Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":74,"name":"Porter","state":"Nebraska"},{"abv":2.9891452001235153,"address":"1101 North Water Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":71,"name":"Old World Oktoberfest","state":"Wisconsin"},{"abv":3.317514942225178,"address":"233 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":101,"name":"Downtown Lites Honey Ale","state":"Wisconsin"},{"abv":14.96320891717907,"category":"Other Style","city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":19,"name":"Raspberry","state":"Texas"},{"abv":5.8000001907000005,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":103,"name":"Mt.Tam Pale Ale","state":"California"},{"abv":11,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":42,"name":"Immort Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":13.31572053860648,"address":"467 North High Street","category":"North American Ale","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":14,"name":"Pale Ale","state":"Ohio"},{"abv":1.189265867640219,"address":"639 Conner Street","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":42,"name":"Hazelnut Brown","state":"Indiana"},{"abv":8.408096757595583,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":11,"name":"Imperial Pale Ale","state":"Missouri"},{"abv":14.047735351701409,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":33,"name":"Auburn","state":"Indiana"},{"abv":18,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A strong ale brewed with a ridiculous amount of pureed raspberries (over a ton of em!).","ibu":36,"name":"Fort","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.1999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Arrogant Bastard Ale aged in oak barrels.","ibu":74,"name":"Oaked Arrogant Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.3000001907,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Light in color, medium body, with a hop bitterness and Cascade hop finish.","ibu":43,"name":"Cascade IPA","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":6.329063489362107,"address":"310 Commercial Drive","category":"North American Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"Derives its name from the historical fact that at one time in Europe beer was about the only safe liquid to drink. Black Plague is Irish style dry stout brewed only in fall and winter and only in small batches to ensure the freshness so paramount to such an intensely roasted beer.","ibu":107,"name":"Black Plague Stout","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":5,"address":"929 North Russell Street","category":"North American Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"A rich, flavorful Amber that's smooth and easy to drink. Drop Top is fermented by an American Ale yeast to produce beer with a clean flavor and fruity aroma. The velvet texture is from using Honey malt and a touch of milk sugar. The Alchemy bittering hops provide soft bitterness. Simcoe, a newly developed hop variety, adds unique hop flavor and aroma. 2004 GABF Gold Medal Award Winner","ibu":55,"name":"Drop Top Amber Ale","state":"Oregon"},{"abv":3.599999904599999,"address":"563 Second Street","category":"British Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"An American session beer. Loaded with hop character and a malty presence, but lower in alcohol.","ibu":14,"name":"Bitter American","state":"California","website":"http://www.21st-amendment.com/"},{"abv":7.1999998093,"address":"50 N. Cameron St.","category":"German Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Volks Weizenbock combines the strong malty component of a bock bier with the tangy, spiciness of the Hefe Weizen. This beer is brewed 1 1/2 times stronger than our Hefe Weizen and is aged commensurately longer for extra smoothness! \n\nVolks Weizenbock is \"The Peoples Beer\"!","ibu":59,"name":"Volks Weizenbock","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":14.986044920118399,"address":"2920 North Henderson Ave","category":"North American Ale","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":30,"name":"Icehaus Pale Ale","state":"Texas"},{"abv":13.569816663618484,"address":"2730 NW 31st Avenue","city":"Portland","coordinates":[45.5415,-122.713],"country":"United States","ibu":72,"name":"Zig Zag Lager","state":"Oregon"},{"abv":5.445910222580881,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":3,"name":"Ruby Mild","state":"Illinois"},{"abv":14.26954802160742,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":4,"name":"Golden Light","state":"Illinois"},{"abv":11.795536134268024,"address":"1208 14th Avenue","category":"North American Ale","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":98,"name":"Dempsey Stout","state":"Wisconsin"},{"abv":13.863558406885494,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":109,"name":"Black Hawk Stout","state":"Iowa"},{"abv":13.948618194570386,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Robust in character yet smooth in delivery, Cabin Fever is a roasty brown ale and a hearty, comforting companion for long, mind-bending winters. Its rye, roast and raisin notes play off a subtle caramel sweetness and culminate in a dry finish. Excellent with roasts, stews, caramelized onions and snowfall.","ibu":82,"name":"Cabin Fever","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":1.244685420494731,"address":"61 US Highway 1 South","category":"North American Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":53,"name":"Oatmeal Stout","state":"New Jersey"},{"abv":14.663986535211869,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":34,"name":"Dunkel","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":5.1999998093,"address":"Moosstrae 46","category":"German Ale","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":4,"name":"Eine Bamberger Weisse Hell","state":"Bayern"},{"abv":3.4000000954000003,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":31,"name":"Best Bitter","state":"Oxford"},{"abv":2.9425908586090554,"category":"German Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":46,"name":"Prostrator Doppelbock","state":"Wisconsin"},{"abv":11,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Pliny the Younger was Pliny the Elder's nephew, in the case of this beer, the \"Younger\" is a triple IPA. Pliny the Younger is hopped three times more than our standard IPA, and is dry hopped four different times.","ibu":67,"name":"Pliny the Younger","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":2.689266150321589,"address":"310 Commercial Drive","category":"North American Ale","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"“A complex, flavourful and fascinating ale lies just on the edge of being totally out of control.” —Stephan Beaumont, Celebrator Beer News\n\n\nIndia Pale Ale dates back to the 1700’s when Britain needed a hearty beer to ship to her troops in India. Because the ships had to cross the equator twice to get there, spoilage was a major problem until some clever brewer realized that both alcohol and hops are natural preservatives. James brews Hurricane I.P.A. in this tradition, and packs it with enough hops and alcohol to survive crossing the orbit of Mercury twice. The grist is 100% Gambrinus premium 2-row barley malt, copiously hopped with fresh Centennial and Willamette. The result is a rich, golden, intense beer with bitterness in perfect balance with residual sweetness.","ibu":14,"name":"HURRICANE I.P.A.","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":3.0472902452271566,"address":"375 Water Street","category":"Irish Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"As you look out over Vancouver's Coal Harbour, relax with this creamy delight. Don't let the colour fool you - this porter is rich but not overpowering with a head that lingers all the way down the glass. Just about anything goes with our Coal Porter, and you don't have to belong to \"High Society\" to enjoy a glass with oysters.","ibu":15,"name":"Coal Porter","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":10.60539707140885,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":50,"name":"Carhenge Wheat","state":"Nebraska"},{"abv":8.670842730806003,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":68,"name":"Hinterland Maple Bock","state":"Wisconsin"},{"abv":5.1999998093,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":94,"name":"Bruegel Amber Ale","state":"Oost-Vlaanderen"},{"abv":13.27846114134038,"address":"1 Worcester Road","category":"North American Lager","city":"Framingham","coordinates":[42.3037,-71.3966],"country":"United States","ibu":72,"name":"Wilmington Roggen Beer","state":"Massachusetts"},{"abv":10.735966988494065,"category":"North American Ale","city":"Colorado Springs","coordinates":[38.8339,-104.821],"country":"United States","ibu":83,"name":"Blind Side Pale Ale","state":"Colorado"},{"abv":13.958309852905149,"category":"German Ale","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":118,"name":"Hefeweizen","state":"California"},{"abv":6,"address":"Farmers Row","city":"Llanelli","coordinates":[51.6987,-4.1456],"country":"United Kingdom","ibu":20,"name":"Thames Welsh Ale","state":"Wales"},{"abv":5.5,"category":"North American Ale","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":33,"name":"Artist Colony Ale","state":"Iowa"},{"abv":8.287640885098524,"address":"23 Commerce Street","category":"German Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":52,"name":"Dunkel Doppel Weizen Bock","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":14.831942235582533,"category":"North American Ale","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":26,"name":"Sunset Amber","state":"Mississippi"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"This incredibly intriguing Imperial Stout is made by aging our Old Heathen in some very famous Oak barrels that were used for aging bourbon! What do we have when we are done? A stout whose very essence has been enhanced. A stout whose complexity has been increased. A stout with notes of Oak, whiskey and vanilla melding together to create a new sensation. Have we gone too far this time? We don't think so. Heresy is a step above and a leap beyond the extraordinary. Taste it and see what everyone is talking about. 8.0% ABV","ibu":37,"name":"Heresy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":1.8804557683479883,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":57,"name":"Sealane Steam","state":"California"},{"abv":7.995826766831195,"city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":92,"name":"Extra Special Bitter Ale","state":"Colorado"},{"abv":3.05188478660447,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":7,"name":"Limestone Crisp-Hoppy Pale Ale (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":1.3863603796730772,"city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":94,"name":"Raspberry Porter","state":"Nebraska"},{"abv":11.854442363899764,"city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":68,"name":"Kristall Weiss","state":"Illinois"},{"abv":9.914950562144757,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":44,"name":"Great Lakes Amber Ale","state":"Michigan"},{"abv":5,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":96,"name":"Fraoch Heather Ale","state":"Scotland"},{"abv":5,"address":"Niigata-ken Nishikanbara-gun","category":"Other Style","country":"Japan","description":"Japanese Rice Lager","ibu":82,"name":"Koshihikari Echigo Beer","website":"http://www.echigo-beer.jp/"},{"abv":8.1999998093,"address":"1680-F East Waterloo Rd.","category":"British Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Rich, malty flavors of caramelized and toasted grains dominate this strong Scotch ale. A hint of rye adds a crisp, Scotch-like, old-world beer character, reminiscent of a simpler life from centuries ago. “It is a wee bit heavy”","ibu":98,"name":"Outta Kilter Wee-Heavy Scotch Red Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.1999998093,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"The latest in our Brewers’ Select One-offs, India is a West Coast style IPA at [7.2%] ABV, with incredibly delicious hoppiness! Golden in color, this beer is tilted way over toward the hops by way of less specialty malts used in the mash. Draft will be going out to select wholesalers in PA, NJ, FL, and MD.” 70+ IBU’s.","ibu":6,"name":"Weyerbacher India","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":9,"address":"2051A Stoneman Circle","category":"North American Lager","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Neolithic humans evolved from nomadic hunters into a more settled agricultural society, changing life forever. The ‘founder’ crops they raised included wheat and barley. It is little surprise that the first examples of brewing appeared during this age.\n\n\nBrewers owe much to the epoch. Similarly, we thank our farmer friends of today for cultivating the ingredients the are responsible for the beers we now enjoy. Their laborious days spent ourdoors under the hot sun earn them respect, as well as a mark of distinction: the farmer's tan. Yes, the inevitable red and white hallmark of hard work.","ibu":105,"name":"Farmer's Tan Imperial Pale Lager","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":12,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"The irony of existentialism, the parody of being and the inherent contradictions of post-modernism, all so delicately conveyed by the blocky, pixelated arcade action have all been painstakingly recreated in this bottles contents.\n\n\nThis imperial stout is brewed with copious amounts of speciality malts, jasmine and cranberries. After fermentation we then dry-hop this killer stout with a bucketload of our favourite hops before carefully ageing the beer on French toasted oak chips.\n\n\nIt is all about moderation. Everything in moderation, including moderation itself. What logically follows is that you must, from time, have excess. This beer is for those times.","ibu":99,"name":"Tokyo","website":"http://brewdog.com/"},{"abv":4.8000001907000005,"address":"2519 Main St.","category":"Other Style","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"This beer is lighter style and dry to the palate and with the distinct flavor of wheat makes for a perfect thirst-quenching beer. It is the ideal drink for beer drinker who appreciates tradition and personality in their beer, but also seeks a lighter, refreshing style, perfect for the summer months.","ibu":34,"name":"Goofy Foot Summer Wheat","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":2.6715206633053192,"address":"1022 Main Ave.","category":"North American Lager","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"A light bodied golden ale, low in hop character with a spicy aroma from whole Czech Saaz hops.","ibu":93,"name":"Lightner Creek Lager","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":3.356727609421987,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":26,"name":"Genesis","state":"California","website":"http://www.shmaltz.com/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","ibu":119,"name":"Espresso Oak Aged Yeti","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":8.1999998093,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":104,"name":"Hop Stoopid","state":"California","website":"http://www.lagunitas.com/"},{"abv":4.5999999046,"address":"5N404 Harvest Lane","category":"Other Style","city":"St Charles","coordinates":[41.9455,-88.4507],"country":"United States","description":"An ale flavored with fresh tomatoes, oregano, basil and garlic.","ibu":87,"name":"Mamma Mia! Pizza Beer","state":"Illinois","website":"http://www.mammamiapizzabeer.com/"},{"abv":5.0999999046,"address":"1 Jefferson Avenue","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":63,"name":"Oktoberfest","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.5,"address":"1213 Veshecco Drive","category":"North American Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Anthony Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him a promotion to the rank of brigadier general and the sobriquet of \"Mad Anthony\". Erie Brewing Co’s Classic American Pale Ale features a balanced malt and hop flavor, which we feel the Nutty General would approve of despite his revolutionary tendencies.","ibu":36,"name":"Mad Anthony's Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":2.5556963105074217,"ibu":68,"name":"07/22/10 08:00 PM"},{"abv":4.9000000954,"address":"929 North Russell Street","category":"German Ale","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","description":"\"A golden unfiltered wheat beer that is truly cloudy and clearly superb. Ever since Widmer introduced Hefeweizen to America in 1986, ours has been the standard by which all other Hefeweizens are judged.\n\n1998 and 2006 GABF Gold Medal Award Winner\n\n2004 Gold Medal Beer Cup","ibu":22,"name":"Widmer Hefeweizen","state":"Oregon"},{"abv":7.6999998093,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A brew that gives you either sympathy for the devil or the courage to face him. Goes especially well with your favorite lost my girl/truck/dog/trailer song.","ibu":60,"name":"Hell Hath No Fury Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6,"address":"231 W. Fourth Street","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"This lightly colored ale has a delicate floral aroma and flavor reminiscent of Williamsports first breweries, clean and crisp with just a touch of lingering sweetness leading to a dry, balanced finish.","ibu":43,"name":"Billtown Blonde","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":1.0295928345290373,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":33,"name":"Czech Lager","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":9,"address":"514 South Eleventh Street","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":53,"name":"Grand Cru","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":8.278539817007239,"address":"1265 Boston Avenue","category":"North American Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":117,"name":"Sawtooth Ale","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":6.6999998093,"address":"2380 Larsen Drive","city":"Camino","coordinates":[49.1482,-122.862],"country":"United States","ibu":57,"name":"Farm House Ale","state":"California"},{"abv":6.27473617205141,"address":"1900-B East Lincoln Avenue","category":"German Lager","city":"Fort Collins","coordinates":[40.5832,-105.042],"country":"United States","ibu":104,"name":"The Kidd Lager","state":"Colorado","website":"http://www.fortcollinsbrewery.com"},{"abv":5.4000000954,"address":"Kuli vart 7","city":"Klaipda","country":"Lithuania","ibu":43,"name":"1784 Anniversary Beer"},{"abv":4.5,"address":"Unit 21-24 Batten Road Industrial Estate","category":"North American Ale","city":"Salisbury","country":"United Kingdom","ibu":18,"name":"Entire Stout","state":"Wiltshire"},{"abv":5.815112220995612,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":29,"name":"Witbier","state":"Nebraska"},{"abv":12.451519620242719,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":96,"name":"Über-Sticke Altbier","state":"Wisconsin"},{"abv":6.7007700128558625,"address":"117 South First Street","category":"North American Ale","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":69,"name":"India Pale Ale","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Lager","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":6,"name":"Pilsner","state":"Wisconsin"},{"abv":4.8499999046,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":107,"name":"Hazed & Infused Dry-Hopped Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.8745705112785,"address":"Augsburgerstrae 41","category":"German Ale","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":90,"name":"König Ludwig Weissbier Hell","state":"Bayern"},{"abv":11.899999619,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","ibu":78,"name":"Czar Imperial Stout","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":7.5999999046,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"At once cuddly and ferocious, (512) BRUIN combines a smooth, rich maltiness and mahogany color with a solid hop backbone and stealthy 7.6% alcohol. Made with Organic 2 Row and Munich malts, plus Chocolate and Crystal malts, domestic hops, and a touch of molasses, this brew has notes of raisins, dark sugars, and cocoa, and pairs perfectly with food and the crisp fall air.","ibu":26,"name":"(512) Bruin","state":"Texas","website":"http://512brewing.com/"},{"abv":9.833547271934487,"ibu":78},{"abv":10.600000381000001,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Big DIPA – Double IPA, is the first in the Heavy Seas Special Edition Series due to be released in mid June. Hopped 3 times in the brewing process, Big DIPA has an earthy hop aroma. In keeping with the Heavy Seas philosophy we've made a big beer with a surprising balance. The best part is that you’ll hardly notice it’s 10.6% ABV (est). The label artwork was created by Kurt Krol, one of our brewers who also helped to develop the recipe.","ibu":41,"name":"Heavy Seas Big DIPA","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.827832953131726,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":110,"name":"Sky High Rye","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":12.07537631233343,"address":"101 Oak Street","category":"Belgian and French Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A Belgian \"seasonal\" ale brewed during winter for the spring and summer months. This is a crisp, refreshing beer with hints of spice and fruit.","ibu":59,"name":"Standing Stone Saison","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":4.886657490947927,"address":"9750 Indiana Parkway","category":"German Lager","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":50,"name":"Munsterfest","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":4.1999998093,"address":"470 Prospect Village Dr.","category":"Other Style","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"This is one of our most popular beers. It is a light and refreshing raspberry-flavored wheat ale. We use pure raspberry extract to give this beer its fruity aroma and flavor.","ibu":109,"name":"Long's Peak Raspberry Wheat","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":4,"address":"2713 El Paseo Lane","category":"British Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"Low in alcohol but big in flavor. This beer is dry hopped like an IPA but the alcohol and bitterness have been reduced for a great session beer.","ibu":37,"name":"Barristers Bitter","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":7,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"This big, glowing, powerful IPA is packed with assertive Northwest hops that are floral, citrusy and resinous. A healthy dose of Munich malt helps to provide backbone and balance against the hoppy attack. The result? Explosive!","ibu":114,"name":"Hop Lava","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":5.3000001907,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"Brewed in honor of Andrew’s Grandfather LeRoy, this big bad nut brown ale has a fantastic malt character made up of caramel and chocolate flavors. One taste and you will see why this is the baddest beer in the whole damn town!!!","ibu":95,"name":"LeRoy's Brown Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":7.8964564457699336,"address":"102 North Market Street","category":"North American Lager","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","ibu":96,"name":"Bube's Munich Lager","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":9,"address":"1430 Vantage Court #104A","category":"Belgian and French Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Extreme ale converging San Diego-style imperial pale ale and Belgian-style trippel.","ibu":29,"name":"Le Freak Belgian Style IPA","state":"California","website":"http://www.greenflashbrew.com"},{"abv":7.1999998093,"address":"40 Van Dyke St","category":"Other Style","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Righteous Ale is actually a Rye Beer, brewed with a high amount of hops.","ibu":97,"name":"Righteous Ale","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":7,"address":"905 Line Street","category":"Irish Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Coming in at an ABV of 7.0%, Our Black Hole satisfies the transition from dark ale to stout. We think of this as slightly \"Porter-ish\" with a strong malt body and a very light hop finish. This is brewed year round and is available in Pennsylvania in the regular Variety Pack. This will help the ale drinker among us maintain their own balance!","ibu":80,"name":"Black Hole","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.5999999046,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":52,"name":"Hart Espresso Stout","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":13.443389370444692,"address":"519 Seabright Avenue #107","category":"German Lager","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":78,"name":"Oktoberfest","state":"California"},{"abv":6,"address":"Bergerstrae 1","category":"North American Ale","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":45,"name":"Sticke","state":"Nordrhein-Westfalen"},{"abv":12.385800105796582,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":93,"name":"Trappist Bruin Bier / Bière Brune","state":"Limburg"},{"abv":4.371789299796167,"address":"2 - 836 Devonshire Road","category":"North American Ale","city":"Victoria","coordinates":[48.4358,-123.396],"country":"Canada","ibu":44,"name":"Beacon India Pale Ale","state":"British Columbia"},{"abv":8.924444310923539,"address":"202 - 13018 80th Avenue","category":"British Ale","city":"Surrey","country":"Canada","ibu":21,"name":"Cream Ale","state":"British Columbia"},{"abv":4.5,"address":"22 rue Wormhout","city":"Esquelbecq","coordinates":[50.8851,2.4329],"country":"France","ibu":28,"name":"XTra"},{"abv":9.817640377196241,"address":"111 South Murphy Avenue","category":"North American Lager","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":110,"name":"Hefeweizen","state":"California"},{"abv":9.279999733,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":92,"name":"Undercover Investigation Shut-Down Ale","state":"California","website":"http://www.lagunitas.com/"},{"abv":10,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":102,"name":"Burton Baton","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.599999904599999,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A stupendous Midland Mild Ale whose epic malt infused acts of sweet caramel sensations leave all who pour it speechless. Its roasted notes of sun soaked grain are appearing in the Summer Variety Show in a not to be missed engagement. Brewed with Belgian Candi Sugar.","ibu":38,"name":"Odd Notion Summer 08","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"Other Style","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"An American wheat ale brewed with Saaz hops. Spicy and fruity, Oberon is the color and scent of a summer afternoon.","ibu":80,"name":"Oberon Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Don de Dieu displays an appealing orange-golden hue with a stable, creamy head of foam. Its fruity, malty and yeasty flavor is quickly succeeded by a palate-warming finish of roasted nuts and spices.\n\n\nThis smooth, exceptionally strong triple wheat\n\nale offers a complex flavor that is slightly\n\nfruity, malty, nutty and yeasty, with a hint of \n\nunfiltered sake.","ibu":88,"name":"Don De Dieu","state":"Quebec","website":"http://www.unibroue.com"},{"abv":3.7999999523,"address":"514 South Eleventh Street","category":"North American Lager","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our lightest beer has all of the great attributes of a light American lager with the unmatched freshness and taste only a local brew pub like Upstream can offer. If you like great tasting beer, O! Gold is the beer for you.","ibu":71,"name":"O! Gold Light Beer","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":13.261095920756809,"category":"German Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":15,"name":"Freys Weizen","state":"Wisconsin"},{"abv":4.894433924144733,"category":"Irish Ale","city":"Reedsburg","coordinates":[43.5325,-90.0026],"country":"United States","ibu":48,"name":"Porter","state":"Wisconsin"},{"abv":0.1600564354591416,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":42,"name":"Amber","state":"Wisconsin"},{"abv":14.913817024150651,"address":"3832 Hillside Drive","category":"German Lager","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":0,"name":"Oktoberfest","state":"Wisconsin"},{"abv":6.65239414472627,"address":"14600 East Eleven Mile Road","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","ibu":118,"name":"Excalibur Barleywine","state":"Michigan"},{"abv":11.78329373473598,"address":"1535 Pearl Street","category":"North American Lager","city":"Boulder","coordinates":[40.019,-105.275],"country":"United States","ibu":90,"name":"Chazz Cat Rye","state":"Colorado"},{"abv":6.2628725518108075,"address":"143 Highway 59 Building 6","category":"North American Ale","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":65,"name":"Copper","state":"New York"},{"abv":7.703977762766766,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":35,"name":"Schlafly Oatmeal Stout","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":13.991091813750993,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":93,"name":"Buckeye Brown","state":"Ohio"},{"abv":8.89948657960066,"address":"Laurenziplatz 20","category":"German Ale","city":"Bamberg","coordinates":[49.8851,10.8823],"country":"Germany","ibu":107,"name":"Weizen","state":"Bayern"},{"abv":0.46030006050424954,"address":"Unter Taschenmacher 5-7","city":"Kln","coordinates":[50.9394,6.9594000000000005],"country":"Germany","ibu":106,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":3.5,"address":"1257, Kounsosu","category":"North American Ale","city":"Ibaraki","country":"Japan","ibu":36,"name":"Hitachino Nest Sweet Stout","state":"Kanto"},{"abv":5,"address":"701 West Glendale Avenue","category":"North American Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A delicate balance of toasted malt and fresh hops give this medium-bodied German-style lager an intriguing, complex malt flavor. A creamy head, deep golden color and an impressive hop bouquet make this a very special beer.","ibu":12,"name":"Special Amber","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.778737360388101,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Triplebock 1995","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":0.15730957329215034,"address":"680 rue de la Brasserie","category":"British Ale","city":"Dommartin les Remiremont","coordinates":[48.0028,6.6583],"country":"France","ibu":61,"name":"Bête des Vosges"},{"abv":6,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":50,"name":"Steamroller Stout","state":"California"},{"abv":6.5,"address":"Spott Road","category":"British Ale","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":61,"name":"Wee Heavy","state":"Scotland"},{"abv":1.2703908017657384,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":67,"name":"Our Special Ale 1996","state":"California"},{"abv":3.518914960916597,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":93,"name":"Amber Ale","state":"Washington"},{"abv":8.326334907973337,"category":"British Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":35,"name":"Magnificent Mild","state":"Illinois"},{"abv":5.800894889213306,"category":"North American Ale","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":45,"name":"Blacksmith Stout","state":"Illinois"},{"abv":5.3000001907,"address":"71 King Street North","category":"North American Lager","city":"Waterloo","coordinates":[43.4676,-80.5231],"country":"Canada","ibu":98,"name":"Premium Lager","state":"Ontario"},{"abv":4.1999998093,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Our flagship brand, Miller Lite, is the great tasting, less filling beer that defined the American light beer category in 1975. We deliver a clear, simple message to consumers: \"Miller Lite is the better beer choice.\" What's our proof? \n\n1) Miller Lite is the original light beer. \n\n2) Miller Lite has real beer taste because it's never watered down. \n\n3) Miller Lite is the only beer to win four gold awards in the World Beer Cup for best American-style light lager. (2006, 2002, 1998, 1996) \n\n4) Miller Lite has half the carbs of Bud Light and fewer calories*. \"Miller Lite. Good Call.\";\"0","ibu":61,"name":"Miller Lite","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":5.214798016761514,"category":"North American Ale","city":"Lake Villa","coordinates":[42.417,-88.074],"country":"United States","ibu":86,"name":"Da Bier Altbier","state":"Illinois"},{"abv":14.346201765036854,"address":"311 Tenth Street","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","ibu":20,"name":"Blue Moon Abbey Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":7.850081395348779,"address":"2400 State Highway 69","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":69,"name":"Wisconsin Belgian Red Brand","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":92,"name":"Bigfoot 1999","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.48197159434197,"address":"1500 Jackson Street","category":"North American Lager","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":112,"name":"Iron Range Amber Lager","state":"Minnesota"},{"abv":4.204874147511063,"category":"North American Ale","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":65,"name":"Pale","state":"California"},{"abv":6.57416199521271,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":110,"name":"Red Winter Ale","state":"Missouri"},{"abv":4.3000001907,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"Adored since 1959, it","ibu":93,"name":"Guinness Draught","website":"http://www.guinness.com"},{"abv":7.1999998093,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":92,"name":"Optimator","state":"Bayern"},{"abv":3.9909453940738193,"address":"Darmstädter Landstrasse 185","category":"German Ale","city":"Frankfurt/Main","country":"Germany","description":"alcohol-free Hefeweizen with the tipical taste, isotonic,","ibu":112,"name":"Schöfferhofer Hefeweizen alkoholfrei","state":"Hessen","website":"http://www.schoefferhofer.de/"},{"abv":8,"address":"8938 Krum Ave.","category":"German Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A traditional dopplebock fermented with a Bohemian lager yeast. Reddish brown in color, with a mild hop profile, Consecrator is a well balanced, full bodied beer with hints of caramel and molasses in its smooth, malty finish.","ibu":67,"name":"Consecrator Doppelbock Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":7.5,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This is the old tried and true Blind Date Ale of old. It is based on an English Olde Ale but has an addition of 300 pounds of Arizona grown Medjool dates. The dates contribute a complexity and sweetness that the malt alone cannot. This Blind Date has been aged for three months in Jim Beam oak bourbon barrels. The oak and bourbon lend flavors of vanilla, wood, and of course, bourbon. These flavors layered with the dates created a big, multi-leveled ale. The alcohol content is about 7.5% alc/vol. You'll have to get to Four Peaks quick since we only have a few kegs of this unique beer.","ibu":44,"name":"Barrel-Aged Blind Date Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":8.5,"address":"905 Line Street","category":"German Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","ibu":22,"name":"Weyerbacher Juliet","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":6,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"Don't let the golden color fool you - this isn't your father's lite beer!\n\n\nBrewed with imported German malts and US-grown hops, this beer is a full-flavored introduction to craft-brewed beer. We add the hops late in the boil, allowing you to enjoy the flavor and aroma of the hops without an aggressive bitterness.","ibu":101,"name":"Captin Lawrence Liquid Gold","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":18.200000763,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":25,"name":"Tokyo*","website":"http://brewdog.com/"},{"abv":4.0999999046,"address":"AB43 8UE","category":"British Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A titillating, neurotic, peroxide, punk of a pale ale. Combining attitude, style substance and a little bit of low self esteem for good measure; what would your mother say?\n\n\nYou really should just leave it alone...\n\n\n...but you just cant get the compulsive malt body and gorgeous dirty blonde colour out of your head. The seductive lure of the sassy passion fruit hop proves too much to resist. All that is even before we get onto the fact that there are no additives preservatives, pasteurization or strings attached.\n\n\nAll wrapped up with the customary Brewdog bite and imaginative twist. This trashy blonde is going to get you into a lot of trouble.","ibu":56,"name":"Trashy Blonde","website":"http://brewdog.com/"},{"abv":5.5,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"Anything but a typical American Pale, Santa Fe Pale Ale is as full bodied as its most robust English counterparts, while asserting its American origin with a healthy nose resplendent with Cascade and Willamette hops. It finishes with a well-balanced combination of the subtle, almost Pilsner-like maltiness accentuated by the German yeast used to brew this Santa Fe classic, and a hop bite sufficient to leave a lingering smile on the face of any fan of American Pale Ales.","ibu":58,"name":"Sante Fe Pale Ale","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":4.8000001907000005,"address":"SKOL Breweries Limited","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"BEER TYPE Indus Pride is a 100% malt beer \n\nPRODUCT PROPOSITION Made of 100% malt lending it a unique rich flavor \n\nALCOHOL CONTENT BY VOLUME 4.8% by volume \n\nTASTE Rich in flavors with a clean head and foam \n\nCOLOUR Sunrise Yellow \n\nSERVING TEMPERATURE 7 degree Celsius \n\nPACKAGING 650 ml glass bottles : 12 bottles per case\n\n330 ml pack : 24 bottles per case \n\n\nhttp://www.sabmiller.in/induspride.html","ibu":109,"name":"Indus Pride","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":5.9000000954,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"This is your solution to the same ol' ho hum brown ale you drink all the time. This ale might be dark and intimidating in a glass, yet the first sip proves to be a surprisingly refreshing assault on your taste buds. Complex blends of chocolate and roasted oats complement the essence of bittering hops, and sweet malts. The balanced combination makes this full flavored ale one to be enjoyed in any occasion.","ibu":36,"name":"Tailgate Brown Ale","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pour 422 Pale Wheat Ale into a pint glass, give it a long whiff and you’ll realize that this isn’t your average pale golden wheat. Preserved in its unfiltered state, 422 is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of orange and sweet malts waft to the fore as a touch of bitterness contributes to a smooth finish. 422 is brewed as a tribute to preserving our precious planet and it’s environment. It is responsibly packaged with over 80% recycled consumer products and is completely recyclable. Enjoy 422 all year as to take one stride closer to a eco-friendly life.","ibu":91,"name":"422 Pale Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.5,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":57,"name":"Broodoo","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":6,"address":"3301-B East Fifth Street","category":"North American Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"With about 6.0% ABV, this one will surely warm the ol' gullet during a cold central Texas winter - both days! Our India Pale Ale (IPA) is light in color and strong in hop character. Dry hopping with Cascade hops, gives this winter favorite a delicious citrus note reminiscent of a Texas Ruby Red. Yes, it's warming but you don't need to be huddled around the furnace to enjoy this one! IPA fans really love this ale during a beautiful Texas winter on the porch or indoors. Available December - April","ibu":2,"name":"Liberation Ale","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":10.575976405940086,"address":"3301-B East Fifth Street","category":"German Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"Crisp, clean, and refreshing, this pilsner is styled after the original Bohemian classic from the town of Pizen, Czech Republic, Pilz is a golden-colored brew that balances a pleasant hoppiness with its smooth malt flavor. It finishes dry with a moderate bitterness that is a hallmark of the style.","ibu":14,"name":"Live Oak Pilz","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":8.75,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"\"Ale to the Chief! We the Brewers of Avery Brewing Company, in order to form a more perfect ale, require new leadership that can liberate us from our quagmires in foreign lands; embrace environmentally sound energy alternatives to imported oil; heal our ailing healthcare system; free us from tyrannical debt and resurrect the collapsing dollar. We hereby pledge to provide him with an ample amount of our Presidential Pale Ale to support in the struggle for the aforementioned goals! Hail to the New Chief!","ibu":42,"name":"Ale To The Chief","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8.098234898192944,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","ibu":108,"name":"Obamanator Maibock","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":10.04265165752261,"address":"101 Ehalt St.","category":"German Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":119,"name":"Red Star Pilsner","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":7,"address":"155 Mata Way Suite 104","category":"Belgian and French Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"From the French word “Garde” meaning something worth keeping, this Biere de Garde styled Farmhouse Ale is a most delicious companion to a loaf of freshly baked bread from the oven. Grab a seat on the porch, some soft cheese and a tree ripened apple from your grandmother’s old orchard. Relax and watch the evening arrive as the afternoon sun is consumed by the illuminating moon over the gardens. We brewed Avant Garde for you, our friends and families. Here’s to things worth guarding over.","ibu":58,"name":"Avant Garde","state":"California","website":"http://www.lostabbey.com/"},{"abv":8.26174948983189,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":90,"name":"Spring Ale","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":10.772495244583954,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":93,"name":"Smoked Rye Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.776463129779106,"address":"1415 First Avenue","category":"British Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":117,"name":"Kilt Lifter Scotch Ale","state":"Washington"},{"abv":5.5,"address":"rstadvgen","category":"Irish Ale","city":"Falkenberg","coordinates":[56.9002,12.5405],"country":"Sweden","ibu":54,"name":"Carnegie Stark-Porter"},{"abv":5.5,"address":"Camwal Road","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":71,"name":"Morocco Ale","state":"North Yorkshire"},{"abv":5.9400000572,"address":"2880 Wilderness Place","category":"Other Style","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":94,"name":"Never Summer Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":3.837678187159288,"address":"61 Bridge Street","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":87,"name":"Best Bitter","state":"New Jersey"},{"abv":5.1999998093,"address":"Klnische Strae 94-104","category":"German Ale","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":57,"name":"Weissbier Hell","state":"Hessen"},{"abv":9.222688728371475,"address":"146 Snelling Avenue North","category":"North American Ale","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":87,"name":"Light Amber Ale","state":"Minnesota"},{"abv":4.046811836249566,"address":"400 Union Square","city":"New Hope","coordinates":[40.3659,-74.9544],"country":"United States","ibu":111,"name":"Kellerbier","state":"Pennsylvania","website":"http://www.triumphbrewing.com/"},{"abv":5.5,"address":"Aschaffenburger Straße 3-5","category":"North American Lager","city":"Großostheim","coordinates":[49.9211,9.0715],"country":"Germany","description":"A classically brewed export beer with a slight aroma of hops.\n\n\n\nAwarded with the gold medal by\n\nGerman Agriculture Society-DLG\n\n2005, 2006 and 2007\n\nMonde Selection, Brüssel 2003 and 2005\n\n2007 with Grand Gold\n\nand with the silver medal by\n\nWorld Beer Cup, Colorado 2002","ibu":65,"name":"Schlappeseppl Export","state":"Bavaria","website":"http://www.eder-heylands.de"},{"abv":5.8000001907000005,"address":"2516 Market Avenue","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A smooth lager that strikes a delicate balance between sweet malt and dry hop flavors.","ibu":7,"name":"Dortmunder Gold","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"Named in honor of Ed Kiessling, the worlds greatest contractor. This American pale ale is assertively hopped and dangerously drinkable. Hopheads rejoice!","ibu":10,"name":"Fast Eddies Pale Ale","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":5.4000000954,"address":"814 W Hamilton St","category":"Other Style","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Unfiltered wheat beer brewed with apricots creating a smooth and thirst quenching full flavored fruit beer.","ibu":17,"name":"Apricot Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":0.9363041008199657,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":14,"name":"O-Tay Bockwheat","state":"Wisconsin"},{"abv":7.1999998093,"address":"26 Osiers Road","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":39,"name":"Old Nick","website":"http://www.youngs.co.uk"},{"abv":9.803614128881671,"category":"British Ale","city":"Lincoln","coordinates":[38.8916,-121.293],"country":"United States","ibu":70,"name":"Lincolnshire Mild","state":"California"},{"abv":5.5,"address":"610 Third Street","category":"Irish Ale","city":"Santa Rosa","coordinates":[38.4398,-122.713],"country":"United States","ibu":117,"name":"Old Redwood Porter","state":"California","website":"http://www.thirdstreetaleworks.com"},{"abv":8.424849579626418,"address":"921 South Riverside Drive","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":19,"name":"Trailblazer Blond Ale","state":"Missouri"},{"abv":1.4792960808286515,"address":"1501 Arboretum Drive","category":"Irish Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":91,"name":"Titan Porter","state":"Wisconsin"},{"abv":5.5999999046,"address":"725 Fourth Street","category":"North American Lager","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"\"If you can't feel good about your beer... what else is worth feeling good about.","ibu":79,"name":"Beer Esteem","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Lager","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"The best selling premium irish import lager in the world today. This rich, golden pilsner style lager, with a smooth, refreshing hoppy taste, is brewed the irish way, using only the finest barley and pure spring water from the Cooley Mountains of Dundalk, Ireland.","ibu":92,"name":"Harp Lager","website":"http://www.guinness.com"},{"abv":6.0999999046,"address":"150 Simcoe Street","category":"German Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Bleue Dry, the second addition to the Bleue family, is brewed with the same care and attention to detail as Labatt Bleue. Labatt Bleue Dry is mashed longer than regular beers to leave less carbohydrate (sugar) in the finished beer, giving a clean, crisp finish. Using select aromatic hops and a blend of the finest quality North American barley malts, this lager is clean-flavoured with no aftertaste.","ibu":41,"name":"Labatt Bleue Dry","state":"Ontario"},{"abv":8.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"We celebrate the pioneering spirit of old Horace 'Hop' Wallop and those who dare mighty adventurous things in this vivid, robust ale. As our annual homage to the hop harvest, expect loads of aromatic splendor and bitter beauty.","ibu":16,"name":"Hop Wallop","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":1.8221916863398901,"category":"German Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":37,"name":"Hefe Weizen","state":"California"},{"abv":5.095399616891613,"address":"401 Cross Street","category":"Irish Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":85,"name":"Limestone English Style Porter (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":4.339476575920416,"address":"200 Village Green","category":"Other Style","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":21,"name":"Olde Orchard Ale","state":"Illinois"},{"abv":7.1999998093,"address":"8845 Quail Lane","category":"North American Ale","city":"Manhattan","country":"United States","description":"Oasis is a Double ESB/IPAish beer that came about from playing around with one of Jeff","ibu":93,"name":"Oasis","state":"KS","website":"http://www.tallgrassbeer.com"},{"abv":6.548525189083973,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Fresh, natural fruit flavor and a hint of chocolate malt makes this dark beer something really special. The just picked, fresh fruit flavor is very evident in this beer.","ibu":74,"name":"Smashing Berry Dark","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"35 Fire Place","category":"German Lager","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"As its name suggests, this Pilsner does not like to be categorized. Inquiring whether it is a German, Czech, Bavarian, American, or any other style pilsner will result in an impatient sigh and the explanation that the whole philosophy behind this pilsner is that it does not fall into any categories. True, it is brewed with traditional ingredients (soft water, pilsner malt, saaz hops, and German yeast), but it is the way that these ingredients interact, and the characteristics of the yeast, that cause this particular pilsner to defiantly stand alone. The assertively hopped Freestyle pils exudes the flavor and the aroma of the classic Saaz hop (a tribute to “the original” pilsner), while maintaining enough body to balance but not overpower this hop’s pleasant, spicy tone. An unhurried lagering process so frequently overlooked by American craft brewers is strictly adhered to in the production of Freestyle, which makes this beer by far the most light, clean, and quenching beer in the Santa Fe Brewing Company’s line up.","ibu":57,"name":"Freestyle Pilsner","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":6,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Lancaster Brewing Company’s newest release is their limited series of Shoo-Fly Porter. From the heart of Pennsylvania Dutch Country comes a delicious porter made with Lancaster County molasses, eight different malts and grains, and four different styles of hops. This beer has a deep, rich, brown color, medium to full body, and finishes with a smooth mouth feel.","ibu":95,"name":"Shoo-Fly Porter","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.228717217225527,"ibu":67,"name":"07/22/10 08:00 PM"},{"abv":6,"address":"5401 Linda Vista Road #406","category":"Irish Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"Ballast Point Black Marlin Porter is a rich dark chocolaty Porter with a distinctive American hop character. It is a great beer to go with hearty foods and is surprisingly one of the few beers that goes well with dessert. One of our favorite combinations here at Ballast Point is Black Marlin Porter with apple pie a la mode.","ibu":58,"name":"Black Marlin Porter","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #15-2008 is our first collaborative beer in the Scratch series. We teamed up with St. Thomas Roasters of Linglestown to create a Double Espresso Oatmeal Stout.\n\n\nThe double in the name refers to the espresso (not the alcohol). Scratch #15’s espresso blend is a medium city-type roast featuring beans from three continents. St. Thomas Roasters roasted and ground the beans; we used them in our hopback. At the end of the boil the hot wort passed through the espresso beans to give a lush coffee espresso nose and hints of coffee flavor.\n\n\nChocolate, roasted and caramel malt flavors stand out, while the addition of oats gives Scratch #15 a full, round mouth feel. Galena and Ken Goldings hops are added to balance the overall flavor and not drive up the bitterness. The head retention diminishes quickly because of the oils from the espresso beans.","ibu":79,"name":"Scratch #15 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"category":"Belgian and French Ale","city":"Tournai","coordinates":[50.6059,3.3884],"country":"Belgium","description":"Daas Blond is the authentic Belgian strong golden beer, its honey spice aroma and perfect balance of bitter sweet flavours are followed by a classic dry hop finish. A perfect aperitif beer.\n\n\nDaas Beer is the only Belgian beer brewed in Belgium to carry both the UK Soil Assoc organic certification and the Belgian Certsys certification whist still upholding its Belgian tradition of brewing excellence using the finest organic ingredients.","ibu":100,"name":"Daas Organic Blond","website":"http://www.daasbeer.com/"},{"abv":7.529420250488352,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"Styled after an English classic, this beer is brewed with American flair. Hearty brown in color and full-bodied, this beer has a distinct chocolate-malt finish.","ibu":79,"name":"Liberty Nut Brown Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":4.6999998093,"address":"Avenida Tocantins, 199 / Caixa Postal 621","category":"German Lager","city":"Ponta Grossa","coordinates":[-25.1688,-50.1298],"country":"Brazil","ibu":86,"name":"Xingu","state":"Paran"},{"abv":5.111192952057495,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":77,"name":"India Pale Ale","state":"Washington"},{"abv":4.6999998093,"address":"104 North Lewis Street","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":111,"name":"Pilsner","state":"Washington"},{"abv":1.1023011542044092,"address":"Trappistenweg 23","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","ibu":60,"name":"Bière Blanche","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":8.740896801733625,"address":"Bridge Street","category":"British Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":36,"name":"Olde Expensive Ale","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":4.5999999046,"address":"Bayerischer Platz 1","city":"Leipzig","coordinates":[51.3397,12.3714],"country":"Germany","ibu":111,"name":"Gose","state":"Sachsen"},{"abv":11.904176901260739,"address":"Franz-Brombach-Strae 1-20","category":"German Ale","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","ibu":11,"name":"Weißbier Mit Feiner Hefe","state":"Bayern"},{"abv":0.24722103428970077,"city":"Henley-on-Thames","coordinates":[51.5375,-0.9046000000000001],"country":"United Kingdom","ibu":95,"name":"Coniston Bluebird Bitter","state":"Oxford"},{"abv":14.192196851358853,"address":"1429 West Service Drive","category":"North American Ale","city":"Winona","coordinates":[44.0486,-91.6774],"country":"United States","ibu":34,"name":"Cat Tail Pale Ale","state":"Minnesota"},{"abv":2.0701423100424954,"address":"2617 Water Street","category":"German Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":80,"name":"Spring Bock","state":"Wisconsin"},{"abv":7,"city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":17,"name":"Belgian Double","state":"California"},{"abv":8,"address":"Level 15, 20 Hunter Street","category":"British Ale","city":"Sydney","coordinates":[-33.8687,151.217],"country":"Australia","ibu":15,"name":"Hahn Special Vintage 2000","state":"New South Wales"},{"abv":4.7420142390650515,"address":"603 West 13th Street #1A-345","category":"North American Lager","city":"Austin","coordinates":[30.2767,-97.7463],"country":"United States","ibu":106,"name":"Pecan Street Lager","state":"Texas"},{"abv":8.625127225936891,"address":"107 North Lincoln Avenue","category":"German Lager","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":58,"name":"Bock Dark","state":"Nebraska"},{"abv":3.4513816563090858,"address":"200 Village Green","category":"North American Lager","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":21,"name":"Prairie Wheat Beer","state":"Illinois"},{"abv":8.078432350350164,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":46,"name":"Doppelbock (discontinued)","state":"Nebraska"},{"abv":6.5,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"This smooth brew ushers in Autumn with an invitingly tawny color complemented by an assertive maltiness. A noble crispness from German and Czech hops completes this very traditional lager-style beer, Available from August to November.\n\n\nAvailable at the Brewery and in bottles & cases from September - December.","ibu":106,"name":"Lancaster Oktoberfest","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":6.4000000954,"address":"2401 Blake St.","category":"British Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"The psycho in the pack... K-9 Cruiser is a dark, sweet and malty winter warmer that will captivate any adventurous craft brew drinker. A true Flying Dog original, K-9 Cruiser is the perfect brew to warm you up in those cold winter months.","ibu":27,"name":"K-9 Cruiser Winter Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":3.9000000954000003,"address":"830 Main Street","category":"North American Lager","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":71,"name":"Honey Wheat","state":"California"},{"abv":4.5,"address":"24 Kulick Road","category":"North American Lager","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Cricket's Nocturne: a dark lager that combines a mild crispness with subtle toasty, chocolate notes to make it the perfect thirst quencher on days when there's a chill in the air. It;s a great accompaniment to hearty winter meals, or dessert by the fireside.","ibu":19,"name":"Cricket's Nocturne","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":5.8000001907000005,"address":"407 Radam, F200","category":"North American Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"With Organic 2-row malted barley, (512) Pale is a copper colored American Pale Ale that balances earthy hop bitterness and hop flavor with a rich malty body.","ibu":75,"name":"(512) Pale","state":"Texas","website":"http://512brewing.com/"},{"abv":8,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Abbaye Saint-Martin Brune was named World's Best Abbey (Dark) Beer @ the 2009 World Beer Awards (London). Aroma of caramel and liquorice. Less sweet than most traditional Dark Abbey Ales. Many people prefer this double at room temperature. It is especially popular when paired with dessert.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":99,"name":"Abbaye de Saint-Martin Brune","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.1999998093,"address":"1284 McD Drive","category":"North American Ale","city":"Dover","coordinates":[39.154,-75.4884],"country":"United States","description":"Dominion Oak Barrel Stout raises the bar for American stouts. We use smoked and peated malts to create an intricate malt foundation. Willamette and Cascade hops balance the malt character and our method of dry hopping with vanilla beans and oak chips pushes the depth of our stout's flavor spectrum even further.","ibu":0,"name":"Oak Barrel Stout","state":"Delaware","website":"http://www.olddominion.com/"},{"abv":4.1999998093,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"An easy drinking ale that goes well with our food offerings. Also a great introduction to the world of craft brewing.","ibu":85,"name":"Bistro Blonde","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":8,"address":"3804 S.W 30th Ave","category":"North American Ale","city":"Fort Lauderdale","coordinates":[26.0745,-80.1806],"country":"United States","ibu":7,"name":"Holy Mackerel Mack In Black","state":"Florida","website":"http://holymackerelbeers.com/"},{"abv":5.9000000954,"address":"306 Northern Avenue","category":"Other Style","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Winter Warmer was Harpoon’s first seasonal beer. It was designed to be enjoyed during the holiday season. \n\n\nWhen you bring a glass of this dark copper ale to your lips to take your first sip you will notice the aroma of cinnamon. There is no aromatic hop added that might overpower the distinct spice scent. The medium body of this beer is formed from caramel and pale malts. These create enough body to support the spices without making the beer excessively rich. Bittering hops are added to counter the sweetness of the malt and spice. The finish of the beer is a blend of cinnamon and nutmeg. The combination of these two spices results in a balanced, pumpkin-pie flavor. \n\n\nThe overall character is a smooth, medium bodied ale spiced with cinnamon and nutmeg","ibu":41,"name":"Harpoon Winter Warmer","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":7.1999998093,"address":"1300 Central Avenue","category":"North American Ale","city":"McKinleyville","coordinates":[40.9491,-124.102],"country":"United States","ibu":116,"name":"Six Rivers IPA","state":"California","website":"http://www.sixriversbrewery.com/"},{"abv":10.366809450025071,"address":"339 Fairground Rd","category":"Belgian and French Ale","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"This beer is medium dark in color but it has a light body and a smooth mouthfeel. Coriander and orange will surround your senses and keep you coming back for more.","ibu":31,"name":"Lucky 393 Grand Cru","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":1.578140119675785,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","description":"Munich Helles style Lager","ibu":32,"name":"Capital Bavarian Lager","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.3000001907,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #16-2008 combines the bitterness of two aroma hops, the lush sweetness of honey and malt and an earthly yeast taste creating a Winter Warmer designed to ward off the coldest days.\n\n\nThe dark, rich amber color comes from a combination of molasses and crystal malts; the Thames Valley brings a distinct earthly flavor; white the blend of hops creates fruity (Amarillo) and piney (Cluster) bitterness.\n\n\nThe Winter Warmer ends with a slight warming sensation from the elevated alcohol content. Enjoy this one throughout the winter months. Cheers.","ibu":87,"name":"Scratch #16 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11.069973276125452,"address":"605 S. Talbot St.","category":"German Ale","city":"St Michaels","coordinates":[38.7814,-76.2222],"country":"United States","ibu":92,"name":"Ameri-Hefe","state":"Maryland","website":"http://www.easternshorebrewing.com/"},{"abv":4.24951879624368,"address":"8113 Fenton St.","category":"North American Lager","city":"Silver Spring","coordinates":[38.9911,-77.0237],"country":"United States","description":"The right choice when you desire a flavorful beer with a 'lighter' body. Only 94 calories!","ibu":66,"name":"Hook & Ladder Lighter","state":"Maryland","website":"http://www.hookandladderbeer.com"},{"abv":9.5,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"9000 year old Chateau Jiahu stands apart as the most ancient, chemically-attested alcoholic beverage in the world. Its recreation is based on painstaking excavation by Chinese archaeologists of Jiahuin the Yellow River basin, state-of-the-art microanalysis of pottery residues by American laboratories, and the inspired \"Neolithic\" brewing of Dogfish Head Craft Brewery. Chateau Jiahu, then as now, opens a window into the world of our ancestors.","ibu":3,"name":"Chateau Jiahu","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.1999998093,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A testament to Cascade hops in a bottle. Our medium-bodied, Pale Ale has a distinctive floral hop aroma and refreshing citrus flavor. Founders Pale Ale has a slight malty sweetness with a balanced hop finish. A perfect beer to enjoy while mowing the lawn, boating, grilling with friends or just taking it easy.","ibu":101,"name":"Founders Pale Ale","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":0.7056526809329722,"address":"375 Water Street","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our regulars have many reasons for frequenting our premises. Some come for the comfy chairs, a game of pool, or to exude some seriously suaveness at the oyster bar on a Friday evening. For the truly devoted, however, who come in search of truth, it's the Nut Brown they're after. Often they arrive with a glazed look in their eyes, having endured days of office drudgery or the unknowable hardships of securing a parking spot. Set your cares aside, for all can find solace in this ale's yin-yang of nutty maltiness and delicate, dryish hoppiness. For our Nut Brown, an ale deep auburn in colour, we use a blend of Munich, caramel and chocolate malts to create a rich malty palate with a lingering dry chocolatiness.","ibu":30,"name":"Nirvana Nut Brown Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.5,"address":"357 East Taylor Street","category":"German Ale","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":1,"name":"Gordon Biersch Hefeweizen","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":5.9000000954,"address":"30 Butterfield Road","category":"Belgian and French Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","description":"Domaine DuPage is a rural, northern France, amber colored ale. This well balanced beer is full and sweet up front with caramel, toasty, and fruity characters. The finish has a gentle floral and spicy hop balance that cleanses the palate.","ibu":17,"name":"Domaine DuPage French Country Ale","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":4.4000000954,"address":"455 North Main Street","category":"German Lager","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Named for the delicate engravings popularized by 19th century seafarers, Scrimshaw is a fresh tastingPilsner brewed in the finest European tradition using Munich malt and, Hallertauer and Tettnang hops. Scrimshaw has a subtle hop character, a crisp, clean palate, and a dry finish.","ibu":8,"name":"Scrimshaw Pilsner Style Beer","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":6.9000000954,"address":"5 Bartlett Bay Road","category":"British Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"An ale for dancing bonfires and falling leaves.\n\nJinx prepares the bones for snow. It's a full bodied strong ale the color of maple's golden leaves in the season's fading sun. Finished with a touch of peat-smoked whiskey malt, Jinx offers sweet, toasty aromas of caramel, tea, and smoke. Deep flavors of dark candy sugar and warming alcohol notes are balanced by a spicy hop bitterness.","ibu":14,"name":"Jinx","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8.769456994941523,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Spicy yet smooth. Brewed with 10 exotic spices.\n\nThis beer's roots are in Belgium, and the classic Wit biers produced by Belgium's brewers. The style gets its name from the white, milky appearance of this unfiltered wheat ale. The brewers of Samuel Adams® beer, taking inspiration from the Belgians, have created a classic of their own. On the malt side, we use malted two row Pale barley, malted wheat, and Munich malt to give this beer a crisp, malty, cereal finish and smooth mouth feel. The hops used are Noble Tettnang Tettnanger hops. At the end of the kettle boil, we add a proprietary spice blend to give Samuel Adams® White Ale a unique and complex flavor, without being overpowering or cloying. The spice blend includes orange and lemon peel, dried plum, grains of paradise, coriander, anise, hibiscus, rose hips, tamarind, and vanilla. It is this special blend of spices that gives Samuel Adams® White Ale its unique character, complexity and refreshing drinkability. The beer is coarse filtered, leaving a white haze from the malt proteins. Our proprietary top fermenting ale yeast ferments the beer, imparting its signature character - bright and slightly fruity.","ibu":31,"name":"Samuel Adams White Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Loose Cannon Hop3 Ale - called Hop 3 (hop cubed) ale to reflect the enormous amount of hops in this beer: over 3 pounds per barrel! Also the beer is hopped 3 ways - in the kettle, in the hop back, and dry hopped. Winner of the Overall Best of Show Award in the Maryland State Governor's Cup 2005 Competition and voted the #1 IPA by Mahaffey’s Pub. We are very excited about this new product and have decided to make this beer available year round!","ibu":72,"name":"Loose Cannon Hop3 Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":8,"address":"Burg. van den Heuvelstraat 35","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":119,"name":"De Horste Vermeer Traditional Dutch Ale"},{"abv":4.6999998093,"address":"Neumarkt 1","city":"Schwelm","coordinates":[51.2847,7.2936],"country":"Germany","ibu":74,"name":"Pils","state":"Nordrhein-Westfalen"},{"abv":2.411959806387313,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":3,"name":"Red Truck Ale","state":"British Columbia"},{"abv":4.9000000954,"address":"Tbinger Strae 46","city":"Stuttgart","country":"Germany","ibu":95,"name":"Das Schwarze / Dark","state":"Baden-Wrttemberg"},{"abv":5.5,"address":"Oberdorferstrae 9","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":44,"name":"Spezial"},{"abv":4.9000000954,"address":"Marktplatz 1","city":"Alpirsbach","coordinates":[48.3457,8.4031],"country":"Germany","ibu":95,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":8,"address":"Guido Gezellelaan 49","city":"Mechelen","coordinates":[51.0325,4.473],"country":"Belgium","ibu":53,"name":"Gouden Carolus Ambrio 1471","state":"Antwerpen","website":"http://www.hetanker.be/"},{"abv":7.901929458573492,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":95,"name":"Brunette Nut Brown Ale","state":"Nebraska"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":72,"name":"Flemish Primitive Wild Ale (Demon Fish)","state":"Oost-Vlaanderen"},{"abv":9.164047502641164,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":100,"name":"White","state":"Texas"},{"abv":5.686078373883926,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":59,"name":"Uber APA","state":"Wisconsin"},{"abv":10.41721387716191,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":111,"name":"Celtic Cross Stout","state":"Wisconsin"},{"abv":9.564396432172275,"address":"Walplein 26","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","ibu":27,"name":"Straffe Hendrik Brugse","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":5,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Red Macgregor is a unique beer: delicate and sophisticated yet the robust cask conditioned version of this beer was the first Scottish beer to win the BIIA World Cask Beer Gold Medal.\n\n\nOn the nose, this ruby-red beer is delicate, floral and fruity, with notes of violets, cherries, toffee and caramel. \n\n\nOn the palate, the fruits combine with a juicy malt character and hints of toasted malt, with a biscuit malt and spicy hop finish.","ibu":24,"name":"Red MacGregor","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":11.233696247068753,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":95,"name":"Who The Helles Chuck?","state":"Wisconsin"},{"abv":7.1107763920433555,"category":"North American Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":78,"name":"Lighthouse Ale","state":"Indiana"},{"abv":14.694499229978394,"city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":10,"name":"Gold Crown Lager","state":"Minnesota"},{"abv":9,"category":"British Ale","city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":58,"name":"Prize Old Ale","state":"Hampshire"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":107,"name":"Bigfoot 1998","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.1999998093,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This Dubbel style Belgian beer is created in the great Belgian tradition. Pale Malt, Caramel and Special B Malts impart a unique sweetness to this beer. The traditional Belgian yeast fully ferments the Belgian Candi Sugar to give a satisfying taste that is twice what a Belgian pale delivers.","ibu":78,"name":"Dubbel Dragon","state":"Michigan"},{"abv":6.086574850513436,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":68,"name":"Amber","state":"California"},{"abv":5.4000000954,"category":"Irish Ale","city":"Clear Lake","coordinates":[45.2519,-92.2713],"country":"United States","ibu":119,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":10,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":44,"name":"Four","state":"Maine","website":"http://www.allagash.com/"},{"abv":10.008719285607533,"category":"North American Ale","city":"Sydney","coordinates":[-33.8671,151.207],"country":"Australia","ibu":55,"name":"Sheaf Stout","state":"New South Wales"},{"abv":1.1512110520828434,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":41,"name":"Cleary Red","state":"Wisconsin"},{"abv":10.996257650865736,"address":"1035 Sterling Avenue","category":"North American Ale","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":40,"name":"Imperial Eclipse Stout","state":"Illinois"},{"abv":6.3000001907,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":36,"name":"Abbaye de Floreffe Double","state":"Brabant Wallon"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Rich, velvety and deliciously complex, Old Heathen is a truly distinctive winter warmer. We use seven types of malt and two varieties of hops to bring forth this big brew. Quite robust and roasty on the palate, Old Heathen imperial stout has a wonderfully fruity nose and a moderately dry finish. The taste is highly complex- perhaps you'll even discern notes of espresso or chocolate. \n\n\nOld Heathen imperial stout is our interpretation of a beer style that originated in the 18th century. Brewed in England and exported to Germany, Scandinavia and Russia, these beers became fashionable among the members of the Czar's court. In order to survive long voyages they were brewed with high alcohol content to prevent spoilage. And at 8.0% ABV (alcohol by volume) Old Heathen definitely contains a warming belt. You may want to lay down a few bottles for future evaluation- this beer keeps well and will only get better with age.\n\n\nLike most of our beers, Weyerbacher Old Heathen is a perfect accompaniment to foods. Try it with rich stews, oysters, caviar or roasted meats. Old Heathen is also a perfect companion to chocolate desserts.\n\n\nOld Heathen is now available year-round.","ibu":74,"name":"Old Heathen","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.8000001907000005,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Dry-hopping provides a distinctive and floral hop aroma, while the lively and hoppy body is subtly balanced with delicious malt notes. Hatter’s hop character makes it a great fit for spicy dishes, bitter greens and beef.","ibu":50,"name":"Mad Hatter IPA","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":3.543628456734249,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":118,"name":"Golden Ale","state":"Massachusetts"},{"abv":0.9178240868650733,"category":"North American Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":43,"name":"Red Sky Amber Lager","state":"Hawaii"},{"abv":8,"address":"Rue Ville Basse 141","category":"North American Ale","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":35,"name":"Scotch","state":"Hainaut"},{"abv":2.1791661796855353,"category":"North American Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":45,"name":"Pilsner","state":"Illinois"},{"abv":9.089459897035649,"address":"25 North Madison St","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":101,"name":"Calumet Pils","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":10,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Some say “bigger is better!”. At Hoppin’ Frog, we built a massive hop dam to handle the enormous amount of hops added to this colossal American Triple I.P.A. An intense experience of citrus and piney hop character is complimented by layers of rich malt flavor. Behold our new standard for hoppy beers.","ibu":117,"name":"Hop Dam Triple IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6.6999998093,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #27-2010 begins a new fold in the Scratch series. For the next several batches individual Troegs brewers will create recipes of their choice. First up, The Ticeman had a hankering for a sweet stout, so the Troegs brothers and all the brewers met with Scharffen Berger Chocolate Company engineers to eat ridiculous amounts of cocoa nibs and chocolates over a few pints of beer.\n\n\nThis collaboration resulted in the delivery of a special blend of cocoa nibs that were added during the boiling process. In addition to the nibs, lactose was added at the end of the boil to give a little sweetness in the body. The addition of Galena and Simcoe hops lends a subtle fruity balance. After primary fermentation, the beer was aged for three weeks on a blend of cocoa nibs and Ugandan vanilla beans.\n\n\nDubbed Cocaoabunga, this unfiltered beer has a pleasant cocoa aroma, a subtle sweetness in the mouthfeel, a full-bodied flavor, and hints of vanilla. Enjoy!","ibu":109,"name":"Scratch #27 2010 Cocaoabunga","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":11,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"When empirical and creative impulses collide, the result is often timeless. The classic utility-art aesthetic of the coffee maker is an example of design and engineering working in concert. \n\n\nIt is through similar cooperation that the simple bitter cocoa bean is transformed into a sweet treat. As scientists, our brewers utilize their materials to exacting standards. As artists, they couldn’t resist the temptation to combine two of our highly acclaimed Blackwater Series Imperial Stouts: Jahva and Choklat. Alone each is perfect, but together as Mokah they are an inimitable expression of two of the world’s most sought after flavors. Enjoy Mokah stout with – or as – your favorite dessert!\n\n11.0% abv • 27º plato • Imperial Stout Brewed with Coffee & Chocolate • 22 oz / 1/6 keg\n\n2-row pale malt • 2-row barley • caramel, chocolate & black malts • roasted barley barley flakes • Jamaican roasted coffee • bittersweet Belgian chocolate • chinook, willamette, cascade & columbus hops","ibu":34,"name":"Mokah Imperial Blended Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":13.247998084382875,"address":"1022 Main Ave.","category":"North American Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"A well balanced American Amber Ale. Smooth malt character balanced with a healthy dose of Cascade hops aged on oak chips - our most popular beer.","ibu":19,"name":"Old Oak Amber Ale","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":7.1999998093,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"It means India Pale Ale. It's all about the hops on this one. Brewers use hops to add bitterness and aroma to their beers. If not for hops your beer would be too sweet. Our IPA uses plenty of Chinook and Columbus hops from the Pacific Northwest. The flavor can best be described as strong resiny grapefruit. The long drawn out hop flavor is essential to the character of the beer. So smack your buds on this one all you HOP HEADS.","ibu":64,"name":"Midwest IPA","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":7.5,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Johnny Cask has entered the building! We’ve retrofitted a 15 barrel tank to perfectly produce a very special cask conditioned ale (so, we have a little time to play around during winters at the Delaware coast). This beer, known as Dogfish Head 75 Minute IPA is a blend of 60 and 90 Minute IPAs with a special whole leaf cascade dry-hopping session.","ibu":98,"name":"75 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10.230307304392724,"address":"112 Valley Road","category":"Other Style","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Our Cream Ale is a light, crisp, yellow ale with hop-notes and citrus flavors. It's a smooth, easy drinking summer beer that's perfect for drinking on hot days and with light fare such as seafood and salads.","ibu":119,"name":"Climax Cream Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":11.561060682280953,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Blind Salamander Pale Ale is the first of a series of Rahr beers\n\ncalled Rare Breed. These beers are dedicated to improving the lot of\n\nendangered Texas species. Rahr is making donations from these proceeds\n\nto the Texas Parks & Wildlife Foundation to help with the recovery\n\nof these species. \n\n\nThe Texas Blind Salamander is a rare cave dwelling troglobite amphibian native to San\n\nMarcos, specifically the San Marcos Pool in the Edwards Aquifer. It has\n\nbright red external gills for absorbing oxygen from the water. Its\n\nmature length is 5 cm and its diet varies by what flows into its cave,\n\nincluding shrimp, snails and amphipods. \n\n\nBlind Salamander Pale Ale is a blend of the finest pale malts and East Kent\n\nGoldings hops. The fine balance of these toasted caramel malts and\n\nearthy hops makes Blind Salamander an easy drinking and satisfying ale.","ibu":100,"name":"Blind Salamander Pale Ale","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":6,"address":"237 Joseph Campau Street","category":"Irish Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"A robust porter made with chocolate malt. We blend it with Vanilla and Java beans, and balance it with U.S. Golding Hops.","ibu":68,"name":"Vanilla Java Porter","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.0999999046,"address":"91 S Royal Brougham Way","category":"German Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma.\n\n\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.\n\n\nOriginal Gravity: 11.75\n\nAlcohol By Volume: 5.10%\n\nMalts: 2-Row Barley, Malted Wheat, Caramel\n\nHops: Nugget\n\nAvailability: Year Round\n\nBest Paired With: Appetizers, salads, and desserts such as pies and pastries.\n\n\nBest of the Northwest/Pacific in the \"Fruit Beer\" category at the 2000 United States Beer Tasting Championship, 2000\n\nGold Medal, GABF, \"Fruit and Vegetable Beers\", 1994","ibu":96,"name":"Apricot Weizen Ale","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":6.1999998093,"address":"23 Hayward St.","category":"British Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A British style Old Ale perfect for easing the cold winter months, our Winter Ale offers a malt selection with hints of fig and chocolate, creating the perfect cozy balance of hops and malt.","ibu":37,"name":"Ipswich Winter","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":9.3999996185,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":45,"name":"Imperial Stout 2003","state":"California","website":"http://www.stonebrew.com/"},{"abv":0.9256803708584871,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":69,"name":"Pale Ale","state":"California"},{"abv":7.454912802408458,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":12,"name":"Poseidon Imperial Stout","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":6.5999999046,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":66,"name":"India Pale Ale","state":"Washington"},{"abv":8,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":62,"name":"Chocolat","state":"Luxembourg"},{"abv":3.427625173540778,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":38,"name":"Père Noël","state":"West-Vlaanderen"},{"abv":7.5,"address":"Lindenlaan 25","category":"German Lager","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":95,"name":"Leute Bok Bier","state":"Oost-Vlaanderen"},{"abv":8,"address":"Dulft 9A","city":"Itegem","coordinates":[51.1028,4.7269],"country":"Belgium","ibu":19,"name":"Serafijn Christmas Angel","state":"Antwerpen"},{"abv":8,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Quelque Chose was launched in January 1996. This versatile beer was specifically developed as a winter beer because, when warmed to 70ºC (160ºF), it can be taken as a hot drink. On the other hand, on the rocks, it is a wonderful aperitif. The cherries are soaked for months in slightly bitter ale before being blended into the beer. Quelque Chose is made with dark roasted malts, and the end result is something commonly known as an authentic nectar. The most original of the Unibroue line, it is highly appreciated by winter-sports enthusiasts.","ibu":56,"name":"Quelque Chose","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"Our first beer brewed right here at Flyers. This ale has brownish red hues with a mild maltiness balanced by an herbal hop character without being bitter.","ibu":112,"name":"First Flight Amber Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.5,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Brewed in the tradition of great German Bock beers with only German malts and hops, using 20% rye, malt to give it a distinctive spicy, yet smooth character. You'll love the rich flavors and deep red color of this unique German Brew.","ibu":67,"name":"Roggen Bock","state":"New York","website":"http://www.saranac.com"},{"abv":4.25,"address":"7030 Roscoe Turner Rd","city":"Kiln","coordinates":[30.3764,-89.4497],"country":"United States","description":"Southern Pecan Nut Brown Ale is the first beer in the world, to our knowledge, made with whole roasted pecans. The pecans are used just like grain and provide a nutty characteristic and a delightful depth to the flavor profile. This beer is very lightly hopped to allow the malty, caramel, and nutty flavors shine through. The color is dark mahogany. Southern Pecan won a Bronze Medal in the 2006 World Beer Cup in the Specialty Beer category.","ibu":55,"name":"Southern Pecan","state":"Mississippi","website":"http://www.lazymagnolia.com/"},{"abv":9.6000003815,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Our Big A IPA has earned its share of praise over the last few years. In 2004 the New York Times named it its top IPA , and in 2007 Mens Journal Magazine included it on its list of 25 best beers in America. The last of each year's edition typically leaves our warehouse around mid-May, and, as always, it doesn't last long. \n\n\nStash Wojciechowski, the “Killer Kielbasa,” created this bonafide India Pale Ale recipe exclusively for the Smuttynose Big Beer Series.","ibu":54,"name":"Big A IPA","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.0999999046,"address":"2100 Locust Street","category":"German Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","description":"A malty, full-bodied, deep reddish-amber lager. Traditionally brewed in March for the Oktoberfest in the fall, this style is also known as Märzen. Also available in bottles.","ibu":21,"name":"Schlafly Oktoberfest","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":11.75265116106567,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":0,"name":"Timmermans Faro","website":"http://www.anthonymartin.be/"},{"abv":5.25,"address":"190 5th Street","category":"Other Style","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This dark version of our Hefe Weizen retains the banana and clove flavors from the yeast and also has a richer malt flavor. Available November through April","ibu":49,"name":"The Livery Dunkel Weizen","state":"Michigan","website":"http://liverybrew.com/"},{"abv":1.1549865363123712,"address":"1321 Celebrity Circle","category":"Irish Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","ibu":23,"name":"Patriot Porter","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":13.257447267358483,"address":"175 Bloor Street East","category":"Belgian and French Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":7,"name":"Rickard's White Ale","state":"Ontario"},{"abv":13.602761841359834,"address":"15 Knox Rd.","city":"Bar Harbor","coordinates":[44.3996,-68.334],"country":"United States","description":"It does have a nice hint of wheat and blueberries to it.","ibu":91,"name":"Bar Harbor Blueberry Ale","state":"Maine","website":"http://www.atlanticbrewing.com"},{"abv":14.092803295995811,"address":"RR 1 Box 185","category":"German Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Dark and delightful, this is an easy-drinking brew. Once a seasonal favorite now we brew it all the time as part of our variety case. Brewed with five different malts and three different hops, then pitched with Bavarian lager yeast.","ibu":95,"name":"Angler Black Lager","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":6.8000001907000005,"address":"357 Salmon Brook Street","category":"North American Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Traditional English India Pale Ale brewed with all English malt & hopped with a blend of English & American hops. High in strength, bitterness & aroma.","ibu":16,"name":"Abijah Rowe IPA","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":14.381366723021321,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"Double your fun, double your pleasure and try and stay out of double trouble with this hopped up I.P.A.","ibu":107,"name":"Double Vision IPA","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5.3000001907,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"Highland's most robust beer, having a very malty body with a large, roasted chocolate flavor. It is black in color with a very clean finish and a moderate hop flavor.\n\n\nIBU: 25\n\nAlcohol content: 5.3% by volume\n\nHops: Chinook and Mt. Hood\n\n\n*Contains Wheat\n\n\nCalories per 12 oz. 216.81\n\nCarbs per 12 oz. 24.99","ibu":70,"name":"Black Mocha Stout","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":5.9000000954,"address":"Route 4 & 100A","category":"North American Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"The first IPAs were unfiltered and featured extra hops and higher strength as a preservative for the long trip from England to the colony of India. Our Traditional IPA is naturally carbonated, dry-hopped & unfiltered like the old days.","ibu":3,"name":"Traditional IPA","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":8.5,"address":"Breendonkdorp 58","category":"Belgian and French Ale","city":"Breendonk","country":"Belgium","ibu":36,"name":"Duvel","state":"Antwerpen"},{"abv":6.5,"address":"Eindhovenseweg 3","category":"North American Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":70,"name":"La Trappe Enkel / La Trappe Blond","website":"http://www.latrappe.nl/"},{"abv":4.5,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Now In Bottles!! Our award winning 8th Street Ale is based on an English-style \"Best Bitter\" which is the most common ale served in British pubs. What makes 8th Street Ale uncommon is its mellow bitterness and its slightly sweet malt flavor. It's aroma is derived from rare, imported Kentish hops, and lots of them.\n\nAlcohol content approximately 4.5% by volume (ALWAYS ON TAP!!)","ibu":48,"name":"8th Street Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.5,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","description":"\"Aass Classic\" is a classical \"lager\" The beer is slightly darker in color than our Genuine Pilsner. It is of course produced in accordance with the \"Purity law\". \n\n\nThe malted barely is produced in the Scadinavian countries. It is a combination of pilsner-, bayer- and caramelmalt. We use the famous Sazer and Hallertau hops, and the water is as pure as the Norwegian nature. \n\n\nThe Classic is largered at cool temperatures, and it is allowed to mature for approximately 3 months before bottling. \n\n\nThe beer is sold in caracteristic nice looking green bottel containing 11.2 fl. oz or 330 ml.","ibu":38,"name":"Gull Classic","website":"http://www.aass.no"},{"abv":6,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","ibu":114,"name":"Sherwood Forest IPA","state":"Michigan"},{"abv":0.8226164926883817,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":63,"name":"Rosé de Gambrinus","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":4.822772789064839,"address":"1101 North Water Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":42,"name":"Pils","state":"Wisconsin"},{"abv":4.150966557392612,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":99,"name":"Festive Ale 2000","state":"Nebraska"},{"abv":12.700251680033471,"address":"Lidick 51","city":"esk Budjovice","country":"Czech Republic","ibu":13,"name":"Samson Crystal Diplomat Dark Beer"},{"abv":10.364165818336266,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":115,"name":"Oktoberfest","state":"Wisconsin"},{"abv":11.558262907057987,"category":"North American Lager","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":49,"name":"Ruby Red Lager","state":"Mississippi"},{"abv":13.851416282421713,"city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":77,"name":"Belgian Style Wit","state":"Indiana"},{"abv":4.8000001907000005,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":16,"name":"Steamer Glide Stout","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":6.5,"address":"The Street","category":"Irish Ale","city":"Pentlow","coordinates":[52.081,0.6559],"country":"United Kingdom","ibu":78,"name":"Old Growler","state":"Essex"},{"abv":3.5,"address":"39176 Argonaut Way","category":"North American Lager","city":"Fremont","coordinates":[37.5441,-121.988],"country":"United States","ibu":20,"name":"Boys of Summer Wheat","state":"California"},{"abv":4.227797947967802,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":71,"name":"Nugget","state":"Oregon"},{"abv":6.5,"address":"Rijksweg 33","category":"Belgian and French Ale","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":117,"name":"Petrus Dubbel Bruin Ale","state":"West-Vlaanderen"},{"abv":8.6999998093,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":97,"name":"Cow Palace Scotch Ale 1998","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This wonderful red ale has a perfect balance of hops and malt. The clean finish will leave your palate begging for more.","ibu":108,"name":"Celtic Knot Irish Red","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.5,"address":"50 N. Cameron St.","category":"North American Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"The Dortmunder-Export style of beer was developed in Westfalen, Germany, and is a classic light lager with great character. This style boasts a light golden blonde color and exhibits a moderate hop palate. The finish of our Mountain Lager is rich yet mellow.\n\nOur brewers have developed this beer as a tribute to the Appalachian Mountains where we live and play.","ibu":60,"name":"Mountain Lager","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":2.158017515493121,"address":"91 S Royal Brougham Way","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":56,"name":"Traditional ESB","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":0.6752612070535091,"address":"6863 Lundy's Lane","category":"North American Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":44,"name":"Premium Light","state":"Ontario"},{"abv":3.7632115752317565,"category":"North American Ale","city":"Orlando","coordinates":[28.5383,-81.3792],"country":"United States","ibu":26,"name":"Red Rock","state":"Florida"},{"abv":13.07767131586855,"address":"1800 North Clybourn Avenue","category":"North American Lager","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":59,"name":"Rye Stout","state":"Illinois"},{"abv":3.197858794283105,"address":"2980 Cahill Main","category":"British Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":78,"name":"New Peculier","state":"Wisconsin"},{"abv":2.888247350756968,"address":"61 US Highway 1 South","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":117,"name":"Bootlegger Blonde Ale","state":"New Jersey"},{"abv":4.5,"address":"Darmstdter Landstrae 185","city":"Frankfurt am Main","coordinates":[50.0943,8.6913],"country":"Germany","ibu":38,"name":"Lager","state":"Hessen"},{"abv":3.5,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.\n\n\nFood Pairings: The toasty malt flavors go great with barbeque, grilled salmon, carmelized onions, and most hot and spicy foods. Try it with Mexican or Thai dishes.\n\n\nOG: 10.4 Plato\n\nFG: 3.3 Plato\n\nIBUs: 21\n\nSRM: 13\n\n3.5% abv","ibu":82,"name":"Dos Perros","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":1.4279220281167326,"address":"2424 West Court Street","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":41,"name":"Irish Style Ale","state":"Wisconsin"},{"abv":4.127527477287557,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":114,"name":"Capital Special Pilsner","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":11.303436595658434,"address":"999 Matsumoto-cho","category":"German Ale","city":"Takayama","country":"Japan","ibu":52,"name":"Weizen","state":"Chubu"},{"abv":7.805651246947976,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":99,"name":"Foret Saison","state":"Hainaut"},{"abv":11.437452890249713,"address":"Holstenstrae 224","category":"North American Ale","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":3,"name":"Duckstein Alt","state":"Hamburg"},{"abv":4.748839169169053,"address":"220 North Randall Road","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":95,"name":"Leprechaun Light","state":"Illinois"},{"abv":13.145147819384267,"category":"North American Ale","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":95,"name":"Oatmeal Stout","state":"Wisconsin"},{"abv":4.1900000572,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \"Select,\" but people started asking for that \"Blue Ribbon\" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \"Blue Ribbon\" to the bottle in 1895.\n\n\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \"Export\" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\n\n\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!","ibu":54,"name":"Pabst Blue Ribbon Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":5,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Originally introduced in 1992, Genuine Lager has evolved into a truly definitive Canadian Lager. Balancing a blend of quality aromatic and bittering hops with its medium body, Genuine Lager is a smooth, refreshing and easy-drinking beer with a subtle hop aroma and a hint of malty sweetness.","ibu":29,"name":"Genuine Lager","state":"Ontario"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"North American Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A Vienna-style lager with a smooth malt palate and a dry finish. ABV 5.2%","ibu":11,"name":"Spring Creek Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":14.162138906513434,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":117,"name":"Good Life Stout","state":"Nebraska"},{"abv":14.751015611344885,"address":"17700 Boonville Rd","category":"Irish Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":103,"name":"Deep Enders Dark","state":"California","website":"http://avbc.com/"},{"abv":13.448376523710854,"category":"German Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":43,"name":"Oktoberfest","state":"Texas"},{"abv":10.88251682680789,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":104,"name":"Celebration Red","state":"California"},{"abv":4.577392209313123,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":84,"name":"Dublin Stout","state":"Illinois"},{"abv":5.4000000954,"address":"Alte Akademie 2","category":"German Ale","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":102,"name":"Hefe Weissbier","state":"Bayern"},{"abv":10.5,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"This extreme Double Oatmeal Russian Imperial Stout will overwhelm, satisfy, and destroy your taste buds like no other!! D.O.R.I.S. is even darker, hoppier, and stronger than our gold medal winning B.O.R.I.S. The Crusher Stout. Dry hopped and first wort hopped and first wort hopped with the finest American hops for a great Imperial hops for a great Imperial Stout experience! Enjoy the darkness!","ibu":69,"name":"D.O.R.I.S. the Destroyer Double Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":10,"address":"715 Dunn Way","category":"Other Style","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Brewed with 17 lbs. of yams per barrel (in other words, a lot of yams!), this autumn seasonal is a different take on the “pumpkin” beer style. Brewed with cinnamon, nutmeg, allspice, vanilla, molasses, and maple syrup, and fermented with our traditional Belgian yeast strain, this bold and spicy beer is perfect on a cold autumn evening.","ibu":95,"name":"Autumn Maple","state":"California","website":"http://www.thebruery.com/"},{"abv":4.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"RondyBrew 2009 is a rendezvous of playful pale malts and feisty American hops, designed to exhilarate your winter-weary soul. This copper-colored ale delivers citrusy and refreshing hop aroma and flavor.\n\n\nThis year’s label features Rondy’s hottest event: The Running of the Reindeer. If you’re suffering from cabin fever, get out and run with the herd. But ready, set, RUN because this beer is only available for a limited time.\n\n\nRondyBrew adds refreshment and celebration to the festive fare and entertaining events enjoyed during Anchorage’s Fur Rondy Festival.","ibu":78,"name":"Rondy Brew 2009","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Uranus, ruler of the heavens, reigns supreme with beauty and brilliance. Gloriously gold in color, URANUS Golden Ale holds title to our first 100% Brettanomyces fermentation and conditioning. Brewed by mere mortals and blessed by the beer gods, this ale deserves to be worshipped.","ibu":42,"name":"Uranus - 100% Brettanomyces Golden Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.7453957557810336,"address":"101 Ehalt St.","category":"North American Lager","city":"Greensburg","coordinates":[40.3044,-79.5471],"country":"United States","ibu":57,"name":"Golden Light","state":"Pennsylvania","website":"http://www.redstarbrewery.com/"},{"abv":5.5,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Gemuetlichkeit translates from German as \"the fondness of feasting, drinking and merry company.\" This is true of most everyone in Wisconsin, especially those of us at the brewery. Each September in the nearby city of Jefferson, Wisconsin, thousand turn out for Gemuetlichkeit Days, a celebration of the area's German heritage. We invite you to celebrate the spirit of Gemuetlichkeit with us. Don your lederhösen, kick up your heels with a polka and raise a stein of our Gemuetlichkeit Oktoberfest with a friend. Ein Prosit!\n\n\nGemuetlichkeit Oktoberfest is a rich, amber lager with a malty aroma and balanced hop bitterness. This seasonal style is served at German Oktoberfests in liter steins.","ibu":5,"name":"Gemuetlichkeit Oktoberfest","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":7.1999998093,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"Sierra Nevada Torpedo Ale is a big American IPA; bold, assertive and full of flavor and aromas highlighting the complex citrus, pine and herbal character of whole-cone American hops.\n\n\nNamed after the torpedo-shaped hopback employed in its making, is an IPA made with Chinook, Cascade and Centennial hops.","ibu":53,"name":"Torpedo Extra IPA","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.5,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Dale's Pale Ale is our flagship beer and America's first hand-canned craft beer. It's an assertive but deftly balanced beer (somewhere between an American pale ale and an India Pale Ale) brewed with hefty amounts of European malts and American hops.\n\n\nIt features a merengue-like head, a copper color, and a hoppy nose, thanks to a big post-boil addition of Centennial hops. To complement its hoppy first impression, Dale's also sports a rich middle of malts and hops, and a bracing finish. Dale's is 6.5% alcohol by volume, and features 65 International Bittering Units.\n\n\nWe think of it as the perfect, everyday beer for hopheads like us. Dale's Pale Ale's rich flavor has helped us make many new fans, and its numerous honors have helped us kick huge holes in the misconceptions regarding cans.","ibu":41,"name":"Dale's Pale Ale","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5.0999999046,"address":"195 Ottley Drive","category":"Belgian and French Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"SweetWater Hummer is a tasty Belgian White Ale brewed with coriander and orange peel. Cloudy with subtle fruit tones and a lingering finish. Everybody loves a Hummer!","ibu":109,"name":"Hummer","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":4.5999999046,"address":"544B W. Liberty St.","category":"North American Ale","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"Early Cincinnati brewers shipping their beers into Tennessee would generously hop their beer to prevent spoilage during the long arduous trip over the Cumberland Trail. This classic interpretation of the American Pale Ale features a solid foundation of pale malt loaded with fresh Cascade hops. Here’s to getting where you’re going!","ibu":77,"name":"Cumberland Pale Ale","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.3075676066893385,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste.","ibu":1,"name":"Purple Haze","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Dark and strong as the style implies, La Maitresse du Moine dances across the palate with complexity and mystery--just as the Northern Lights move across the night sky, delighting the senses and enlightening the mind.\n\n\nIn the tradition of monks who have devoutly brewed beers of character and strength for centuries, La Maitresse du Moine Dark Strong Ale reflects the passion and dedication required to create a beer this heavenly. This Mistress of the Monk is seductive, pensive and intriguing. We say it in French: La Maitresse du Moine.","ibu":85,"name":"La Maitresse du Moine","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.7601247761539147,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":102,"name":"Snow Melt Nitrogen Pale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":4.5999999046,"address":"Doktor-Waibel-Strae 2","city":"Dornbirn","coordinates":[47.4123,9.7443],"country":"Austria","ibu":47,"name":"Gambrinus"},{"abv":7.047285008320524,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":54,"name":"Brout","state":"Nebraska"},{"abv":5,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":108,"name":"Shining Star Pale Ale","state":"California"},{"abv":3.6897172015086555,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":83,"name":"Stouterik / The Brussels Stout","state":"Vlaams Brabant"},{"abv":8,"address":"Rue de la Frontire, 435","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":87,"name":"La Moneuse","state":"Hainaut"},{"abv":8.145706665852444,"address":"1171 Hooper Avenue","city":"Toms River","coordinates":[39.9767,-74.1829],"country":"United States","ibu":48,"name":"Bad Seed Pumpkin Ale","state":"New Jersey"},{"abv":4.693789223196719,"address":"138 Nassau Street","category":"North American Ale","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":110,"name":"Bengal Gold India Pale Ale","state":"New Jersey"},{"abv":1.9867129423713203,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":10,"name":"Czech Mate Pilsner","state":"Wisconsin"},{"abv":13.738482870611465,"address":"B-4864 Cty Rd F","category":"North American Lager","city":"Unity","coordinates":[44.8516,-90.3165],"country":"United States","ibu":85,"name":"Lager","state":"Wisconsin","website":"http://www.logjambeer.com/"},{"abv":4.6999998093,"address":"219 Red River Avenue North","category":"North American Lager","city":"Cold Spring","coordinates":[45.4582,-94.4291],"country":"United States","ibu":112,"name":"Stite Golden Pilsner","state":"Minnesota","website":"http://www.coldspringbrewery.com/"},{"abv":14.170570913772625,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":76,"name":"Kasseler Premium Pils","state":"Hessen"},{"abv":12.826639813341504,"category":"British Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":94,"name":"Adler Bräu Winter Ale","state":"Wisconsin"},{"abv":8.5,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":79,"name":"Frank Double IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":6.61516578947417,"address":"75-5629 Kuakini Highway","category":"Irish Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":0,"name":"Black Sand Porter","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":13.232886216218898,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This is a true Celtic Red ale that’s as faithful as its namesake. With a smooth balance between malt and hops, it’s sure to become a pubhouse favorite","ibu":94,"name":"McCafferty's Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":6.530056460929938,"address":"617 Fourth Street","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":95,"name":"Great White Beer","state":"California","website":"http://www.lostcoast.com/"},{"abv":5.9000000954,"address":"2880 Wilderness Place","category":"Other Style","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":70,"name":"Sweaty Betty Blonde","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":12.39610202408852,"address":"50 East Washington Street","category":"German Lager","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":112,"name":"Holiday Wheat Bock","state":"California"},{"abv":8.107752755974813,"address":"PO Box 316","category":"North American Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":75,"name":"Bombay by Boat IPA","state":"California"},{"abv":5.648989918302471,"category":"German Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":93,"name":"Windmill Wheat Ale","state":"Texas"},{"abv":8.468833626775323,"address":"901 Gilman Street","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":116,"name":"Thomas Kemper Belgian White","state":"California"},{"abv":4.047570962411781,"address":"Gheudestraat 56","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":50,"name":"Lambic 2002","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":4.9000000954,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":25,"name":"Krystal Weizen","state":"Washington"},{"abv":7.6510443018184935,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":81,"name":"Atlas Amber Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":8.249555757144456,"address":"3015-D Hopyard Road","category":"North American Ale","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":116,"name":"Paint the Town Red","state":"California"},{"abv":10,"address":"15 Rowland Way","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":43,"name":"Old Blarney Barleywine","state":"California","website":"http://www.moylans.com/"},{"abv":9.601540554831377,"category":"North American Ale","city":"Ipswich","coordinates":[52.0593,1.1557],"country":"United Kingdom","ibu":40,"name":"IPA","state":"Suffolk"},{"abv":8.1000003815,"category":"North American Lager","city":"Longview","coordinates":[32.5007,-94.7405],"country":"United States","ibu":16,"name":"High Gravity Lager","state":"Texas"},{"abv":3.399771794091099,"category":"North American Ale","city":"Greeley","coordinates":[40.4233,-104.709],"country":"United States","ibu":19,"name":"Old 8444 Alt","state":"Colorado"},{"abv":2.3440299245491936,"address":"1814 Second Street","category":"North American Ale","city":"Santa Fe","coordinates":[35.6631,-105.966],"country":"United States","ibu":71,"name":"Altbier","state":"New Mexico","website":"http://www.secondstreetbrewery.com/"},{"abv":5.08555325053127,"address":"5798 South Rapp Street","category":"North American Ale","city":"Littleton","coordinates":[39.612,-105.019],"country":"United States","ibu":118,"name":"5280 Roadhouse Ghost Town Brown","state":"Colorado"},{"abv":9.952255094006931,"city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":66,"name":"Cloud Nine Witbier","state":"Ohio"},{"abv":8.782174556489066,"address":"Emil-Hoffmann-Strae 4-10","city":"Kln","coordinates":[50.8753,6.9944],"country":"Germany","ibu":93,"name":"Kölsch","state":"Nordrhein-Westfalen"},{"abv":3.167425672993245,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":53,"name":"2 Brothers","state":"Illinois"},{"abv":3.7394968708151666,"address":"103 West Michigan Avenue","category":"British Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":86,"name":"Scotch Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":5.363655714512706,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":95,"name":"Bière de Miel","state":"Hainaut"},{"abv":11.07919800529798,"category":"North American Ale","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":59,"name":"Evolutionary IPA","state":"Illinois"},{"abv":10.02205604695488,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":111,"name":"Bubba","state":"Wisconsin"},{"abv":7.25,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":95,"name":"Fat Cat","state":"Colorado"},{"abv":7.8499999046,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This dark lager was originally brewed as liquid bread to sustain Bavarian monks while fasting. Its sweet complex malt character comes from brewing with many varieties of dark roasted caramel malts and long periods of cold storage (6 months).","ibu":30,"name":"Sprecher Doppelbock","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":9,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":9,"name":"Special Extra Export Stout","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":4.8000001907000005,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"FA is no small beer: despite its deceptively pale golden colour, it boasts a big, smooth flavour and strong punch. Brewed with the finest English malts, and conditioned in cask with dry hops to produce fresh hop aromas and a fuller flavour, delighting the mouth and stimulating the tongue.","ibu":107,"name":"FA","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":6.0327625249278345,"address":"1075 East 20th Street","category":"German Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":101,"name":"Sierra Nevada Kellerweis","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named after one of the longest running bicycle races in France and aptly nicknamed \"The Hell Of The North\", the Paris-Roubaix has been held every April since 1915. This Pale Ale is brewed with Belgian and German malts and bittered with 3 different American hops for a pleasing balance.","ibu":107,"name":"Paris-Roubaix Pale Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.1999998093,"address":"445 St.Paul Street","category":"Other Style","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Senator Joseph McCarthy. The Hollow Earth Society. Members of the Spanish Inquisition. All convinced they were blessed with the gift of clarity. And proof that clarity might be overrated. \n\n\nSometimes, being unclear—and a little flexible—is a good thing. Like when you are looking for the perfect refreshment. Dundee Wheat Beer combines wheat and yeast into a refreshing hefeweizen-style brew. Unfiltered, so it is slightly cloudy and pleasantly unclear. \n\n\nSo the next time you’re convinced you’re right about what you’ve been drinking, give a little “unclarity” a try.\n\n\nAn American-style, unfiltered wheat beer. Pale straw in color with a light cloudiness from carefully selected wheat and yeast. Pleasant spicy malt aroma and a crisp hop finish.","ibu":98,"name":"Dundee Wheat Beer","state":"New York"},{"abv":5,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our commemorative ale honors Samson the elk. This is an oatmeal stout that is full-bodied with a wonderful roasted flavor and just a touch of sweetness.","ibu":34,"name":"Samson Stout","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":9.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"The granddaddy of stouts. Intended for export to the Imerial Court of Russia's Catherine the Great. Jet black. Full-bodied. Very strong.","ibu":112,"name":"Kate The Great Russian Imperial Stout","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":10.463186406823016,"address":"636 East Main Street","category":"Irish Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","description":"Think of Guinness but with a \"smooth bite\" to it. This is a wonder beer for those of us who enjoy a porter.","ibu":82,"name":"Bourbon Barrel Smoked Porter","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":7,"address":"1249-A Wicker Drive","category":"Belgian and French Ale","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"This style originated in Belgium to compete with the pilsners from Czechoslovakia, Germany, and Poland. It is a fruity ale with very strong carbonation, with complex, spicy flavors like cloves.","ibu":21,"name":"Hell's Belle","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":5.9000000954,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":11,"name":"Fuel Cafe","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5.05593622406845,"address":"Hofmhlstrae 10","city":"Eichsttt","country":"Germany","ibu":26,"name":"Dunkel","state":"Bayern"},{"abv":5.481722067603582,"category":"North American Ale","city":"McHenry","coordinates":[39.5584,-79.3528],"country":"United States","ibu":18,"name":"Big Bear Stout","state":"Maryland"},{"abv":5.3000001907,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Juniper Pale Ale: the new package for Yellow Snow Ale (winter 2004/2005). While the recipe (a pale ale infused with whole juniper berries) on the label remain the same, the name and label are new for 2005. Juniper Pale Ale is available in the classic 22-ounce bottle and on draft.","ibu":17,"name":"Juniper Pale Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.9000000954,"address":"23 Hayward St.","category":"Irish Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Named due to it's popularity with London railroad porters, it's known for its dark, rich, and roasty notes.","ibu":100,"name":"Ipswich Porter","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":4.7399997711,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \"Select,\" but people started asking for that \"Blue Ribbon\" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \"Blue Ribbon\" to the bottle in 1895.\n\n\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \"Export\" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\n\n\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!","ibu":43,"name":"Pabst Blue Ribbon","state":"Texas","website":"http://www.pabst.com/"},{"abv":2.885876998220034,"address":"61 Brookline Avenue","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":4,"name":"Hercules Stong Ale","state":"Massachusetts"},{"abv":8.326383310685877,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":84,"name":"Raccoon Red Ale","state":"California"},{"abv":5.636183115824203,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":106,"name":"Honest Stout","state":"Illinois"},{"abv":14.89625518109303,"category":"British Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":22,"name":"Wee Heavy","state":"Illinois"},{"abv":11.594441696395364,"city":"Longmont","coordinates":[40.1672,-105.102],"country":"United States","ibu":117,"name":"Golden Pale","state":"Colorado"},{"abv":6.4951694579202135,"address":"954 West Eckhardt Avenue","category":"Irish Ale","city":"Penticton","coordinates":[49.4944,-119.61],"country":"Canada","ibu":76,"name":"Killer Beer Dark Honey Ale","state":"British Columbia"},{"abv":8.5,"address":"Quoyloo","category":"British Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Skull Splitter is our strongest ale: which is named after Thorfinn Einarsson who was the 7th Viking Earl of Orkney. Sophisticated, satiny smooth with a deceptively light character, it is a tribute to our colourful forbear.\n\n\nOn the nose, this strong beer has a fruity malt character, with hints of dark fruit, spicy hop, dates and figs.\n\n\nOn the palate, rich and complex with sweet toasted malt, molasses, fresh and dried fruit and hints of warming spices.","ibu":86,"name":"Skullsplitter Ale","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":7.13688880443983,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":30,"name":"Black Powder Stout","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"This big tasting brew is only available in the brewpub. Very smooth and balanced with a deep clear brown color. Lightly hopped.","ibu":70,"name":"One Nut Brown Ale","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5.1999998093,"address":"Brouwerijplein 1","category":"German Lager","city":"Leuven","coordinates":[50.8865,4.7069],"country":"Belgium","description":"Jupiler is the most famous and most popular beer in Belgium. This delicious lager is brewed with the finest ingredients (malt, maize, water, hop, yeast), using undisputed craftsmanship, ensuring an outstanding beer quality. Jupiler offers refreshment on a wide variety of occasions, thanks to its digestibility and accessible taste. Jupiler (5,2 % ABV) is ideally served at a temperature of 3°C. The low-alcoholic variant Jupiler N.A. (0.5%) should be served at 1-2°C.\n\n\nJupiler has an outspoken image of masculinity, courage and adventure. Furthermore, Jupiler understands men like no other brand and shares their best moments. This combination of male bonding, self-confidence and self-relativation, speaks to all men and makes Jupiler an ally on their road through life.\n\n\nJupiler is the official sponsor of the highest Belgian football division, the Jupiler League, and also supports the Belgian national football team. Just like football, Jupiler is all about competence and ruggedness, effort and effort reward, team spirit and... festivity!","ibu":91,"name":"Jupiler","website":"http://www.inbev.com"},{"abv":5,"address":"Nadrazni 84","category":"German Lager","city":"Praha","coordinates":[50.0685,14.4067],"country":"Czech Republic","description":"Classic famous czech beer from Praha, one of the best beers of the world","ibu":70,"name":"Staropramen","website":"http://www.staropramen.com"},{"abv":5.0999999046,"address":"357 Salmon Brook Street","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"German Style Light Ale. Smooth, easy drinking with subtle noble hop character.","ibu":41,"name":"Copper Hill Kolsch","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":5,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"From Harpoon's site:\n\n\n\"When first seeing Harpoon Ale in a glass, you will notice its golden caramel color. You will also see that it is not excessively carbonated. High carbonation would mask this beer’s subtle flavor. The first aroma will be fruity. This is produced by the yeast and is a signature characteristic of Harpoon’s proprietary yeast strain. The second perceptible aroma is from the malt, with a delicate caramel note. Upon tasting Harpoon Ale, you will find that the malty, fruity character is nicely balanced by the mild hop bitterness. It has a smooth, medium body. The finish of this beer is crisp but not dry.\n\n\n\nThe overall character of this beer is fruity, balanced, and mild.\";\"0","ibu":45,"name":"Harpoon Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":9.8000001907,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Commemorating the 10th anniversary of Tommyknocker Brewery, this special brew is meticulously crafted with pure maple syrup, the highest quality chocolate and crystal malts and is accented with the finest blend of European and American hops. Imperial Nut Brown Ale, at 9.8% alcohol by volume, is a bigger, bolder version of their Maple Nut Brown.","ibu":28,"name":"Imperial Nut Brown","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":6,"address":"550 Roseberry Street","category":"North American Ale","city":"Winnipeg","country":"Canada","description":"To admit that the brewer at Half Pints is a bit of a hophead is an understatement. This India Pale Ale is unabashedly hoppy, not only from the Amarillo hops we add to the brew kettle, but also from the northwest U.S. variety called Cascade that we add directly to the final tank. A firm toasted malt presence forms the background for all of these hops, and we're confident our Little Scrapper IPA could take other so-called IPA's to the mat if called upon to do so. Try it with a curry or a basket of beer battered fish & chips. Serve in a glass at 8 degrees celcius. Unpasturized.","ibu":65,"name":"Little Scrapper IPA","state":"Manitoba","website":"http://www.halfpintsbrewing.com"},{"abv":11,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Before filtering the final batch of 2008 Mad Elf we racked some beer into bourbon barrels for six weeks of tender loving care. After bottling, we aged the beer for approximately eight months. This allows the tart cherries to push to the front. Subtle vanilla, bourbon, charred wood, coconut and toasted nut endnotes emanate from Splinter Red.","ibu":45,"name":"Tröegs Splinter Beer Red","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.6999998093,"address":"P.O. Box 315","category":"German Lager","city":"Blacksburg","coordinates":[37.23,-80.41],"country":"United States","ibu":36,"name":"Blacksburger Pils","state":"Virginia","website":"http://www.blacksburgbrewing.com/"},{"abv":6.5,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Every winter 300 hardy Telemark skiers converge at Mt. Bohemia and the Porcupine Mountains ski areas for three days of back country touring, lift served high speed runs, chili cook offs, and dancing and beer drinking to Finnish Reggae, Bluegrass, or whatever else comes out of the woodwork. Steve brews this hoppy American Brown Ale in honor of his good friends and ski buddies from all over the Midwest and Canada who attend. Rich, malty, and dry-hopped to perfection. Available December through March.","ibu":78,"name":"American Brown Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":10.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"High in the winter sky, two parallel stick figures are visible & known as “the twins,” or the constellation Gemini. The astronauts of the 1960s flew as teams of two in a program named after the celestial pairing. At Southern Tier, we have our own fraternal twins, Hoppe & Unearthly. Blended together & placed in this vessel, the mission of our Gemini is to travel high & take passengers on a journey far into the heavens.","ibu":38,"name":"Gemini Imperial Blended Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.8000001907000005,"address":"225 Heritage Ave","category":"Belgian and French Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Smuttynose Winter Ale is a full-bodied, amber beer brewed with a special Trappist ale yeast. Stylistically reminiscent of a Belgian Abbey Double, it features fruity aromas and flavor, balanced by soft Crystal hops. Warming, mellow & pleasantly complex, Smuttynose Winter Ale is your perfect cold weather companion.","ibu":22,"name":"Smuttynose Winter Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.920089331520762,"address":"2323 N Milwaukee Ave","category":"British Ale","city":"Chicago","coordinates":[41.9234,-87.6982],"country":"United States","description":"Drinkable brown session beer with a nutty, toffee flavor. Served lightly carbonated from a traditional Brittish handpump.","ibu":75,"name":"Workingman Mild","state":"Illinois","website":"http://revbrew.com/"},{"abv":5.647660142050165,"address":"2 Sagamore Street","category":"North American Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Bumppo's Brown Ale is a dark Dark Mild Ale. It is lightly hopped with a medium body, darkened and flavored with chocolate malt.","ibu":58,"name":"Bumppo's Brown Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":14.360319378963123,"city":"Wayne","coordinates":[40.0439,-75.3881],"country":"United States","ibu":29,"name":"Dunkelweizen","state":"Pennsylvania"},{"abv":6,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":85,"name":"Steinworthy Oktoberfest","state":"Nebraska"},{"abv":5.4000000954,"address":"Heitzerstrae 2","category":"German Lager","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":62,"name":"Winter-Traum","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":5.1999998093,"address":"Friedhofstrae 20-36","category":"German Ale","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":21,"name":"Hefe-Weizen","state":"Baden-Wrttemberg"},{"abv":8,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This beer, with high fermentation, has a pale amber colour and a flowery, fruity taste with a harmonious balance between sweet and sour (8% alcohol content). \n\nThis beer has a thick and vivid froth and strikes by its balanced taste with a delicate bitterness.","ibu":20,"name":"St. Bernardus Tripel","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":4.8000001907000005,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":45,"name":"Irish Dry Stout","state":"California","website":"http://www.moylans.com/"},{"abv":8.5,"address":"20, rue d'Houdeng","city":"Le Roeulx","coordinates":[50.5018,4.1086],"country":"Belgium","ibu":112,"name":"Triple","state":"Hainaut"},{"abv":9.440579085795836,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":20,"name":"Brogen Meadow Pale Ale","state":"New Jersey"},{"abv":10.26695182900262,"address":"Postplatz 1-4","city":"Donaueschingen","country":"Germany","ibu":69,"name":"Pils","state":"Baden-Wrttemberg"},{"abv":7.7307051689145325,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":61,"name":"Cattail Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.33091792616297,"address":"835 48th Avenue","category":"North American Ale","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":9,"name":"Colony Oatmeal Stout","state":"Iowa"},{"abv":10.840948187576357,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":40,"name":"English Brown Ale (discontinued)","state":"Nebraska"},{"abv":1.8880198138085191,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":80,"name":"Star of India Pale Ale","state":"California"},{"abv":5.741412436748654,"address":"5221 Water Street","category":"North American Ale","city":"Augusta","coordinates":[38.5702,-90.8802],"country":"United States","ibu":95,"name":"Tannhauser","state":"Missouri"},{"abv":5.1999998093,"address":"50 N. Cameron St.","category":"British Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This flavorful sweet ale has a smooth malt finish balanced against a light hop flavor. This beer is very quaffable and has become a brewpub favorite throughout the United States. \n\n\"Jolly Scot\" was a famed local beer produced by R.H. Graupners Brewery that was located at 10th and Market – one block from our brewery.","ibu":11,"name":"Jolly Scot Scottish Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6.972939796575652,"category":"German Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":118,"name":"Bavarian Wheat","state":"Texas"},{"abv":4.011386199176736,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":113,"name":"Nut Brown","state":"Illinois"},{"abv":9.56117178405725,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":19,"name":"Brown Cow Ale","state":"South Dakota"},{"abv":2.2335470949253002,"address":"PO Box 1510","category":"North American Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Uniquely hand-crafted using 100% all natural ingredients: The result is the smoothest, most flavorful light beer.","ibu":69,"name":"Abita Light Beer","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9.3999996185,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"This Bodacious Oatmeal Russian Imperial Stout will crush you like no other! This is the grand-daddy of all stout styles, with an intensely deep roasted and full bodied flavor. A robust hop character adds a refreshing balance.","ibu":46,"name":"B.O.R.I.S. The Crusher Oatmeal-Imperial Stout","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.5,"address":"80 LAMBERT LANE","category":"North American Ale","city":"Lambertville","coordinates":[40.3688,-74.9477],"country":"United States","description":"Brewing the perfect ale is truly a balancing act...hazardous work you might say. With Hop Hazard our challenge was to hand craft a malt rich base that could counterbalance a combustible five-hop blend and still leave your taste buds with enough room to enjoy a unique, crisp hop finish.","ibu":43,"name":"Hop Hazard","state":"New Jersey","website":"http://www.riverhorse.com"},{"abv":10.5,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"Sweet with some\n\ntropical flavors, some banana, a hint of clove.","ibu":4,"name":"Head Trip","state":"Oost-Vlaanderen"},{"abv":5.6999998093,"address":"420 Harrison Drive","category":"Irish Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"A roasty robust porter. \n\nBrewed with malt that I smoke over alder and apple wood. \n\n\nGoes great with steak, burgers, \n\nas well as barbecued, grilled, or smoked food. \n\nKielbasi! \n\n\nCheeses? \n\nTry it with Gouda, Brie, Swiss, or Havarti.","ibu":59,"name":"Hellsmoke Porter","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":6.0999999046,"address":"2035 Benson Avenue","category":"North American Ale","city":"St. Paul","coordinates":[44.9084,-93.1538],"country":"United States","ibu":100,"name":"Angry Planet Pale Ale","state":"Minnesota","website":"http://flatearthbrewing.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers.","ibu":108,"name":"Golden Pheasant","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":4.9000000954,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":73,"name":"Scratch #13 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Enjoy the clover honey hue and tropical nose. Simultaneously Punchy and soothing with a big body and a finish that boasts pineapple and grapefruit. Flower power is hopped and dry-hopped five different times throughout the brewing and fermentation process.","ibu":37,"name":"Flower Power India Pale Ale","state":"New York"},{"abv":5,"address":"5080 Rue St-Ambroise","category":"Other Style","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","description":"Apricot Wheat Ale blends various barley malts with malted wheat and natural apricot essence to create an original-tasting beer with a clean, fruit nose.\n\n\n5% alc/vol Available in Bottles and Draft","ibu":29,"name":"St-Ambroise Apricot Wheat Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":5.9000000954,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep black color. Chocolate milk color head, providing an array of Belgian lace. Toffee and light roasty aromas and flavors. A malty sweet taste is evident but, this rich oatmeal based stout finishes dry. Made with 20 lbs. of oysters, in the boil, from our good friends at Hog Island Oyster Company.","ibu":65,"name":"Oyster Point Oyster Stout","state":"California","website":"http://www.21st-amendment.com/"},{"abv":5.6999998093,"address":"312 North Lewis Road","category":"German Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":6,"name":"Royal Weisse","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":8,"address":"4133 University Way NE","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":115,"name":"Slam Dunkelweizen","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":6.0203652725653445,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":101,"name":"Green Valley Wild Hop Lager","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":10,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Our American-style Barleywine undergoes a three hour boil to intensify the caramel malts and the enormous Pacific Northwest hop charge. The result is a rich, estery brew with toffee notes and citrus hop flavors layered throughout. Enjoy this brew fresh today or lay it down for aging to see how the flavors of each vintage evolve.","ibu":10,"name":"Barleywine","state":"California","website":"http://www.greenflashbrew.com"},{"abv":7.641356916859106,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":8,"name":"Belgian Abbey","state":"California"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":92,"name":"Saison Imperiale","state":"Oost-Vlaanderen"},{"abv":3.3756116056615806,"address":"1650 Dell Range Boulevard","category":"North American Lager","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":19,"name":"Big Horn Light","state":"Wyoming"},{"abv":5.936200750517199,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":36,"name":"X-Line","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":11.195471518459264,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":81,"name":"Amber","state":"Wisconsin"},{"abv":5,"address":"No. 45, No. 3 Trunk Road","category":"North American Lager","city":"Yangon","coordinates":[16.7779,96.1679],"country":"Myanmar","ibu":107,"name":"Lager Beer"},{"abv":4.6220704824925365,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":60,"name":"Saison","state":"Nebraska"},{"abv":9.470000267,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":54,"name":"Imperial Stout 2001","state":"California","website":"http://www.stonebrew.com/"},{"abv":0.6971975415881004,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":45,"name":"Chinook Amber","state":"Nebraska"},{"abv":14.96016948128431,"address":"103 West Michigan Avenue","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":103,"name":"Arcadia ESB","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":7.275971631080171,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":90,"name":"Pretty Girl Pilsner","state":"Wisconsin"},{"abv":6.381478100843348,"address":"18452 NE Ribbon Ridge Road","city":"Newberg","coordinates":[45.3498,-123.073],"country":"United States","ibu":18,"name":"Black Cider","state":"Oregon"},{"abv":5.4000000954,"address":"Alte Akademie 2","category":"German Ale","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":25,"name":"Kristall Weissbier","state":"Bayern"},{"abv":8.965824007378242,"address":"1525 St. Charles Avenue","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":23,"name":"Abby Road Belgian Ale","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":5.9000000954,"address":"1999 Citracado Parkway","category":"Irish Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Stone Smoked Porter is dark, rich and complicated. A porter is substantially darker than a pale ale, but not as black or opaque as a stout. Our Smoked porter has a captivatingly deep mahogany color, complimented by silky dark tan head. Rich, full bodied and robust. Smooth, with chocolate and coffee-like flavors balanced by the subtle \"smoky\" character of just the right amount of peat-smoked specialty malt.","ibu":22,"name":"Smoked Porter","state":"California","website":"http://www.stonebrew.com/"},{"abv":6.8000001907000005,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","description":"Flashback Anniversary Ale is an India-Brown Ale with 6.8% ABV. This is the first beer we’ve made here that uses one single hop variety (Cascade) in the recipe in five separate additions. The fresh Cascade hop aroma and flavor is perfectly balanced with the dark roasted grains, making Flashback a very unique beer. We’re calling it an India Brown Ale to help illustrate its flavor to the consumer. It’s hoppy like an IPA but dark and roasty like a Brown Ale. Put them together and voila! Flashback at its finest!","ibu":58,"name":"Flashback Anniversary Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":6.25,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This Belgian witbier begins with equal parts malted wheat and pale barley to create its traditional cloudy white appearance. The addition of Brettanomyces gives ANCHOR its trademark \"green apple\" or \"horse blanket\" aroma and lends tartness to the flavor and finish. At over 6% ABV, this ANCHOR's got a bit of more kick than most wits.","ibu":44,"name":"Anchor Witbier with Brettanomyces","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.5,"address":"215 1/5 Arch St.","category":"Belgian and French Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"Our Gran Met (Grand Master) is an Ale made from our Propriatery yeast from a small brewery in Belgium. We use Cane and Beet sugar, along with German Pilsner Malt to create the unique flavor of this age old style. We also use a unique fermentation process of slowly adding the sugars to the fermentation during fermentation. This allows the yeast to more slowly ferment the beer without overloading the yeast. This process allows for a more clean, tight flavor profile.10% alc by vol. \n\n\nBottle Conditioned and Refermented.","ibu":4,"name":"Gran Met","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":0.14851047685542684,"address":"121 North Market St.","category":"North American Ale","city":"Selinsgrove","coordinates":[40.801,-76.8614],"country":"United States","ibu":14,"name":"Selin's Grove IPA","state":"Pennsylvania","website":"http://www.selinsgrovebrewing.com/"},{"abv":11.440495697684948,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":20,"name":"Tart","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":6,"address":"4120 Main Street","category":"Other Style","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Ruby colored ale fermented with over 500 pounds of real black and red raspberries for a distinct berry aroma and a tart, sweet flavor. This beer is gently filtered to preserve its delicate profile and is made with both Belgian Ale Yeast and our Proprietary Lager Strain.","ibu":80,"name":"Schuylkill Punch","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":11.715029072550402,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":55,"name":"Blonde Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.0999999046,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":37,"name":"Belgian White","state":"Washington"},{"abv":12.658649108919116,"address":"1253 Johnston Street","category":"North American Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":27,"name":"Pelican Bay Brown","state":"British Columbia"},{"abv":4.5999999046,"address":"Hohenzornstrasse 2","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":44,"name":"Huusbier Hell"},{"abv":12.313600709042747,"address":"111 South Murphy Avenue","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":20,"name":"Bitter","state":"California"},{"abv":8.5,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":16,"name":"Der Weisse Bock","state":"Bayern"},{"abv":4.4000000954,"city":"Abingdon","coordinates":[51.6701,-1.2850000000000001],"country":"United Kingdom","ibu":27,"name":"Tanners Jack","state":"Oxford"},{"abv":3.248942107492244,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":8,"name":"Haymaker Extra Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":14.605117553658019,"address":"Lion Brewery","city":"Harltepool","coordinates":[41.4995,-81.6954],"country":"United Kingdom","ibu":54,"name":"Long Leg English Fuggles Hop Ale","state":"Cleveland"},{"abv":9,"address":"506 Columbia Street","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":11,"name":"Old Boardhead 2006","state":"Oregon"},{"abv":0.551161136025512,"address":"113 North Broadway","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":87,"name":"Espresso Porter","state":"Montana"},{"abv":12.933666556789454,"address":"ul. Browarna 88","city":"Zywiec","coordinates":[49.6622,19.1742],"country":"Poland","ibu":30,"name":"Krakus","website":"http://www.zywiec.com.pl/"},{"abv":9,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":25,"name":"Brigand","state":"West-Vlaanderen"},{"abv":6.5,"address":"56 Market Street","category":"North American Ale","city":"Portsmouth","coordinates":[43.0781,-70.7575],"country":"United States","description":"An explosion of hops dominate this deep golden ale. Brewed with four varieties of hops & dry hopped with three other hops, the flavor is powerful. Not a harsh bitterness, but a full hop flavor.","ibu":100,"name":"Bottle Rocket IPA","state":"New Hampshire","website":"http://www.portsmouthbrewery.com/"},{"abv":3.8512409170043984,"address":"67 Mytton Oak Road","category":"Irish Ale","city":"Shrewsbury","coordinates":[52.7069,-2.787],"country":"United Kingdom","ibu":68,"name":"Entire Butt English Porter","state":"Shropshire"},{"abv":11.831308972795538,"address":"30 Butterfield Road","category":"North American Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":1,"name":"Iditarod Imperial Stout","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":11,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":42,"name":"El Diablo Tripel","state":"Illinois"},{"abv":5.103388485209682,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A spiced ale that tastes just like pumpkin pie in a glass.\n\n\nThe Pumpkin Ale is a malty, copper coloured brew that's spiced with cinnamon, cloves, nutmeg and ginger. We add 100 lbs of pumpkin directly to the mash and the resulting beer tastes just like pumpkin pie in a glass.","ibu":88,"name":"The Great Pumpkin Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":0.7386885921948128,"ibu":90,"name":"07/22/10 08:00 PM"},{"abv":10.703970913169316,"address":"210 Swanson Avenue","category":"North American Lager","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Light American Lager, Our Lightest, Lowest Carb. Beer","ibu":103,"name":"UpRiver Lager","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":8,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Yes that's right! The mother of all Pumpkin Ales is currently in transit to our wholesalers and should be out on shelves around mid-September. This 8.0% ABV pumpkin ale is heartier, spicier, and more \"caramelly\" and \"pumpkiny\" than its faint brethren! \n\n Perfect finisher on a cool autumn night, or match it up with a slice of pumpkin pie and fresh whipped cream. \n\n If you don't agree this is the mother of all pumpkin ales, then you just don't like mothers!","ibu":27,"name":"Imperial Pumpkin Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.115274730676307,"address":"906 Washington Street","category":"North American Lager","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":34,"name":"Harvest Wheat","state":"California"},{"abv":10.200983896461214,"category":"Irish Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":58,"name":"Famous Porter","state":"Massachusetts"},{"abv":8.679950919252411,"category":"North American Ale","city":"Anchorage","coordinates":[61.2181,-149.9],"country":"United States","ibu":42,"name":"Ironhorse Not Brown","state":"Alaska"},{"abv":12.071100761799,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":64,"name":"Classic Pale Ale","state":"North Carolina"},{"abv":11.396377998661155,"address":"107 North Lincoln Avenue","category":"North American Lager","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":66,"name":"Wheat","state":"Nebraska"},{"abv":6.194865394386449,"address":"Polson MT 59860","category":"Other Style","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":56,"name":"Peaches and Cream","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":6.224696357699654,"address":"175 Bloor Street East","category":"North American Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":60,"name":"Rickard's Pale Ale","state":"Ontario"},{"abv":7,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"ENVY Imperial Pilsner obsessively desires to be better than the world’s most common lager. Envy vies for attention with its beautifully bright, golden color and tightly-formed crown. Intense yet true pilsner malt provides the perfect base for profuse citrus, floral and spicy hop flavor. Envy achieves distinction, making other beers turn green.","ibu":117,"name":"Envy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"There comes a time every year in the Adirondacks when a heavier, more malty brew compliments the cold winter months. This brew showcases a variety of dark roasted malts, producing a beer with a rich chocolaty flavor.","ibu":74,"name":"Saranac Chocolate Amber","state":"New York","website":"http://www.saranac.com"},{"abv":9.291028936359478,"address":"299 Main Street","category":"Other Style","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":117,"name":"Vanilla Berry Orange","state":"Iowa"},{"abv":13.639081960912051,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":6,"name":"Hell","website":"http://www.paulaner.com/"},{"abv":5,"address":"Marsstrae 46-48","category":"German Ale","city":"München","country":"Germany","ibu":87,"name":"Franziskaner Hefe-Weissbier Hell / Franziskaner Club-Weiss","state":"Bayern"},{"abv":12.863801760575356,"address":"Kreuzeckstrae 23","category":"German Ale","city":"Pullach im Isartal","coordinates":[48.0708,11.5311],"country":"Germany","ibu":0,"name":"Stationsweizen","state":"Bayern"},{"abv":7.597150060516496,"address":"925 South Third Street","category":"Irish Ale","city":"La Crosse","country":"United States","ibu":12,"name":"Winter Porter","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":8,"address":"155 Mata Way Suite 104","category":"German Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":66,"name":"Z-U-Later Doppelbock","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.126811997369144,"address":"57 Hamline Avenue South","category":"North American Ale","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":15,"name":"India Pale Ale","state":"Minnesota"},{"abv":2.065615489580055,"address":"2922 Lyndale Avenue South","city":"Minneapolis","coordinates":[44.9491,-93.2885],"country":"United States","ibu":37,"name":"High Point Dunkel","state":"Minnesota"},{"abv":5.0999999046,"city":"Bernalillo","coordinates":[35.3,-106.551],"country":"United States","ibu":8,"name":"Silver","state":"New Mexico"},{"abv":8.5,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":64,"name":"Christmas Ale","state":"Antwerpen"},{"abv":5.249774897078199,"city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":26,"name":"Scottish Ale","state":"Delaware"},{"abv":5.5999999046,"address":"17700 Boonville Rd","category":"Other Style","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"\"This copper colored ale is smooth, malty, and lightly sweet, with a delicate hint of spice for that oh-so-drinkable, extra velvety flavor. The character is lighter in body than its cousin our wildly popular Winter Solstice Seasonal Ale. This is a silky, creamy dream, perfect as a warm weather beer.\";\"0","ibu":112,"name":"Summer Solstice Cerveza Crema","state":"California","website":"http://avbc.com/"},{"abv":3.661238224045773,"ibu":14},{"abv":7.759697514454227,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":102,"name":"Schlafly Witbier","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.832282247896642,"city":"Reedsburg","coordinates":[43.5325,-90.0026],"country":"United States","ibu":97,"name":"Dunkelweiss","state":"Wisconsin"},{"abv":5,"address":"2801 - 27A Avenue","city":"Vernon","coordinates":[50.2613,-119.277],"country":"Canada","ibu":40,"name":"Premium Lager","state":"British Columbia"},{"abv":8,"address":"No-254, Colombo Road","category":"North American Ale","city":"Colombo","coordinates":[38.7548,-9.1883],"country":"Sri Lanka","description":"\"...the stout was soft, fresh and quite delicious. This was the top-fermenting Lion Stout...It was bottle-conditioned and had an extraordinary chocolaty, mocha...character.\" - Michael Jackson, The Beer Hunter","ibu":3,"name":"Lion Stout","website":"http://www.lionbeer.com/"},{"abv":5.5,"address":"9322 State Route 414","category":"British Ale","city":"Lodi","coordinates":[42.5739,-76.8582],"country":"United States","description":"Pours a very deep black with a pleasant aroma and a thick brown head. It has the usual coffee taste you would expect with a hint of chocolate. There is quite a lot of carbonation but is very drinkable.","ibu":14,"name":"Oatmeal Stout","state":"New York"},{"abv":5.4000000954,"address":"905 Line Street","category":"German Lager","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"AutumnFest is Weyerbacher's own unique twist on the German Oktoberfest style. Copper-amber in color, AutumnFest is made with Vienna and Munich malts for that authentic, Bavarian easy drinking taste. Each sip imparts a wonderful roastiness of malt on the tongue followed by a smooth, consistent finish. Wonderfully balanced with a clean, velvety, slightly fruity taste, AutumnFest is the perfect beer for the Fall- a nice transition between the lighter beers of summer and the darker, heavier winter brews. It's a favorite of many Weyerbacher aficionados, who anticipate the end of summer with this wonderful beer. \n\n\n Weyerbacher AutumnFest ( ABV 5.4%) is generally available in stores August through December. Pick up a case to celebrate the change of seasons. Prost!","ibu":19,"name":"AutumnFest","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":1.6493420602183084,"ibu":101,"name":"07/22/10 08:00 PM"},{"abv":6.060378760562132,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":3,"name":"Zlaté Pivo Golden Beer","state":"Nebraska"},{"abv":8.391443984608642,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":54,"name":"Iron Mine Pale Ale","state":"North Carolina"},{"abv":2.3113801398731812,"category":"Other Style","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":104,"name":"Rhubarb","state":"North Carolina"},{"abv":4.9000000954,"address":"Rheydter-Strae 138","category":"North American Ale","city":"Korschenbroich","coordinates":[51.1833,6.4993],"country":"Germany","ibu":84,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":2.5742642065956414,"address":"Am Deich 18-19","category":"German Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":58,"name":"Beck's Light","state":"Bremen"},{"abv":8.6999998093,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","description":"Brace yourself, bereaved fans of Stone 11th Anniversary Ale, for your joyous new day has finally come! It’s like your first crush–you know, the one who broke your heart when she/he decided to go to the junior prom with what’s-their-name–has suddenly come back to you to go for a cruise down the main drag on Friday night. It’s like…it’s like finding that long lost gold watch, given to you by your father, who got it from his father, who got it from his father. It’s like when your best buddy in the world, Sam the family dog, finally sauntered up the front porch steps one sunny afternoon after having been on a six-week runaway. Yes, it’s just like that.\n\n\nAnd it’s like this: A brilliantly hopped double IPA–providing a wake up call of floral and citrus aromas–backed up by a deliciously smooth and dark roasted maltiness. You get the best of both worlds with this black double IPA.","ibu":90,"name":"Sublimely Self-Righteous Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.6999998093,"address":"225 Heritage Ave","category":"North American Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Our interpretation of a classic English beer style is copper-colored, medium-bodied and highly hopped. Its flavor is delightfully complex: tangy fruit at the start, with an assertive hop crispness and a long malty palate that one well-known beer writer has compared to the flavor of freshly-baked bread.","ibu":49,"name":"Shoals Pale Ale","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":6.6999998093,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"It took only a couple of rounds of India's finest for the 19th century British Colonists to write home, \"Either send us some good beer or we're outta here.\" India Pale Ale is what was sent. Originally made extra hoppy to survive the voyage, it's unique flavor also survived the Colonists finicky tastes and became and instant favorite back home.\n\n\nPyramid India Pale Ale has the distinctively hoppy flavor and aroma craft beer enthusiasts demand. Abundant helpings of Columbus hops gives this ale an astonishing 67 IBU's - truly a beer for bold tastes! The distinguished Celebrator Beer News aptly named this brew \"hophead nectar\" (June/July issue, 1998).","ibu":76,"name":"Pyramid Thunderhead IPA","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":7.37593460819911,"address":"6 N. Reamstown Road","category":"North American Ale","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A nutritious st our that has a distinct, smooth and firm body. Specialty malts create a hint of nuttiness, coffee, chocolate, and roasted flavors.","ibu":31,"name":"Round Boy Stout","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":6.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In our never-ending pursuit of answering the burning question of what’s new, we present Scratch #12-2008, an IPA.\n\n \n\nThe IPA is a fickle beast; too much malt and you veer into a high-octane hopbomb, while too little hops can question a beer’s virility. In these chaotic days of shrinking hop harvests, balance is key to a proper IPA. Scratch #12-2008 delivers an intense pine nose married with a subtle wildflower aroma. The Thames Valley yeast adds an earthy nod to traditional English IPAs, while the American hops provide a bold contrasting bitterness.\n\n \n\nBreath deep, relax, enjoy.","ibu":90,"name":"Scratch #12 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.4000000954,"address":"Emil-Ott-Strasse 1-5","category":"Other Style","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":90,"name":"Schneider Weisse","website":"http://www.schneider-weisse.de"},{"abv":3.7999999523,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast.\n\n\nFood Pairings: The combination of Onward Stout and oysters is a match made in heaven. It also goes well with other shellfish, grilled steaks, and believe it or not, rich chocolate desserts. Carbonade Flamande, seared beef cubes simmered in Stout for several hours, is a classic Belgian dish.\n\n\nOG: 11.3 Plato\n\nFG: 4.3 Plato\n\nIBUs: 35\n\nSRM: 45\n\n3.8% abv","ibu":65,"name":"Onward Stout","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":7,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"First sold in 75 cl (25.4 fl.oz.) bottles, it is noted for its coppery colour which makes it particularly attractive.\n\n\nTopped with a creamy head, it gives off a light, fruity apricot aroma produced by the fermentation. The taste perceived in the mouth is a balance confirming the fruity nuances noticed in the fragrance. \n\n\nIts taste, which imparts a silky sensation to the tongue, is made refreshing by a light touch of bitterness. To the palate, the taster perceives a pleasant astringency which complements the flavour qualities of this beer very harmoniously.\n\n\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised.","ibu":118,"name":"Chimay Première (Chimay Red)","website":"http://www.chimay.com"},{"abv":4.109406798659082,"address":"1777 Alamar Way","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":46,"name":"Certified Organic Extra Pale Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":8.5,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":72,"name":"Bottleworks IPA","state":"Washington"},{"abv":4.5,"address":"4720 California Avenue SW","category":"North American Lager","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":37,"name":"Luna Weizen","state":"Washington"},{"abv":5,"address":"Florhofstrasse 13","category":"German Ale","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":89,"name":"Ur-Weizen"},{"abv":2.4226536849806743,"address":"Brenplatz 7","city":"Tettnang","coordinates":[47.6715,9.588799999999999],"country":"Germany","ibu":85,"name":"Kellerpils","state":"Baden-Wrttemberg"},{"abv":11.300000191,"address":"Rue de l'Abbaye 8","category":"Belgian and French Ale","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"Reddish-brown colour, with a very compact head and an aroma of figs, feels like honey in the mouth. The alcohol profile is a major component in the flavour of this rich ale. It is very similar to 6 and 8, but has much more of everything. Some may find the high alcohol content to be disagreeable.","ibu":72,"name":"Rochefort 10","state":"Namur"},{"abv":11.671106692869413,"address":"Broughton","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":82,"name":"Old Jock Ale","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":12.984524517859192,"address":"392 George Street","category":"North American Ale","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":52,"name":"British Nut Brown","state":"New Jersey"},{"abv":0.7111853615900221,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":59,"name":"German Valley Amber","state":"New Jersey"},{"abv":0.8061289990818377,"address":"313 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":1,"name":"Helles Bock","state":"Wisconsin"},{"abv":9.839074504204724,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":112,"name":"Hitachino Nest White Ale","state":"Kanto"},{"abv":6.084864833047808,"address":"243 North Gaither Street","category":"North American Ale","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":96,"name":"Black Diamond Imperial Porter","state":"Oregon"},{"abv":2.7045182018525105,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":22,"name":"Uptown Brown","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8.8999996185,"address":"5401 Linda Vista Road #406","category":"German Lager","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":78,"name":"Navigator Doppelbock","state":"California","website":"http://www.ballastpoint.com/"},{"abv":4.8499999046,"address":"7803 Ralston Road","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":94,"name":"Pilsner","state":"Colorado"},{"abv":5.3000001907,"address":"9085 Elk Grove Boulevard","category":"North American Ale","city":"Elk Grove","coordinates":[38.4093,-121.363],"country":"United States","ibu":104,"name":"Otis Alt","state":"California"},{"abv":5.5999999046,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":59,"name":"Witchtree ESB","state":"Minnesota"},{"abv":8.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Bask in the","ibu":66,"name":"Yakima Glory","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.8000001907000005,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Our India Pale Ale is hoppy and bitter with a nice sweet malt finish. Slow dry-hop conditioning brings out the herbal hop aromas.","ibu":81,"name":"Old Salt IPA","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"Irish Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"It usually means bigger. Richer. And we can think of no better way to describe the taste of this even-bolder take on our classic, Black Butte Porter. Black Butte XX is an imperial porter with a lot more malt and hops, a wealth of coffee, cocoa nibs and aged in bourbon oak barrels. XX. It also means 20. Enjoy one during our 20th anniversary. On the flavor scale - It’s legendary.","ibu":68,"name":"Black Butte XXI","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5,"address":"180 Old Hume Hwy","category":"North American Lager","city":"Picton","coordinates":[-34.1855,150.607],"country":"Australia","description":"A traditional German-style lager, fermented at 7-9°C and lagered at 4°C for 4-6 weeks. The storage produces a soft, natural carbonation. Full-bodied with high bitterness and hop flavour and a dry finish. Hoppy aromatic nose. Available on draught or in 780 mL champagne-style bottles. Can be difficult to acquire.","ibu":88,"name":"Scharer's Lager","state":"NSW"},{"abv":4,"address":"5401 Linda Vista Road #406","category":"Belgian and French Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"Ballast Point Wahoo Wheat Beer is created using the same ingredients that were once used in Belgium. Flaked unmalted wheat, oats and malted barley comprise the grain. The unmalted wheat has a high protein content, which causes the beer to be hazy, thus giving it a cloudy, or \"white\" appearance. A special yeast gives a refreshing tangy flavor that is different from both the sour Weiss beers of Berlin or the banana and clovey Weizens of Bavaria. The mild hopping allows the unique malts to show through and does not conflict with the subtleties of the citrus spicing. This unique citrus character is created by adding a blend of curacao (bitter orange), sweet orange and coriander to the boil. White beers are light and refreshing, yet provide a complex reminder that interesting high quality beer does not have to be bitter and dark. Ballast Point Wahoo Wheat Beer is the perfect beer for sunny San Diego.","ibu":57,"name":"Wahoo Wheat Beer","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6.5,"address":"Gamle Rygene Kraftstasjon","category":"Belgian and French Ale","city":"Grimstad","country":"Norway","description":"One of our most refreshing brews, made for those hot summer days, but satisfying year 'round. Recommended serving temperature 8°C/45°F. Goes well with seafood, particularly oysters.","ibu":117,"name":"Nøgne Ø Saison","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5,"address":"1025 Owen Street","category":"German Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The ancient peoples that inhabited Wisconsin are known for building numerous celestial stone monuments and earthen effigy mounds to serve as symbols of their culture and their beliefs. Unfortunately, most of these structures have fallen victim to the farmer's plow over the past 150 years. Not far from the brewery, lying preserved on the floor of Rock Lake, are two effigy mounds - a Headless Man and a Turtle. Legend tells us, as the Turtle can survive on both land and in water, its spirit helped guide the Headless Man into the afterlife. May the Turtle's spirit guide you to happiness with a Headless Man Amber Alt.\n\n\nThe Headless Man is brewed in the \"old way\" of a Düsseldorf-style Altbier. A unique cold lagering process gives this amber ale its smooth taste.","ibu":111,"name":"Headless Man Amber Alt","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":14.205824446754134,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":95,"name":"Saint Florian's Doppelbock","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":7,"name":"Dublin Stout","state":"Illinois"},{"abv":5.4000000954,"address":"311 Tenth Street","category":"Belgian and French Ale","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Blue Moon Belgian White, Belgian-style wheat ale, is a refreshing, medium-bodied, unfiltered Belgian-style wheat ale spiced with fresh coriander and orange peel for a uniquely complex taste and an uncommonly smooth finish.\n\n\nThe name \"Belgian White\" is a reference to the cloudy white, opaque appearance of the beer. \"Belgian White\" also refers to the style of beer, which has been brewed in Belgium for about 300 years. This type of ale is brewed with malt, wheat and oats. It is unfiltered, which allows protein and yeast to remain suspended in the beer and creates the cloudy appearance. This also adds to the smoothness and full body of the beer.\n\n\nPutting a new twist on the lime ritual, Blue Moon is traditionally served with a slice of orange. Blue Moon was launched in 1995.","ibu":93,"name":"Blue Moon Belgian White","state":"Colorado","website":"http://www.coors.com"},{"abv":3.419362594100075,"address":"PO Box 316","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":99,"name":"Twist of Fate Bitter","state":"California"},{"abv":12.751329093219837,"city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":115,"name":"Blitzen","state":"California"},{"abv":10.665376099458811,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":113,"name":"Amber Ale","state":"Hawaii"},{"abv":12.29650670062236,"address":"1507 Montana Street","city":"Missoula","coordinates":[46.8726,-114.02],"country":"United States","ibu":67,"name":"Dancing Trout Ale","state":"Montana"},{"abv":7.4000000954,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":75,"name":"Model-A-Tor Doppelbock","state":"Nebraska"},{"abv":0.08367751307532978,"address":"200 East Campbell Avenue","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":57,"name":"ESB","state":"California"},{"abv":4.5999999046,"address":"29 Nyrang Street","category":"North American Lager","city":"Sydney","coordinates":[-33.8501,151.045],"country":"Australia","ibu":94,"name":"New","state":"New South Wales"},{"abv":5.0999999046,"address":"901 S. Bond St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"A complex, robust porter, Bad Moon is medium to full bodied with a slightly sweet, malty presence combined with hints of chocolate and coffee. This is a full-bodied beer that gets its chocolate and coffee-like flavors and color from the use of generous amounts of roasted malts. It has a smooth finish and a balanced hop character.","ibu":30,"name":"Bad Moon Porter","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5.8000001907000005,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A Traditional, British style. Robust and full bodied. Introduced as a member of the Winter Classics Mix Pack in 2004, Samuel Adams® Holiday Porter with its rich malt complexity has become a favorite among our winter seasonal brews. In total, five varieties of malted barley are used in the brewing process including a variety of German malt called Carafa®. The Carafa® gives our Holiday Porter its smooth, roasted malt character. Add generous portions of imported hops to the mix and one has a brew that is both robust and high in drinkability.","ibu":106,"name":"Samuel Adams Holiday Porter","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.3000001907,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Rich in color and bold in taste, our U.S. style Brown Ale combines roasted malt with two additions of specialty selected hops to produce a well-balanced ale with a satisfying finish.","ibu":112,"name":"Ipswich Dark Ale","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":2.5661215580080334,"address":"313 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":110,"name":"Hinterland Honey Wheat","state":"Wisconsin"},{"abv":5.199398010758322,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":51,"name":"Chesapeake Amber Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":11.331844294214307,"address":"Toronto ON","city":"Toronto","coordinates":[43.7379,-79.5714],"country":"Canada","ibu":28,"name":"Premium Dark","state":"Ontario"},{"abv":7.391444650072254,"address":"929 North Russell Street","city":"Portland","coordinates":[45.5408,-122.676],"country":"United States","ibu":96,"name":"Sweet Betty Classic Blonde Ale","state":"Oregon"},{"abv":0.6889020232398124,"address":"624 Ludington Street","category":"North American Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":72,"name":"Stump Sitter Stout","state":"Michigan"},{"abv":9.645105272828914,"address":"Rue de Noupr s/n","city":"Cerfontaine-Silenrieux","coordinates":[50.2248,4.4102],"country":"Belgium","ibu":59,"name":"Joseph Spelt Ale","state":"Namur"},{"abv":0.13888942817888883,"address":"147 East Main Street","category":"Irish Ale","city":"Newark","coordinates":[39.6834,-75.7467],"country":"United States","ibu":29,"name":"Pig Iron Porter","state":"Delaware"},{"abv":11,"address":"Oostrozebekestraat 43","city":"Ingelmunster","coordinates":[50.9201,3.2579000000000002],"country":"Belgium","ibu":10,"name":"Kasteel Bier Brune","state":"West-Vlaanderen"},{"abv":5.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"An amber ale with a ruby hue, fresh hop aroma, rich malt body and a complex palate.","ibu":14,"name":"Grail Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6.721036350016939,"address":"674 South Whitney Way","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":74,"name":"Dunkle Weiss","state":"Wisconsin"},{"abv":12.895107989766677,"address":"300 West Fourth Street","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":89,"name":"Cortland Autumn (discontinued)","state":"Nebraska"},{"abv":5.5999999046,"address":"1705 Mariposa Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":46,"name":"Porter","state":"California"},{"abv":7,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"1837 is a blonde beer that is slightly cloudy. It contains 7% alcohol and is refermented in the bottle. Following the brewing tradition of the great abbey beers, it is made with a blend of Quebec-grown raw wheat, lightly roasted barley and a hint of spices. It is a truly refreshing beer.","ibu":93,"name":"1837","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.6799998283,"address":"725 Fourth Street","category":"British Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","ibu":86,"name":"Dead Leaf Green","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":2.7866192397358414,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This smooth Ale has an even display of hop bitterness and bold malt flavor, with a hint of nutty flavor from the dark malt, to produce a superior brown ale taste","ibu":117,"name":"Squirrel's Nut Brown","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":9,"address":"2800 North Reading Road","category":"British Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","ibu":20,"name":"Fat Dog Stout","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":8.552406103696242,"address":"1001 South Eighth Street","category":"North American Lager","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":73,"name":"Courthouse Copper","state":"Wisconsin"},{"abv":6,"address":"110 Wisconsin Dells Parkway South","category":"Irish Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":23,"name":"North of the Border Porter","state":"Wisconsin"},{"abv":4.4000000954,"address":"New Alloa Brewery","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":102,"name":"Kelpie Seaweed Ale","state":"Scotland"},{"abv":4.8000001907000005,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":59,"name":"Schwarzbier","state":"Thüringen"},{"abv":4.036738495889699,"address":"Hauptstrae 219","city":"Miltenberg","coordinates":[49.6993,9.2492],"country":"Germany","ibu":60,"name":"Kräusen Naturtrüb","state":"Bayern"},{"abv":6.322030476509813,"address":"2029 Old Peshtigo Road","category":"North American Ale","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":73,"name":"Red","state":"Wisconsin"},{"abv":6.8000001907000005,"address":"99 Pyrmont Bridge Road","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":76,"name":"James Squire Australian Best Ale Limited Release","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":15,"address":"155 Mata Way Suite 104","category":"German Lager","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":109,"name":"Broken Keg Ice Bock","state":"California","website":"http://www.portbrewing.com/"},{"abv":12.783849620584714,"category":"North American Ale","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":98,"name":"Kuaipa","state":"Hawaii"},{"abv":11.651205471837907,"address":"1398 Haight Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":30,"name":"Stout of Circumstance","state":"California","website":"http://www.magnoliapub.com/"},{"abv":13.638489539620704,"category":"North American Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":3,"name":"Bourbon Street Stout","state":"California"},{"abv":12.527459140400769,"address":"Schtzenstrae 8-10","category":"German Ale","city":"Miesbach","coordinates":[47.794,11.8311],"country":"Germany","ibu":99,"name":"Weiße Export / Helle Weße","state":"Bayern"},{"abv":5.3000001907,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Hop fans rejoice! Sunshine Pils combines the crisp taste of European style pilsners with a kicked-up hop character to create a balanced, refreshing seasonal beer. Golden in color with a fluffy white head, Sunshine Pils is the perfect beer for Summer.","ibu":85,"name":"Sunshine Pils","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.5,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This light refreshing wheat beer is sure to delight. Our special yeast and blend of malted and unmalted wheat provide the haze in our unfiltered style ale. This beer is traditionally served with a lemon slice on the side. \n\nThere are many water gaps along the Appalachian Trail. These water gaps were established where large rivers cut through the Appalachian Mountain Range. The Susquehanna River creates one of the more visually appealing water gaps just north of Harrisburg in the area at the Dauphin Narrows.","ibu":84,"name":"Water Gap Wheat","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.6599998474,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Miller Genuine Draft debuted in 1985 with fresh, smooth flavor that's a result of being cold-filtered four times. As we capitalize on the growing trend towards \"mainstream sophistication,\" MGD is positioned as the only beer refined to ideal smoothness for those who pursue their passion with integrity and conviction. For our target consumer, MGD is a brand that celebrates their experiences ... past, present, and future. Because, ultimately, in beer as in life, \"Experience is Golden.\";\"0","ibu":59,"name":"Miller Genuine Draft","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Obsidian Stout gets is inspiration from one of the world's largest obsidian flows at Newberry Volcano--just a few miles south of the brewery. \"The Big Obsidian Flow,\" as they call it, covers more than 700 acres with shiny black obsidian.","ibu":45,"name":"Obsidian Stout","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":8.245766220746109,"address":"1/1 Vittal Mallya Road","category":"North American Lager","city":"Bangalore","coordinates":[12.9689,77.5946],"country":"India","ibu":44,"name":"Flying Horse Royal Lager Beer"},{"abv":6.393253432334807,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":69,"name":"California Blonde Ale","state":"California"},{"abv":8.230043770842716,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":112,"name":"Bohemian Pilsner","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":0.4457283414198032,"address":"624 Ludington Street","category":"German Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":98,"name":"Wolverine Wheat Beer","state":"Michigan"},{"abv":6.157846729094044,"address":"33 Main Street","category":"German Lager","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":9,"name":"Bad Boy Oktoberfest","state":"New Jersey"},{"abv":8.942464215578632,"address":"Steigerstrae 20","category":"North American Ale","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":62,"name":"Traditional","state":"Nordrhein-Westfalen"},{"abv":5.75,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Lest we forget Aunt Cal, an early resident of Lake Mills. Local history remembers her for blindly running into a hitching post and saying, \"Excuse me, Dr. Dodge!\" It was said that she was an old sweetheart of the famous American poet, Henry Wadsworth Longfellow. And she still had the love letters to prove it! Sadly, Aunt Cal never wed. We brewed our Bitter Woman IPA the way we imagine Aunt Cal may have been, very fruity and intensely bitter. So lift up a pint of Bitter Woman IPA and toast Aunt Cal and the bitter woman you know. Cheers!\n\n\nBitter Woman IPA is our Wisconsin variation of an India Pale Ale. This beer is intensely bitter with a mighty hop flavor and aroma.","ibu":23,"name":"Bitter Woman IPA","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":9.060204347500449,"category":"North American Ale","city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":19,"name":"Steel Head Stout","state":"Mississippi"},{"abv":2.3850528050912203,"address":"120 West Washington Street","category":"Belgian and French Ale","city":"Ann Arbor","coordinates":[42.2805,-83.749],"country":"United States","ibu":60,"name":"Iambic Lambic","state":"Michigan"},{"abv":3.364442208591637,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":47,"name":"Boxcar Brown Ale","state":"Wisconsin"},{"abv":2.5182610357414914,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Fall Fest is an Octoberfest lager available September-November. It is brewed with German Hersbrucker hops and pale, crystal and chocolate malts.\n\n\nThe result is a full-bodied, malty beer with a strong hop character and a beautiful amber color.\n\n\nCelebrate the season with Abita Fall Fest and your favorite German food","ibu":85,"name":"Fall Fest","state":"Louisiana","website":"http://www.abita.com/"},{"abv":10,"category":"Belgian and French Ale","city":"Breendonk","coordinates":[51.2206,4.3997],"country":"Belgium","description":"In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\n\n\n \n\n\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\n\n\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \n\n\nAbout Maredsous\n\n\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\n\n\"These beers have long been my favourites. Above all the 10° is an especially tasty beer.\";\"0","ibu":95,"name":"Maredsous 10 Tripple"},{"abv":6.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nThe long, cold nights of winter are a little brighter with Celebration® Ale. Wonderfully robust and rich, Celebration® Ale is dry-hopped for a lively, intense aroma. Brewed especially for the holidays, it is perfect for a festive gathering or for a quiet evening at home.","ibu":3,"name":"Celebration Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.9000000954,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nEach fall we celebrate our anniversary as one of America’s craft brewing pioneers with a special beer. This year, in celebration of our 27th year, we have made this beer available to the public for the first time, and aptly named it Anniversary Ale. \n\n\nAnniversary Ale is an American-style IPA featuring Cascade hops, the signature hop used in our Pale Ale. The beer has a pronounced pine and citrus hop aroma balanced by the sweetness of two-row pale and caramel malts. The result is an unusually well-balanced IPA that proves an IPA can be both assertive and elegant. Anniversary Ale is a medium-bodied, well-hopped ale that finishes with a slight malt sweetness.","ibu":57,"name":"Anniversary Ale 2007","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.5,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"In Britain, seasonal brews for winter are high in alcohol, robust, malty, and dark. The two main styles of these brews are Old Ales and Barleywines. As the name suggests, barleywines are similar to wines in alcohol and need aging but are derived from grain, not the grape. Rogues barleywine is described by beer expert Stuart Ramsey as: \"A masterful, intense creation from brewer John Maier....it has achieved a depth and complexity usually associated with well-ages strong ales. I hope the brewery bottles some before it disappears.\" We call it the cognac of beers. An unfiltered and unfined Barleywine. Intense, robust, malty and dark. The cognac of beers. A hugh beer in a little bottle, this is a beer designed for sipping.\n\n\nOld Crustacean is brewed with eight ingredients, Great Western Harrington, Klages, Hugh Baird Carastan and Munich Malts, Chinook and Centennial Hops, free-range coastal water and PacMan yeast. Old Crustacean is best when aged for one year. Old Crustacean is available in a new 750-ml ceramic swingtop bottle (replacing the much older 7-ounce and more recent 12 ounce XS-line package) and on draft.","ibu":65,"name":"Old Crustacean Barleywine 2004","state":"Oregon","website":"http://www.rogue.com"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Conspiracy Belgian-style Black Beer is the result of a collaboration between Midnight Sun brewers Gabe Fletcher and Ben Johnson and Pelican Pub (Pacific City, OR) brewer Ben Love. These brewers conspired during barley wine fest week to brew up a deviously delicious dark Belgian-style beer. \n\n\nConspiracy is opaque black with a creamy beige head. Black malt shrouds it in mystery; the Belgian yeast imparts intriguing flavor; the alcohol adds danger. If you're up for this mission, watch your back.\n\n\nConspiracy will be released in Anchorage and Portland in April 2007.","ibu":40,"name":"Conspiracy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"23 Hayward St.","category":"British Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"Deep, rich, and malty with hints of chocolate and coffee. It's what espresso would be if it had the gumption to be beer. We use three different hop additions, specially selected crystal malts, roasted barley, and oatmeal to give it a soft and silky mouth feel. Makes a great dessert. Or meal.","ibu":8,"name":"Ipswich Oatmeal Stout","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":5,"address":"2423 Amber St","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"From our city of neighborhoods we offer you this \"Biére de Mars,\" or ruby farmhouse ale. In true Philadelphia fashion, we meld American and European ingredients into a complex ale with flavors of toasted malt and rye. Rowhouse Red is the perfect accompaniment for some quality time in the backyard garden (or on the front stoop) of your urban farmhouse.","ibu":46,"name":"Rowhouse Red","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":4.8000001907000005,"address":"1940 Olney Avenue","category":"North American Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"An original American pale ale, our XPA highlights the subtle, sophisticated flavors and aromas of our Midwestern two-row malt and imported aromatic and Munich malts. Washington-grown Mt. Hood and Magnum hops create an extremely balanced beer with a beautiful straw color.","ibu":45,"name":"Extra Pale Ale","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Our flagship beer. A session India Pale Ale brewed with Warrior, Amarillo & 'Mystery Hop X.' A powerful East Coast I.P.A. with a lot of citrusy hop character. THE session beer for beer geeks like us!","ibu":46,"name":"60 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":2.456538635870892,"address":"6 N. Reamstown Road","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A pale golden German ale with subdued, clean-tasting malt flavor and aroma. This is a beer from the \"old\" brewing tradition before lagers become popular. Fermented at a lower temperature than normal ales, and followed by several weeks of cold lagering.","ibu":86,"name":"Union Barrel Works Kolsch","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":4,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Lawnmower is our intro for those who need a little help jumping feet first into the crazy world that is Dogfish Head beer.\n\n\nIt's a starter beer, but it's not dumbed down. Lawnmower is made with quality ingredients and is a great thirst quencher - perfect to enjoy after a day in the sun mowing the lawn (or anything else that gets you hot and bothered)!\n\n\nDraft-Only, Limited Distribution","ibu":49,"name":"Lawnmower","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.9000000954,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Next up, we present Scratch Beer #11-2008, a Bitter. Back in the day, we used to brew a little number called Tröegs ESB. Even though this beer was retired almost six years ago, we still get numerous Tröegs old-schoolers (Martha) begging for its return.\n\n\nWell hang onto your boot straps because Scratch #11 is about as close as we can get to the original ESB without firing up the old brew kettle. The Scratch #11 recipe originates from Chris’ stint at England’s University of Sunderland brewing program. After returning to Colorado the brothers drew on Chris’ experience and brewed pilot batches tweaking that recipe. The ESB production recipe has direct bloodlines to these pilot batches.\n\n\nThe Thames Valley ale yeast and the roasted barley create a biscuit flavor with nutty undertones. Combining these flavors with the earthiness of East Kent Golding hops creates one hell of a fine session beer. Take in the deep mahogany beauty of this beer and breathe in the full hoppy nose. It’s not the ESB, but it’s damn special.","ibu":42,"name":"Scratch #11 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.3999996185,"address":"Rue Maurice Grevisse 36","category":"Belgian and French Ale","city":"Habay-Rulles","coordinates":[49.7185,5.5571],"country":"Belgium","ibu":14,"name":"Triple","state":"Luxembourg"},{"abv":6.1999998093,"address":"737 W. 5th Ave., Suite 110","category":"German Lager","city":"Anchorage","coordinates":[61.2179,-149.896],"country":"United States","description":"This dark lager combines the characteristics of three winter beer styles. All three of these styles traditionally come from the colder harsher areas of Europe. The styles are (1) Black Beer (aka schwartzbier) originating from the former East Germany); (2) Rye Beer which at one time was only made in hardier areas of Eastern and Baltic Europe; and (3) Bock Beer which is widely known as a higher alcohol lager of Northern Germany. Our Black Rye Bock has a distinctive bitter chocolate palate and black color reminiscent of a black beer. The spiciness from the rye malt shines through in the flavor. The high alcohol balanced with malty sweetness rounds out this cold season bock. Smooth drinking with a punch makes this lager a perfect quaffer for our Arctic winter. 6.2% alcohol by volume.","ibu":80,"name":"Black Rye Bock","state":"Alaska","website":"http://www.glacierbrewhouse.com/"},{"abv":7.8000001907000005,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #21-2009 is an exercise in deconstruction and minimalism. This Belgian Ale has distinct roots in The Mad Elf minus some key components.\n\n \n\nThe cherries? Gone.\n\nThe honey? Gone.\n\nThe chocolate malt? Gone.\n\n\nWait, this sounds familiar. It almost sounds like a naked version of The Mad Elf.\n\n \n\nComing in just under 8% ABV, this unfiltered golden beauty shows off the pronounced yeast flavor that made The Mad Elf famous as well as a touch of alcohol and some mellow malt flavors.","ibu":75,"name":"Scratch #21 2009 - Artisan Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.5999999046,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"O.G.: 12.7 Plato\n\nA.B.V.: 5.6%\n\nIBU: 43\n\nMalt: Pils\n\nYeast: Augustiner\n\nHops: Select, Tradition, Spalt, Glacier","ibu":22,"name":"Scratch #17 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.0999999046,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Creamy and Dark with a Dry Roasted Finish","ibu":54,"name":"Stone Mason Stout","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":4.3000001907,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":16,"name":"Lighthouse Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":0.6891856205992353,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":75,"name":"Trademark English Pale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":13.312824889887775,"address":"15133 Highway 10","category":"North American Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":76,"name":"Clover Pale Ale","state":"British Columbia"},{"abv":6.5,"address":"Mendoza","category":"North American Ale","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":21,"name":"Cerveza Negra"},{"abv":5.5,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":25,"name":"Epiphany Ale","state":"California"},{"abv":9.1999998093,"address":"1809 Larkspur Landing Circle","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":23,"name":"Triple Dipsea Belgian","state":"California"},{"abv":6.5999999046,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":93,"name":"Petrus Blond Ale","state":"West-Vlaanderen"},{"abv":11.842447331243974,"address":"2980 Cahill Main","category":"North American Lager","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":61,"name":"Landmark Light","state":"Wisconsin"},{"abv":10.668269770881384,"address":"Ratinger Strasse 28","category":"North American Ale","city":"Düsseldorf","country":"Germany","ibu":73,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":10.217138899415303,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":21,"name":"Amber Lager","state":"Wisconsin"},{"abv":3.5,"address":"Rijksweg 16","city":"Gulpen","coordinates":[50.8109,5.9213000000000005],"country":"Netherlands","ibu":15,"name":"Mestreechs Aajt"},{"abv":14.588093100648459,"address":"114 North Main Street","category":"North American Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":22,"name":"Alt","state":"Michigan"},{"abv":12,"address":"9675 Scranton Road","category":"North American Ale","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":50,"name":"Downtown After Dark","state":"California"},{"abv":9.488575682458098,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":111,"name":"Pale Ale","state":"California"},{"abv":6.574917292732304,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","ibu":68,"name":"Four Brothers Pale Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.6999998093,"address":"925 South Third Street","category":"North American Ale","city":"La Crosse","country":"United States","ibu":25,"name":"Amber Ale","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":10,"address":"529 Grant St. Suite B","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"This beer is made with one grain and 4 Belgian yeasts, a deceptive golden color, and a malty palate lend complexity to this Belgian Trippel Ale.","ibu":80,"name":"Cerberus 10 Dog Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":14.248401925653672,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Belgian Wits originated in Belgium, in the area of Brabant just east of Brussels. This are was a part of the Netherlands in the early 1800's and was the wheat growing region. In this era, the Dutch basically controlled the spice trade, thus, coriander as well as Curacao orange peel made its way into the beer. Spices were used well before the widespread use of hops in beer. At one point there were more than thirty breweries producing a Wit, but overtime the style died off and in 1954 the last of the breweries ceased operations. One of the most famous brands of Belgian Wits is Hoegaarden (pronounced \"Who Garden\") produced by Pierre Celis back in 1966. This revived the style and by the 1980's it was popular again!\n\n\nBelgian Wits are similar to a Hefeweizen with respect to the cloudiness of the beer and some phenolic (clove) and tart flavors. Wits should have white, rocky head when poured and should be almost white in appearance, hence the name. \n\n\nYou will smell oranges and coriander which is different than a Hefeweizen that smells of banana and clove. Our version of a Belgian Wit is called \"Hoof - Hearted Wit,\" and it is brewed to style with dried bitter and sweet orange peel and coriander seeds.","ibu":87,"name":"Belgian Wit","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":14.334900462628864,"address":"Crawshay Street","city":"Cardiff","coordinates":[51.4736,-3.179],"country":"United Kingdom","ibu":48,"name":"Traditional Welsh Ale","state":"Wales"},{"abv":7.25063714820139,"category":"North American Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":75,"name":"Rye I Oughta...!","state":"Wisconsin"},{"abv":5.5,"category":"North American Ale","city":"Bromma","coordinates":[60.4877,9.1885],"country":"Sweden","ibu":102,"name":"D. Carnegie and Company Porter"},{"abv":5.1999998093,"address":"1208 14th Avenue","category":"German Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":116,"name":"Berghoff Oktoberfest Beer","state":"Wisconsin"},{"abv":9.940754933034164,"category":"Irish Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":33,"name":"Pardon Me Porter","state":"Iowa"},{"abv":4.046203443797806,"address":"1705 Mariposa Street","category":"North American Lager","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":9,"name":"Wheat","state":"California"},{"abv":0.5920654882227427,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","ibu":35,"name":"Canadian Ale","state":"Ontario"},{"abv":9.38990886067083,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"The key ingredient to a good summer is a GREAT brew! Born to play, Pete's Wicked Rally Cap Ale is crafted with a special blend of pale and wheat malts, Mt. Hood hops and a smack of natural lemon. Get in the game... Get Wicked!","ibu":4,"name":"Pete's Rally Cap Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":13.415572802505789,"address":"5500 Greenville Avenue #1300","category":"North American Ale","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":38,"name":"Bulldog Brown","state":"Texas"},{"abv":9.111511349280311,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":3,"name":"Alt Bier","state":"California"},{"abv":1.2452451607798498,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":14,"name":"Rodeo Red","state":"Texas"},{"abv":7.049835829841595,"category":"Irish Ale","city":"Encinitas","coordinates":[33.037,-117.292],"country":"United States","ibu":74,"name":"Dark","state":"California"},{"abv":14.044363284388584,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":75,"name":"Firehouse Red","state":"South Dakota"},{"abv":7.3000001907,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Our homage to the beers that have quenched the thirst of Belgian farm workers for centuries. Brewed with barley, wheat and rice and fermented at high temperatures with a special blend of four different yeast strains, Saison is fruity and slightly tart, with a dry finish that makes it that rarest of treats–a beer as refreshing as it is complex.","ibu":77,"name":"Great Divide Saison","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4.9000000954,"category":"German Lager","city":"Jever, Germany","coordinates":[53.5757,7.9003],"country":"Germany","description":"A Norther German (Friesian) Pilsener that is cattegoristic of the style. It is a little more hoppy than Czech pilseners giving it a more herb (bitter?) flavor.","ibu":107,"name":"Jever Pilsener","website":"http://www.jever.de/"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":45,"name":"Blond"},{"abv":5.79485355192327,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":118,"name":"Festive Ale 2006","state":"Nebraska"},{"abv":6.5,"address":"2 Penhall Road","category":"Irish Ale","city":"Greenwich","coordinates":[51.4899,0.038],"country":"United Kingdom","ibu":87,"name":"London Porter","state":"London","website":"http://www.meantimebrewing.com/"},{"abv":8.5,"address":"Rue du Village 32","category":"North American Ale","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","description":"Description : Dark Ale, strong, spicy, lightly hoppy, with evoluting taste. Natural Beer, bottle refermented, unfiltered, not pasteurised and without any additives\n\n\nAlcohol : 8,5% alc./vol.\n\n\nOriginal gravity : 16 °Plato\n\n\nStorage : Store the bottles vertically in a cold place, sheltered from light. The yeast deposit can either be drunk or left according to taste\n\n\nServe at : 8 to 12°C (botlle)","ibu":59,"name":"McChouffe","state":"Luxembourg"},{"abv":5.8000001907000005,"address":"990 Antler Court","category":"North American Ale","city":"River Falls","coordinates":[44.8902,-92.6378],"country":"United States","ibu":65,"name":"The Unforgiven Amber Ale","state":"Wisconsin"},{"abv":7,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":99,"name":"Zoetzuur Flemish Ale","state":"Oost-Vlaanderen"},{"abv":2.6281420758102403,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":50,"name":"Collapsar Oatmeal Stout","state":"Nebraska"},{"abv":11.199322077906118,"address":"138 Nassau Street","city":"Princeton","coordinates":[40.3507,-74.6583],"country":"United States","ibu":34,"name":"Helles Lager","state":"New Jersey"},{"abv":0.8216453844634508,"category":"North American Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":100,"name":"Indiana Pale Ale","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.744879057371607,"address":"205 North Broadway","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":34,"name":"Hemp Ale","state":"Illinois"},{"abv":0.7141348190202623,"category":"North American Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":87,"name":"Hopfenkopf","state":"Wisconsin"},{"abv":7.9000000954,"category":"German Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":6,"name":"Blackburn Doppelbock","state":"Illinois"},{"abv":5.6999998093,"address":"Mikolowska 5","city":"Tychy","country":"Poland","ibu":61,"name":"Tyskie Gronie","website":"http://www.tyskie.pl/"},{"abv":5.8000001907000005,"address":"12 Old Charlotte Highway","category":"Irish Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A unique Highland creation, this robust beer is black in color, very malty with hints of chocolate-roasted flavor and a well balanced hop character.\n\n\nIBU: 32\n\nAlcohol content: 5.8% by volume\n\nHops: Chinook, Willamette and Cascade\n\n\nCalories per 12 oz. 191.16\n\nCarbs per 12 oz. 19.42","ibu":10,"name":"Oatmeal Porter","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":11.238841518450124,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":7,"name":"Black Jack Stout","state":"Nebraska"},{"abv":12.284384164040159,"address":"205 North Broadway","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":106,"name":"Payton Pilsner","state":"Illinois"},{"abv":4.5,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"House Ale, our 4.5% session ale, was first brewed in 2006. Our goal was to brew a beer that was a little bit lower in alcohol, but did not lack for body and flavor. We're sure you'll agree, that's just what we achieved with this tasty brew. Brewed with Pale, Caramunich, and Carapils malt for flavor and body, then hopped exclusively with expensive Tettnang hops, a very delicate, delicious hops that perfectly fits this beer with just the right snap of flavor. Available only in Pennsylvania, in our Variety Pack Case.","ibu":53,"name":"House Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":6.642106781383613,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"Deserving of its name, this red/amber colored ale is sure to knock you off your feet. Crystal and caramel malts contribute to a balance of sweetness and smoothness.","ibu":40,"name":"Red Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":4.8000001907000005,"address":"2105 N. Atherton St.","category":"North American Lager","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"This light refreshing American lager has a malty smooth character and low hop bitterness.","ibu":103,"name":"Spruce Creek Lager","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.1999998093,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Pure and crisp this is a beer with nothing to hide. Wisconsin two-row barley malt ensures a mellow and smooth body. We imported Noble Hop varieties from Germany and the Czech Republic to ensure a fine mature aroma with no coarse bitterness. Expect this beer to pour a delicate golden hue that sparkles in the summer sun. This lager is brewed using all natural ingredients with no artificial additives of any kind. Kick back, relax and enjoy the simple unadorned flavor. This is beer at its most basic.","ibu":73,"name":"Totally Naked","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":10.97748832578051,"address":"17700 Boonville Rd","category":"North American Lager","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":35,"name":"High Rollers Wheat Beer","state":"California","website":"http://avbc.com/"},{"abv":4.8000001907000005,"address":"1/1 Vittal Mallya Road","category":"North American Lager","city":"Bangalore","coordinates":[12.9689,77.5946],"country":"India","ibu":5,"name":"Kingfisher Premium"},{"abv":5,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"Blue Point Brewing's Pale Ale has a light golden color but explodes with a rich full-flavor. This refreshing ale is top-fermented and hopped at four different stages of the brewing process. English pale malt lends complexity to this brew. Small amounts of Wheat and Carapils round out the malt bill. Brewed to satisfy the hop lover, this pale ale has an immediate floral-citrus flavor that pervades the overall character of this hoppy, quenching microbrew.","ibu":36,"name":"Fresh Hops Pale Ale","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":7,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"The Sculpin IPA is a testament to our humble beginnings as Home Brew Mart. Founded in 1992, the Mart continues to be a catalyst for the San Diego brewing scene, setting the trend for handcrafted ales. Inspired by our customers, employees and brewers, the Sculpin IPA is bright with aromas of apricot, peach, mango and lemon. Its lighter body also brings out the crispness of the hops. This delicious Ballast Point Ale took a Bronze Medal at the 2007 Great American Beer Festival in the Pro Am category. The Sculpin fish has poisonous spikes on its fins that can give a strong sting. Ironically, the meat from a Sculpin is considered some of the most tasty. Something that has a sting but tastes great, sounds like a Ballast Point India Pale Ale.","ibu":98,"name":"Sculpin India Pale Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6.165457708601197,"address":"3201 Walnut Street Ste A","category":"Irish Ale","city":"Boulder","coordinates":[40.0201,-105.251],"country":"United States","description":"A Baltic Porter made to celebrate Boulder's 150th anniversary. Available for the entirety of 2009.","ibu":46,"name":"Pearl Street Porter","state":"Colorado","website":"http://www.twistedpinebrewing.com/"},{"abv":5,"category":"German Lager","coordinates":[48.9739,14.475],"country":"Czech Republic","description":"Our Czech Premium Lager is beer for light beer lovers. The most gentle heads of the high quality Žatec hop, virgin clear natural water and granules of selected species of Moravian barley make it the beverage of real experts. \n\n\nThe 700-year long tradition in production of ÄŒeské BudÄ›jovice beer and the unique, 90-day period of maturity increase its unique character. You can taste Budweiser Budvar Czech Premium Lager with all your senses. First of all you will delight your eyes with its beautiful colour and rich dense foam, then you will feel the fine aroma of the hops, in your palm you will stroke the dewy glass and, in the end, you will taste the fine to medium strong bitterness. You will remember well, our perfect lager.","ibu":30,"name":"Budweiser Budvar (Czechvar)","state":"Ceske Budejovice","website":"http://www.budvar.cz/"},{"abv":5,"address":"190 5th Street","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Brewed in the style of Northern England, this brown ale is dark and rich, with just a hint of chocolate malt and East Kent Golding hops in the finish.","ibu":102,"name":"Yorkshire Brown","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.1999998093,"address":"8 Fourth Street","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"In Cologne, Germany, many a brewery produces a light-bodied ale with a delicate fruitiness and rounded maltiness, attributable to the unique yeast strain commonly used. Our Kölsch is unfiltered and more generously hopped than its German cousin.","ibu":110,"name":"Double Mountain Kolsch","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":4.5999999046,"category":"North American Lager","city":"Barcelona","coordinates":[41.3879,2.1699],"country":"Spain","description":"Estrella means star in Spanish and as its name suggests the brand has become a star to the people of Barcelona. It has evolved with the city reflecting its character - sophisticated and passionate yet at the same time relaxed and welcoming.","ibu":35,"name":"Estrella Damm","website":"http://www.estrelladamm.es/"},{"abv":5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Combines the rich roasted flavor of our traditional stout with a deep, robust mocha. Look for a full-bodied taste with a crescendo of complex flavor notes.","ibu":103,"name":"Saranac Mocha Stout","state":"New York","website":"http://www.saranac.com"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","ibu":6,"name":"Woodchuck Dark and Dry Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":5.3000001907,"address":"16 Tobey Road","category":"Irish Ale","city":"Bloomfield","coordinates":[41.8087,-72.7108],"country":"United States","description":"Thomas Hooker's traditional Irish-Style Red Ale gets its warm, ruby color from an interesting blend of pale, caramel and roasted malts which promote a sweetness that's balanced with crisp, authentic, English-style hops. A very unique and drinkable red ale that's also favored by amber lovers.\n\nHooker Irish Red is drinks well year-round, not just on St. Paddy's day.","ibu":21,"name":"Thomas Hooker Irish Red Ale","state":"Connecticut","website":"http://www.hookerbeer.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"GUINNESS® Extra Stout is steeped in heritage - a whole costume drama in a bottle. It","ibu":114,"name":"Guinness Extra Stout","website":"http://www.guinness.com"},{"abv":7.1999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":83,"name":"Arrogant Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":9.043757955898618,"address":"6901 Konica Drive","category":"North American Lager","city":"Whitsett","coordinates":[36.0613,-79.5695],"country":"United States","description":"Red Oak Amber is a Munich Urtyp (Old Style) Lager. We begin the brewing process with custom kilned imported Munich Malt. Red Oak is then hopped with Spalt Noble Hops imported from Bavaria, the oldest hop growing region in the world. Before fermentation we add a yeast strain from Weihenstephen, the oldest brewery in the world, founded before 1040 AD. Weeks of aging gives Red Oak the smooth taste it is known for.","ibu":21,"name":"Red Oak Amber Lager","state":"North Carolina","website":"http://www.redoakbrewery.com"},{"abv":12.350482274356322,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Morimoto Black Obi Soba Ale is part of the Rogue Ales Signature Series with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nBlack Obi Soba Ale is dedicated to Phred Kaufmann, Rogues Distributor in Japan for the past decade--an International Rogue who runs Beer Inn Mugishutei in Sapporo (http://www.ezo-beer.com/index-e.html). Black Obi Soba is brewed with roasted buckwheat and malts (2-row pale, Munich, C-15, c-60 and Weyermann - note, this beer contains Gluten) providing a rich nut-laced flavor, while the 3 hop varieties (Horizon. Sterling and Cascade) blend to provide a refreshing zest. Morimoto Black Obi Soba Ale is packaged in a 22oz screened bottle and is available in select markets.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":1,"name":"Morimoto Black Obi Soba Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"569 Main St","category":"North American Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"This light copper, dry finishing American Pale Ale is an excellent addition to the Brew Works fleet of pale ales. A hefty sling load weight of Chinook hops gives this beer its distinctive bite. Chinook and Amarillo hops contribute to its almost citrus aroma. A hopheads delight!","ibu":7,"name":"CH-47 Pale Ale","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":13,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":76,"name":"Scaldis Prestige","state":"Hainaut"},{"abv":5.1999998093,"address":"1514 NW Leary Way","category":"North American Lager","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":54,"name":"Clipper Gold Hefeweizen","state":"Washington"},{"abv":4.633832038145624,"address":"Augsburgerstrae 41","city":"Frstenfeldbruck","coordinates":[48.1826,11.2522],"country":"Germany","ibu":63,"name":"König Ludwig Weissbier Dunkel","state":"Bayern"},{"abv":4.5,"address":"West Hewish","category":"Irish Ale","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":92,"name":"Old Slug Porter","state":"Somerset"},{"abv":7,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":51,"name":"Blonde Bock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":10.085537379881085,"address":"65 North San Pedro","category":"German Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":66,"name":"Maibock","state":"California"},{"abv":8.3000001907,"address":"ul. Browarna 14","category":"Irish Ale","city":"Brzesko","coordinates":[49.9622,20.6003],"country":"Poland","ibu":114,"name":"Okocim Porter","website":"http://www.okocim.pl/"},{"abv":6,"address":"Rue de Noupr s/n","city":"Cerfontaine-Silenrieux","coordinates":[50.2248,4.4102],"country":"Belgium","ibu":20,"name":"Sara Buckwheat Ale","state":"Namur"},{"abv":9.089224921534798,"address":"Reiningshausstrae 1-7","city":"Graz","coordinates":[47.0679,15.4417],"country":"Austria","ibu":34,"name":"Gösser"},{"abv":1.454203579991118,"address":"Avenida Independencia No.526","category":"North American Lager","city":"San Salvador","coordinates":[13.6998,-89.1832],"country":"El Salvador","ibu":10,"name":"Suprema"},{"abv":9,"address":"Rue Guinaumont 75","category":"North American Ale","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":71,"name":"Hercule Stout","state":"Hainaut"},{"abv":9.886184153093629,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":99,"name":"Old Man Winter Warmer 2001","state":"Minnesota"},{"abv":14.693053383839652,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":37,"name":"Honey Blonde Lager","state":"New York"},{"abv":7.063049008613216,"address":"412 North Milwaukee Avenue","category":"British Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":94,"name":"Wee Heavy","state":"Illinois"},{"abv":9.34602049806326,"city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":73,"name":"Holiday Ale","state":"Wisconsin"},{"abv":6.504937253255739,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":47,"name":"Blonde","state":"South Carolina"},{"abv":14.14577806482945,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":107,"name":"Fenway American Pale Ale","state":"Massachusetts"},{"abv":2.8539124352592005,"address":"420 Acorn Lane","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":31,"name":"Dark Lager","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":6.391485926528963,"address":"355 East Kalamazoo Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2949,-85.5788],"country":"United States","ibu":76,"name":"Two-Hearted Ale","state":"Michigan"},{"abv":0.8376933632938077,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":55,"name":"Old Scratch Barleywine 1996","state":"Wisconsin"},{"abv":13.934798629248883,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":20,"name":"Monkfish Tripel","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.9000000954,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":98,"name":"Urthel Novicius Vertus","state":"West-Vlaanderen"},{"abv":1.0590288285647087,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":12,"name":"Augsburger Dark","state":"Wisconsin"},{"abv":4.5,"address":"1634 18th Street","category":"British Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Our British-style session beer is cask conditioned and dry hopped. Tea colored with a toasted malt flavor, it's an easy drinker with a light mouthfeel and elgeant hop nose.","ibu":58,"name":"St. Charles ESB","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":7.566024910326284,"address":"13011 Newport Avenue #100","category":"North American Ale","city":"Tustin","coordinates":[33.7496,-117.812],"country":"United States","ibu":23,"name":"Old Town IPA","state":"California"},{"abv":12.333654662499612,"address":"4543 North Rancho Road","category":"North American Ale","city":"Las Vegas","coordinates":[36.2426,-115.236],"country":"United States","ibu":97,"name":"Black Lab Stout","state":"Nevada"},{"abv":4.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":12,"name":"Ruth","state":"Oregon"},{"abv":3.2822029532368413,"category":"Other Style","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":95,"name":"Lemon Wheat","state":"Iowa"},{"abv":8.93108850967577,"category":"German Lager","country":"India","ibu":9,"name":"Abhi beer"},{"abv":12.532757605523852,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","description":"\"This is our unique version of an ancient style. A style as old as the ocean trade routes of the last centuries Great Ships. Not as old as the equator they had to cross twice enroute, nor as old as the 10,000 or so miles of Di-Hydrogen Oxide and Sodium upon which they sailed, but older than the Circulithium-4 Lentloid that binds the Lupulin Quartnate onto your taste buds. Weird. Think about it. Now stop. OK, go again, now stop. Think again, and stop. But we digress. Made with 43 different hops and 65 various malts, this redolent ale will likely float your boat, whatever planet you're on. \";\"0","ibu":30,"name":"IPA","state":"California","website":"http://www.lagunitas.com/"},{"abv":14.04381571393629,"address":"105 South Second Street","category":"German Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":93,"name":"Trailside Wheat","state":"Wisconsin"},{"abv":12.947147913442004,"address":"467 North High Street","city":"Columbus","coordinates":[39.9719,-83.0027],"country":"United States","ibu":99,"name":"Pilsner","state":"Ohio"},{"abv":8.234276264531257,"address":"7791 Egg Harbor Road","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":43,"name":"Bayside Blonde Ale","state":"Wisconsin"},{"abv":4.406186172641547,"category":"North American Ale","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":15,"name":"Amber Ale","state":"Wisconsin"},{"abv":6.76214226487735,"address":"1429 West Service Drive","category":"German Ale","city":"Winona","coordinates":[44.0486,-91.6774],"country":"United States","ibu":24,"name":"Wingdam Wheat","state":"Minnesota"},{"abv":5,"address":"PO Box 42008","category":"North American Lager","city":"Winnipeg","coordinates":[49.7652,-97.1539],"country":"Canada","ibu":47,"name":"Catfish Cream Ale","state":"Manitoba"},{"abv":3.4360943774076436,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":14,"name":"Buckeye Oatmeal Stout","state":"Massachusetts"},{"abv":5.7884762608980775,"address":"5500 Greenville Avenue #1300","category":"North American Lager","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":99,"name":"Osage Golden Wheat Ale","state":"Texas"},{"abv":4.930260744267177,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":68,"name":"Wheaten Ale","state":"California"},{"abv":14.707004456840613,"address":"6863 Lundy's Lane","category":"Other Style","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":80,"name":"Apple Ale","state":"Ontario"},{"abv":9.548724420256805,"address":"200 Village Green","category":"North American Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":107,"name":"Locomotive Stout","state":"Illinois"},{"abv":1.2366850533053264,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","ibu":104,"name":"Ten Penny American Bitter","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":6.0999999046,"address":"209 Technology Park Lane","category":"Irish Ale","city":"Fuquay Varina","coordinates":[35.6197,-78.8085],"country":"United States","description":"A somewhat classic Irish Red Ale. This ale is feisty and a bit hoppy. There is a malty sweetness and a somewhat dry finish. Traditional East Kent Goldings but with a nice touch of Cascade and dash of roasted barley give this ale a great taste. ALWAYS AVAILABLE...or at least we try.","ibu":105,"name":"HotRod Red","state":"North Carolina","website":"http://www.aviatorbrew.com/"},{"abv":5.4000000954,"address":"3300 Old Seward Highway","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"Dark Knight (Baltic Porter) A Baltic porter is kind of a cross between an English porter and an Imperial Stout. Ours features a rich maltiness with hints of caramel, toffee and chocolate in both the flavor and aroma. Restrained hopping contributes a smooth full finish.","ibu":47,"name":"Dark Knight","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":7.5,"address":"302 N. Plum St.","category":"Irish Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A traditional lager-style beer, with its dark color and medium body, has a defined hop flavor balanced by the smoothness of extra special roasted malt. This healthy dose of over six malt flavors makes this beer perfect for the transition from winter into spring.","ibu":92,"name":"Baltic Porter","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":12,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":106,"name":"Jahva Imperial Coffee Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.5,"address":"196 Alps Road","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Help us celebrate American Independence and American Beer Month in July with the release of the Terrapin All-American Imperial Pilsner.\n\n\nThis beer was brewed using only American malts, American hops, and American yeast. Who says you have to import ingredients from Germany to make a true Pilsner?\n\n\nOf course, this Pilsner is made “Terrapin Style”. Hence the 75 B.U.’s, the 7.5% alcohol and the term “IMPERIAL Pilsner”.","ibu":10,"name":"Terrapin All-American Imperial Pilsner","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":4,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers.","ibu":117,"name":"Hamtramck","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":6.8000001907000005,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie, Pennsylvania was an important railroad hub in the mid–nineteenth century, the city being the site where three sets of track gauges met. Railbender Ale, Erie Brewing Co.’s flagship ale, named after the laborers who laid the railroad tracks is brewed with pride, strength and purity symbolic of Erie’s historic railroad’s and railroad workers. Railbender, a strong Scottish style ale smooth malt flavor and astonishing drinkability will have you \"Hopping on the train and riding off the rails.\" All Aboard!","ibu":49,"name":"Railbender Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":9,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Imperial Stout is part of our \"High Peaks Series,\" a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial Stout is brewed with 11 malts to balance a deliciouse chocolate and coffee roasted flavor with a spicy herbal character of the generous kettle and dry hops.","ibu":43,"name":"Saranac Imperial Stout","state":"New York","website":"http://www.saranac.com"},{"abv":1.6597493525332951,"address":"141 South Main Street","category":"Other Style","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This style of beer is light to medium in body (mouth-feel) with very little hop character. The brewer says “a good beer to try if you’re a Northern Lite drinker”","ibu":43,"name":"Creamation Ale","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":27,"name":"Michelob Black & Tan","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.0999999046,"address":"Castle Brewery","category":"North American Ale","city":"Cockermouth","coordinates":[54.6649,-3.3634],"country":"United Kingdom","description":"A dark beer with a reddish tinge derived from the use of coloured malts, full of complex flavours, which create an intriguing beer of great character.\n\n\nIn Northern English dialect sneck means door latch and a sneck lifter was a man’s last sixpence which enabled him to lift the latch of a pub door and buy himself a pint, hoping to meet friends there who might treat him to one or two more.","ibu":111,"name":"Sneck Lifter","state":"Cumbria","website":"http://www.jenningsbrewery.co.uk/"},{"abv":5.5999999046,"address":"231 W. Fourth Street","category":"North American Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big addition of caramel and Munich malts give this beer its rich mahogany color along with its juicy palate. Its medium body and wonderful balance of hops from the Pacific Northwest make this a luscious and aromatic brew.","ibu":19,"name":"Inspiration Red","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":7.1999998093,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep golden color. Citrus and piney hop aromas. Assertive malt backbone supporting the overwhelming bitterness. Dry hopped in the fermenter with four types of hops giving an explosive hop aroma. Many refer to this IPA as Nectar of the Gods. Judge for yourself. Now Available in Cans!","ibu":89,"name":"21A IPA","state":"California","website":"http://www.21st-amendment.com/"},{"abv":1.7192869363586205,"address":"Itterplein 19","city":"Opitter","coordinates":[51.1168,5.6464],"country":"Belgium","ibu":39,"name":"Limburgse Witte","state":"Limburg"},{"abv":4.531621422317654,"address":"3945 Second Street South","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":23,"name":"Pride of Pilsen","state":"Minnesota"},{"abv":1.9330127240903783,"address":"61 US Highway 1 South","category":"North American Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":58,"name":"Station House Red Ale","state":"New Jersey"},{"abv":11.176830718490152,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":42,"name":"Cream City Pale Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5.344509210180956,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":95,"name":"Octoberfest (discontinued)","state":"Nebraska"},{"abv":7,"address":"1280 North McDowell Boulevard","category":"Other Style","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":111,"name":"Sirius","state":"California","website":"http://www.lagunitas.com/"},{"abv":6.1999998093,"address":"1430 Washington Avenue South","category":"British Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"This is our darkest and most heavy regular offering. It is virtually black in color and features rich roasted malt flavor with a delicate caramel and vanilla finish. It is carbonated and served with the use of nitrogen gas, giving the Black Water a beautiful cascading pour and thick, creamy foam atop your glass. Made with only the freshest American malts and English hops.","ibu":89,"name":"Black H2O Oatmeal Stout","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":6.5999999046,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":45,"name":"Big Boat Oatmeal Stout","state":"Minnesota"},{"abv":9.576309817273044,"address":"5775 Lower Mountain Road","category":"North American Ale","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":44,"name":"Irish Stout","state":"Pennsylvania"},{"abv":7.5,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":67,"name":"Rose","state":"Oregon"},{"abv":5.4000000954,"address":"1221 East Pike Street","category":"Irish Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":93,"name":"Perseus Porter","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7.468539376820048,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":33,"name":"Dunkles Lager","state":"Bayern"},{"abv":11.524379679654054,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":63,"name":"Stüvenbräu Maibock","state":"Nebraska"},{"abv":6.3329743135240495,"address":"Brauhausgasse 1","city":"Leoben-Gss","coordinates":[47.3625,15.0947],"country":"Austria","ibu":33,"name":"Dark Beer / Stiftsbräu"},{"abv":14.645101159546705,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":87,"name":"Smoked Hefe","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":6.5,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"The Rocky Mountain Goat is no ordinary goat. Just like Odell Red is no ordinary red. \n\n\nWe took the American-style red to a whole new level by adding a variety of aggressive American hops—giving this ale a distinctive fresh hop aroma and flavor. \n\n\nWe think you'll agree this red has some serious kick.","ibu":103,"name":"Odell Red Ale","state":"Colorado"},{"abv":5.0999999046,"address":"4 Moorhouse Street","category":"North American Ale","city":"Burnley","coordinates":[53.7864,-2.2694],"country":"United Kingdom","ibu":113,"name":"Pendle Witches Brew","state":"Lancashire"},{"abv":7.232394017619741,"address":"120 East Third Street","category":"North American Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":49,"name":"Modern Monks Belgian Blonde","state":"Nebraska"},{"abv":6.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":2,"name":"Wiesen Edel Weisse","website":"http://www.schneider-weisse.de"},{"abv":4.8000001907000005,"address":"Braidleigh Lodge 22 Shore Road","category":"Other Style","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Our smooth yet powerful wheat beer is unusually refreshing on the pallet. Golden in colour, St. Patrick's Gold is brewed with barley and wheat malt. Citrus peel and coriander are added to the Goldings and Saaz hops for a symphony of authentic flavour.","ibu":45,"name":"St. Patrick's Gold","state":"County Down","website":"http://slbc.ie/"},{"abv":5.1999998093,"address":"407 Radam, F200","category":"Belgian and French Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Made in the style of the Belgian wheat beers that are so refreshing, (512) Wit is a hazy ale spiced with coriander and domestic grapefruit peel. 50% US Organic 2-row malted barley and 50% US unmalted wheat and oats make this a light, crisp ale well suited for any occasion.","ibu":43,"name":"(512) Wit","state":"Texas","website":"http://512brewing.com/"},{"abv":5.3000001907,"address":"2944 SE Powell Blvd","category":"North American Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"This beer bridges east and west with a lane dedicated to riders who aren't afraid to get dirty. Three kinds of organic caramel malts and a 24 pound whirlpool hop bomb keep things interesting while the wheels go round and round. Cheers to narrow knobbies, kazoos, and more cowbell!","ibu":70,"name":"Crosstown Pale Ale","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":5.6999998093,"address":"1214 East Cary St","category":"Belgian and French Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"We brewed this pleasantly aromatic wheat beer with the addition of bitter orange peel, coriander and a Belgian Abbey ale yeast strain. This beer is unfiltered and its flavor is tart but sweet and perfumey.","ibu":44,"name":"Santa's Little Helper Witbier","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.5,"address":"Lindenlaan 25","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","description":"A sweet and sour beer that gets its flavor from mixing old and new ales. An unusual, yet perfect, combination.","ibu":77,"name":"Monk's Cafe","state":"Oost-Vlaanderen"},{"abv":14.797674883353114,"address":"206 W. Pratt St.","category":"Irish Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":90,"name":"Oliver Pagan Porter","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":5.5999999046,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"After sampling a wide array of great beers, the duo hit upon an idea. \"I've got it!\" exclaimed Matt, \"we'll use vast amounts of whole hops, the finest malt, and put a little love in each batch.\" \"Eureka!\" shouted Phin. And thus became a beer so fresh and tasty they had to put their names on it.","ibu":107,"name":"Phin & Matt's Extroidinary Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":7.425753653037499,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":115,"name":"Irish Red","state":"Wisconsin"},{"abv":6,"address":"777 East Olive Avenue","category":"North American Ale","city":"Fresno","coordinates":[36.7582,-119.802],"country":"United States","ibu":0,"name":"Thunderhead Amber Ale","state":"California","website":"http://www.sequoiabrewing.com/"},{"abv":8,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":73,"name":"Abbey 8","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":5.462168402556225,"address":"238 Lake Shore Drive","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","ibu":26,"name":"Firestarter Smoked Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":9.775182297036748,"address":"10920 North Port Washington Road","city":"Mequon","coordinates":[43.2167,-87.924],"country":"United States","ibu":98,"name":"Beer","state":"Wisconsin"},{"abv":4.678032854472937,"address":"6300 North Wickham Road #137","category":"North American Ale","city":"Melbourne","coordinates":[28.2126,-80.6734],"country":"United States","ibu":59,"name":"Anniversary Ale","state":"Florida"},{"abv":14.365043065199293,"city":"Denmark","coordinates":[44.3478,-87.8273],"country":"United States","ibu":106,"name":"Continental Pilsner","state":"Wisconsin"},{"abv":6.4334168962225675,"address":"Novozamocka Cesta 2","city":"Hurbanovo","coordinates":[47.8809,18.1972],"country":"Slovakia","ibu":108,"name":"Golden Pheasant"},{"abv":14.711279472480223,"address":"412 North Milwaukee Avenue","category":"North American Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":38,"name":"Wheat Ale","state":"Illinois"},{"abv":13.225303664828449,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":117,"name":"Bruocsella 1900 Grand Cru","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":7,"address":"Liesontie 554","city":"Lammi","country":"Finland","ibu":12,"name":"Kataja Olut IVB"},{"abv":4.8000001907000005,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":77,"name":"Skagit Brown Ale","state":"Washington"},{"abv":5.9000000954,"address":"600 Brea Mall","category":"North American Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":53,"name":"Nutty Brewnette","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":4.6999998093,"address":"600 Brea Mall","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":92,"name":"Brewhouse Blonde","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":113,"name":"La Folie Falling Rock","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.534526745199172,"category":"North American Ale","city":"Anchorage","coordinates":[61.2181,-149.9],"country":"United States","ibu":14,"name":"IPA Pale Ale","state":"Alaska"},{"abv":10.599555430506879,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":106,"name":"Golden Gate Copper Ale","state":"California"},{"abv":6.583512598238396,"address":"401 Cross Street","category":"North American Ale","city":"Lexington","coordinates":[38.0501,-84.5088],"country":"United States","ibu":103,"name":"Limestone 1897 Original Amber Ale (discontinued)","state":"Kentucky","website":"http://www.kentuckyale.com/kentuckyale/Index.html"},{"abv":9.454535642338172,"address":"4268 Second Street","category":"Irish Ale","city":"Detroit","coordinates":[42.351,-83.0665],"country":"United States","ibu":44,"name":"Coal Porter","state":"Michigan"},{"abv":14.038159686316462,"address":"5 East Alger Street","category":"North American Ale","city":"Sheridan","coordinates":[44.8007,-106.956],"country":"United States","ibu":77,"name":"Red Line Amber","state":"Wyoming"},{"abv":9.81962860300064,"address":"800 LaSalle Plaza","category":"North American Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":14,"name":"Stillwater Stout","state":"Minnesota"},{"abv":5.1999998093,"address":"Nymphenburger Straße 4","city":"München","country":"Germany","ibu":87,"name":"Schwarze Weisse","state":"Bayern"},{"abv":4.6999998093,"address":"Moosstrae 46","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":46,"name":"Pils","state":"Bayern"},{"abv":7,"address":"Obere Mhlbrcke 1-3","category":"German Lager","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":2,"name":"Bockbier","state":"Bayern"},{"abv":4.3000001907,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":45,"name":"Nut Brown","state":"Washington"},{"abv":5.3000001907,"address":"1253 Johnston Street","category":"North American Lager","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":38,"name":"Old Bridge Dark Lager","state":"British Columbia"},{"abv":9.004774669137179,"address":"Romanshornerstrasse 15","category":"German Ale","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":24,"name":"Weizenbier"},{"abv":7.25,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":8,"name":"Casey Jones Imperial IPA","state":"California"},{"abv":8,"address":"Rue Pral 8","city":"Soy","coordinates":[50.286,5.5127],"country":"Belgium","ibu":71,"name":"Strange Ghost","state":"Luxembourg"},{"abv":11.699999809,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Our Eleventh anniversy ale, released in July 2006 only is a Triple IPA made exclusively with Phoenix hops. 11.7% abv make this Triple IPA powerful, but the Phoenix hops keep it smooth. Phoenix is another one of those hops with low cohumulone levels, which means when used in very large quantities (as we do in Eleven) the hops flavor is very smooth, not a hint of harshness for the enormous amounts of hops in the brew. As with all of our Anniversay ales, this one will age fantastically and will never be made again, as each anniversary is an entirely different brew.","ibu":118,"name":"Eleven","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.5999999046,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Not quite pale ale. A beer cloaked in secrecy. An ale whose mysterious unusual palate will swirl across your tongue and ask more questions than it answers.\n\n\nA sort of dry, crisp, fruity, refreshing, not-quite pale ale. #9 is really impossible to describe because there's never been anything else quite like it. Our secret ingredient introduces a most unusual aroma which is balanced with residual sweetness.","ibu":48,"name":"#9","state":"Vermont","website":"http://www.magichat.net/"},{"abv":14.85329109861418,"city":"Romakloster","coordinates":[57.4985,18.459],"country":"Sweden","ibu":114,"name":"Dragöl"},{"abv":1.782403106243552,"address":"300 West Fourth Street","city":"Cortland","coordinates":[40.5058,-96.707],"country":"United States","ibu":114,"name":"Wind Chill Spiced Ale (discontinued)","state":"Nebraska"},{"abv":9.321044482549283,"category":"German Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":46,"name":"Whistle Stop Weiss Beer","state":"Illinois"},{"abv":8.870900504319199,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":19,"name":"Native Ale","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":13.675832116581592,"address":"Mhlweg 18","category":"German Ale","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":102,"name":"Weissbier","state":"Bayern"},{"abv":13.530878677593954,"address":"141 South Main Street","category":"Irish Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This robust porter has a lot of caramel and chocolate flavor balanced with the flavor and aroma of fuggle hops.","ibu":90,"name":"Friar's Porter","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":4.8000001907000005,"address":"9750 Indiana Parkway","category":"Other Style","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"Three Floyds official summer beer highly dry hopped American wheat beer. Quite hoppy. Gumballhead is brewed from red wheat and amarillo hops. It has a medium haze, due to bottle conditioning; once the beer is bottled, extra yeast is added for a secondary fermentation. The hops give off a pronounced citrus note on the nose. Notes of bread - from the yeast - and a good malt undertone. Medium carbonation.","ibu":12,"name":"Gumballhead","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":3.315788821476513,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":75,"name":"Belgian Brown","state":"Nebraska"},{"abv":5.195960771598317,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":89,"name":"Noch Einmal Dunkel","state":"Wisconsin"},{"abv":5.3000001907,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"This special bitter displays the subtle coppery hue of \"Old Gold\". It's depth of lingering hop flavor awakens the palate.","ibu":119,"name":"Beast Bitter","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":3.128388584793375,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":56,"name":"Smooth India Pale Ale","state":"Illinois"},{"abv":3.238833186912833,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","ibu":96,"name":"Imperial Stout","state":"Michigan"},{"abv":5.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"America's first domestic ice beer, Icehouse is traditionally brewed, fermented and, just before aging, its temperature is lowered to below freezing. This process imparts the beer's smoothness and an alcohol content that's slightly higher (5.5% by volume) than other regular premium beer brands. Icehouse was introduced in 1993 and has reinforced its position as the ultimate beer for wind-up and pre-game occasions. Blending humor and high-energy excitement, Icehouse marketing encourages its target consumers to take occasions to the next level with a great-tasting beer.","ibu":46,"name":"Icehouse","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":14.327647560060374,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":99,"name":"Amber Lager","state":"California"},{"abv":4.24607280115906,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":86,"name":"Bull Town Brown","state":"North Carolina"},{"abv":10.828439790106955,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":60,"name":"Dusseldorf-Style Altbier","state":"Texas"},{"abv":12.689439399619424,"address":"506 Columbia Street","category":"British Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":88,"name":"Wassail Winter Ale","state":"Oregon"},{"abv":1.903876311829188,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":24,"name":"Old Glory American Pale","state":"Illinois"},{"abv":5.4049683777872195,"address":"200 North Tenth Street","city":"Des Moines","coordinates":[41.5841,-93.6296],"country":"United States","ibu":12,"name":"Vanilla Creme Ale","state":"Iowa"},{"abv":5,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"A full, clean and refreshing pale coloured bitter with an abundance of citrus hop character created by the blend of dry and late hopping techniques.\n\nIt also has subtle hints of malt and fruit on aroma and palate which gives the beer a well rounded balance.","ibu":65,"name":"2008 Culture Beer","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":7.8000001907000005,"address":"1680-F East Waterloo Rd.","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"I.P.A. and Stout converge for a really great flavor combination! The assertive, hoppy character of our Hoppin’ To Heaven I.P.A. is perfectly complimented by the intense, deep roasted taste of our B.O.R.I.S. Oatmeal-Imperial Stout.","ibu":58,"name":"Bodacious Black and Tan","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":5.6999998093,"address":"4519 W. Pine Street","category":"Irish Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Porter is very dark in color. This robust porter features a pronounced flavor of roasted grains reminiscent of dark chocolate. Also, Paul and Brandon add oats to the grist to give a subtle round silkiness to the mouthfeel. We’re confident that you’re really going to love this yummy porter!","ibu":69,"name":"Duck-Rabbit Porter","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":5.6999998093,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"The latest addition to the Boulevard family of year-around beers, Single-Wide I.P.A. is our take on a style that originated in 18th century Great Britain. This American version -- inspired by our Smokestack Series Double-Wide I.P.A. -- boasts a heady combination of six varieties of hops, some of which were employed for dry-hopping.","ibu":26,"name":"Single-Wide I.P.A.","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":5,"city":"Pont Fer","coordinates":[-20.2738,57.4971],"country":"Mauritius","description":"A polished, golden yellow beer with 5% alcohol. Phoenix beer is pasteurised after bottling, according to natural conservation methods. The quality of the underground water also allows us to produce a beer with no chemicals additives. Time of maturation before distribution is meticulously controlled.","ibu":105,"name":"Phoenix","state":"Phoenix","website":"http://www.phoenixbeveragesgroup.com/"},{"abv":0.5,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Birell has all the hallmarks of a great premium beer, rich colour, full malty flavour and the ability to quench a thirst, with one important difference - virtually no alcohol. \n\n\nBrewed under license in Australia by Coopers, Birell is made using only the finest Australian malted barley, hops and yeast, with no artificial additives or preservatives.\n\n\nCoopers Birell may be found in most supermarkets (375ml bottles or cans).","ibu":116,"name":"Birell","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":6.5,"address":"1301 Atlanta Avenue","category":"Other Style","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","description":"Orange Blossom Pilsner or OBP is an easy drinking craft beer. Even beer drinkers that prefer lightest of beers enjoy the crisp and refreshing taste of OBP and love is subtle hony nuance. OBP is the perfect craft beer for the tropical Florida lifestyle.","ibu":12,"name":"Orange Blossom Pilsner","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":10,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"The Belgian Trippel tradition calls for a moderately heavy grist of golden pilsner malt and \"Candy\" sugar that sends the yeast into overdrive. We used local Dixie Crystal.","ibu":90,"name":"Dixie Crystal","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":5,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Scottish-style brown ale with an attractive dark cherry color; a soft, lightly chewy body and a hint of licorice in its malt character. Rich and dark yet not too strong. 1996 Best Show at the Chicago Real Ale Festival.","ibu":42,"name":"Highlander 80/-","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5.4000000954,"address":"811 Edward Street","category":"Irish Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Caramel Porter is a Robust, flavorful porter Reminiscent of a by-gone era. True to brewing tradition, we've used dark caramel malt, as well as Fuggles and East Kent Goldings hops for smooth, yet slightly bitter, roasted flavor, look for hints of the real caramel used in brewing this delicious beer!","ibu":17,"name":"Saranac Caramel Porter","state":"New York","website":"http://www.saranac.com"},{"abv":11.162705464351156,"address":"RR 1 Box 185","category":"North American Ale","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Another one of our most popular brews. Navigator Gold has a crisp and slighly hoppy finish. It's cold filtered and moderately carbonated.","ibu":91,"name":"Navigator Golden Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":4.4000000954,"address":"1075 East 20th Street","category":"Other Style","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nPale, smooth, and light-bodied, Sierra Nevada Wheat Beer is brewed from premium malted wheat and light barley malts, utilizing our traditional ale yeast. This unfiltered ale is finished with the characteristically spicy Strissel Spalt hops from the Alsace region of France. \n\n\n“The lightest Sierra Nevada beer is this refreshing wheat beer made with barley & wheat for a very light character but loads of flavor!”\n\n\n– BevMo.com\n\n\nSILVER MEDAL WINNER\n\nCalifornia State Fair (American Wheat: 2000)","ibu":29,"name":"Unfiltered Wheat Beer","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.5,"address":"2423 Amber St","category":"North American Ale","city":"Philadelphia","coordinates":[39.9827,-75.1275],"country":"United States","description":"Hop shortage be damned! We love IPA's, Philadelphia loves IPA's, we're going to brew an IPA. Rekindle your passion for your favorite Phi ladelphia brewery by enjoying our substantial, aromatic India Pale Ale. Newbold is aggressively hopped, with a crimson hue and depth of flavor that will satisfy the most demanding devotee of this revived style. Newbold I.P.A. tells it like it is.","ibu":33,"name":"Newbold IPA","state":"Pennsylvania","website":"http://philadelphiabrewing.com/index.htm"},{"abv":5,"address":"4120 Main Street","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","ibu":44,"name":"Summer Gold","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":7.234526257626489,"address":"1111 Mainland Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2755,-123.121],"country":"Canada","ibu":55,"name":"Yippee IPA","state":"British Columbia"},{"abv":8.523107638205673,"address":"1025 Marine Drive","category":"North American Lager","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":79,"name":"Baden Powell Cream Ale","state":"British Columbia"},{"abv":13.74571591864589,"address":"Wilhelm-Schussen-Strae 12","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":66,"name":"Original Nº 1 Naturtrüb","state":"Baden-Wrttemberg"},{"abv":7.6999998093,"address":"656 County Highway 33","city":"Cooperstown","coordinates":[42.6818,-74.9255],"country":"United States","ibu":87,"name":"Hennepin Farmhouse Ale","state":"New York"},{"abv":6.829470273860814,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":40,"name":"Cascade Amber","state":"California"},{"abv":8.146667630925723,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":29,"name":"Cardinal Pale Ale","state":"Nebraska"},{"abv":13.160014362533419,"address":"3945 Second Street South","category":"North American Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":11,"name":"Northern Light","state":"Minnesota"},{"abv":4.921218153797884,"address":"Brauhausplatz 1","category":"German Lager","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":11,"name":"Original Badebier / Original Bathbeer Monastery Fun","state":"Brandenburg"},{"abv":5.1999998093,"address":"Havelock Street","city":"Bedford","coordinates":[52.1321,-0.48150000000000004],"country":"United Kingdom","ibu":99,"name":"Bombardier Premium Ale","state":"Bedford"},{"abv":5.6999998093,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":83,"name":"Black Lab Stout","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":1.2749538855563425,"address":"412 North Milwaukee Avenue","category":"German Lager","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":31,"name":"Scapegoat Bock","state":"Illinois"},{"abv":2.586460754421828,"address":"200 Village Green","category":"North American Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":64,"name":"Harvest Amber Ale","state":"Illinois"},{"abv":12.236543573912643,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":102,"name":"Johnny \\\"Blood\\\" McNally Irish Red","state":"Wisconsin"},{"abv":12.143897334182064,"address":"1313 NW Marshall Street","category":"Irish Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":60,"name":"Porter","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":8.852109211526123,"address":"1516 Sansom Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":14,"name":"Bill Payer Ale / BPA","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":7.8000001907000005,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":46,"name":"Slip Knot Imperial IPA 2006","state":"Oregon"},{"abv":7.752076980938036,"address":"1918 West End Avenue","category":"North American Ale","city":"Nashville","coordinates":[36.152,-86.7989],"country":"United States","ibu":36,"name":"Nut Brown Ale","state":"Tennessee"},{"abv":5.439317484118665,"address":"Konradigasse 2","category":"German Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":10,"name":"Herbstbeer","state":"Baden-Wrttemberg"},{"abv":1.9835961098608745,"address":"2424 West Court Street","category":"North American Lager","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":17,"name":"Black and Tan","state":"Wisconsin"},{"abv":5.166517921123712,"address":"123 East Doty Street","category":"German Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":32,"name":"Crop Circle Wheat","state":"Wisconsin"},{"abv":1.1635231826403392,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":11,"name":"Adler Bräu Pumpkin Spice","state":"Wisconsin"},{"abv":2.835543918402599,"category":"German Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":24,"name":"High Noon Wheat Beer","state":"Wisconsin"},{"abv":1.5030564894549148,"category":"British Ale","city":"Delta","coordinates":[49.1487,-122.912],"country":"Canada","ibu":24,"name":"Cream Ale","state":"British Columbia"},{"abv":12.681618067986184,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":13,"name":"I.P.A.","state":"California"},{"abv":0.339813871871506,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":51,"name":"Underground IPA","state":"Wisconsin"},{"abv":5.5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Named for a retired California Western Railroad steam engine on the Fort Bragg to Willits run through the Redwoods, Old No. 38 Stout is a smooth, firm-bodied stout with the toasted character and coffee notes of dark malts and roasted barley.","ibu":61,"name":"Old No.38 Stout","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":11.152931341183868,"category":"North American Lager","city":"Lake Oswego","coordinates":[45.4207,-122.671],"country":"United States","ibu":56,"name":"Pilsner","state":"Oregon"},{"abv":5.985720224934955,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":63,"name":"Oompa Loompa Chocolate Stout","state":"Ohio"},{"abv":4.9000000954,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":84,"name":"Blue Heron Pale Ale","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":3.647110611220601,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Brewed with all malted barley and peat malt (smoked malt). This beer is full bodied with chocolate, roasted barley flavors, and a smokey almost BBQ finish.","ibu":71,"name":"Fore Smoked Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":7.6999998093,"address":"2323 Defoor Hills Rd NW","category":"Irish Ale","city":"Atlanta","coordinates":[33.818,-84.4353],"country":"United States","description":"A robust porter brewed with lots of chocolate malt and roasted barley. This gives the beer its nearly black color and coffee and dark chocolate flavors. These flavors are then tempered with the use of flaked oats which provide an almost creamy texture to the beer. The 7.7% abv is deceptive but is not completely unnoticed.","ibu":35,"name":"Red Brick Double Chocolate Oatmeal Porter","state":"Georgia","website":"http://www.atlantabrewing.com/"},{"abv":7.1999998093,"address":"310 Perry Street","category":"German Lager","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"No, there is no maple flavor here, just a great beer with a good name. LaPorte, Indiana is known as the \"Maple City\" because of its trees. This German style Oktoberfest lager beer has a golden copper color and intense malty flavor. We make this beer 4 times a year, but it is hard to find because it goes so fast. Give it a try and you may find it worthy of the gold.... or at least another round","ibu":110,"name":"Maple City Gold","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":9.3999996185,"address":"2519 Main St.","category":"Belgian and French Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"We welcome the release of “Two Front Teeth Holiday Ale” a Belgian style Saison with subtle real cherry flavoring. What a good way to drown out in-laws by enjoying a pint or two of this recent release from Spring House Brewing Company. This is not for the faint palate; this holiday offering is coming in at 9.4% ABV! We hope you stop by for a taste or a Growler fill but unfortunately you have to stop in for this one. Enjoy!","ibu":46,"name":"Two Front Teeth Holiday Ale","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":1.170808393199565,"address":"306 Northern Avenue","category":"Irish Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","ibu":115,"name":"Harpoon Celtic Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":12.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"It is beer #2 in our \"Blackwater Series\" of original Imperial Stouts. The first in the Series was \"Is\", a dark and bitter Russian Imperial Stout. \"Oat\" is the follow up; an Oatmeal Stout with major alcohol volume and tons of body to back it up. The cloying character of the oats in this brew lends itself to a chewy and almost oily mouthfeel. ABV. is off the charts at about 12.5%. Note, that this is an all malt beer fermented with our house ale strain of yeast. Judicious hopping with Columbus and Chinook produce a hoppy aroma that mingles nicely with the chocolate and de-bittered black barley from Belgium.","ibu":30,"name":"Oat Imperial Oatmeal Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":13.326531424589765,"address":"605 S. Talbot St.","category":"North American Ale","city":"St Michaels","coordinates":[38.7814,-76.2222],"country":"United States","ibu":19,"name":"St. Michaels Blonde Ale","state":"Maryland","website":"http://www.easternshorebrewing.com/"},{"abv":12.74270550426248,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"Extremely dark in color, with a malty flavor dominated by caramel and chocolate malts and a slight hoppy bitterness. This full-bodied ale has a nice smooth lasting finish.","ibu":40,"name":"Outlet Stout","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":4.3000001907,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Oatmeal Stout is brewed with a delicate balance of the finest grown oats, selected hops, and our traditional ale yeast. Look for a sweet, dark chocolate and roasted taste.","ibu":90,"name":"Saranac Oatmeal Stout","state":"New York","website":"http://www.saranac.com"},{"abv":4,"address":"725 Fourth Street","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"This nitrogenated dry stout is low in alcohol but big in flavor. Its smooth roasted coffee like aromas and flavor are clean and drinkable.","ibu":34,"name":"OVL Stout","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":4.755548948069007,"address":"1872 North Commerce Street","category":"North American Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","description":"Delicious","ibu":75,"name":"Riverwest Stein Beer","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":5,"category":"North American Lager","country":"Netherlands","ibu":63,"name":"Heineken","website":"http://www.heineken.com/"},{"abv":7.346228307836347,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"The complex charactor of American hops and amber colored caramel malts make it crisp & refreshing.","ibu":82,"name":"Hoppus Maximus","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":6,"address":"Hoogstraat 2A","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7668,4.3081],"country":"Belgium","ibu":2,"name":"Oude Geuze","state":"Vlaams Brabant","website":"http://www.3fonteinen.be/index.htm"},{"abv":5.5,"address":"563 Second Street","category":"Belgian and French Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"The definition of summer in a pint glass. This unique, American-style wheat beer, is brewed with 400 lbs. of fresh pressed watermelon in each batch. Light turbid, straw color, with the taste and essence of fresh watermelon. Finishes dry and clean. Now Available in Cans!","ibu":89,"name":"Watermelon Wheat","state":"California","website":"http://www.21st-amendment.com/"},{"abv":5.1999998093,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Shock Top is an unfiltered Belgian-style wheat ale (also known as a “White” or “Wit” beer due to its appearance) that is naturally cloudy with a billowy white foam head, light golden hue and slight taste of orange citrus peel and coriander.","ibu":63,"name":"Shock Top","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":9,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Esquire Magazine calls our 90 Minute .IPA., \"perhaps the best I.P.A. in America.\" An Imperial I.P.A. brewed to be savored from a snifter. A big beer with a great malt backbone that stands up to the extreme hopping rate. This beer is an excellent candidate for use with Randall The Enamel Animal!","ibu":2,"name":"90 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.5627664387441813,"category":"North American Ale","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":44,"name":"Berkshire Springs Stock Ale","state":"Minnesota"},{"abv":13.889557166575996,"category":"North American Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":64,"name":"Bacchanal Blonde","state":"Wisconsin"},{"abv":5.9000000954,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":26,"name":"Very Special Pale Golden Ale","state":"Oregon"},{"abv":5.3000001907,"address":"Schillerstrae 14","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":106,"name":"Kristall Weizen","state":"Bayern"},{"abv":1.3408597428980762,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":110,"name":"Demon Fuel","state":"New York"},{"abv":3.1635681198699594,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":78,"name":"Hacker-Pschorr Weisse Bock","website":"http://www.paulaner.com/"},{"abv":6.513393774717462,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":69,"name":"Nut Brown","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":11.884078959488027,"address":"Little Telpits Farm, Woodcock Lane","category":"North American Ale","city":"Maidstone","coordinates":[51.2047,0.6813],"country":"United Kingdom","ibu":1,"name":"East India IPA","state":"Kent"},{"abv":5.4000000954,"address":"540 Clover Lane","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A conundrum in the world of beer. This ale does not fit any conventional beer style. Orange in color only, this beer has hop characteristics of oranges and tangerines.","ibu":49,"name":"Dry Hop Orange","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The recipe for Rogue Chocolate Stout was created several years ago for export to Japan. The exported twelve ounce Chocolate Bear Beer bottle label is in Kanji and features a teddy bear with a pink heart on his belly. Chocolate Stout was released for Valentines Day in 2001 in a twenty-two ounce bottle for the US market. The label features a Roguester (Sebbie Buhler) on the label. The bottled of Chocolate Stout is available on a very limited basis in the US, so get it while you can! \n\n\nHedonistic! Ebony in color with a rich creamy head. The mellow flavor of oats, chocolate malts, and real chocolate are balanced perfectly with the right amount of hops for a bittersweet finish. Chocolate Stout is brewed with 10 ingredients: Northwest Harrington and Klages, Crystal 135-165 and Beeston Chocolate Malts, Cascade Hops, Rolled Oats and Roasted Barley, Natural Chocolate Flavor, Free Range Coastal Waters and PacMan Yeast. Chocolate Stout is available year-round only in the classic 22-ounce bottle and on draft.","ibu":1,"name":"Chocolate Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.5,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"The Winter seasonal from Adnams, Fisherman is described as an old ale. If your local pub has the good sense to serve cask beer, look for Fisherman on draught from January through March.\n\n\nClean and refreshing yet dark and mysterious, Fisherman is a deep coppery red, conjuring roasted nuts and dark chocolate, with a lingering taste of liquorice and dried fruits.","ibu":15,"name":"Adnams Fisherman","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":6,"address":"905 Line Street","category":"British Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Exceptionally smooth and thoroughly robust, Weyerbacher Scotch Ale has a deep delicious flavor that will warm you down to your wee little bones. Malty and roasty on the palate, and with distinctive caramel notes, this beer will satisfy the desires of any malty beer aficionado. \n\n\nWeyerbacher Scotch Ale is our interpretation of a beer style originating from Scotland, where the chilly damp weather calls for a hearty beer. Lacking the preservative powers of hops, scotch ales were brewed with high alcohol content to prevent spoilage. And at 8.7% ABV (alcohol by volume) Weyerbacher Scotch Ale definitely contains a warming belt.\n\n\nWe brew Weyerbacher Scotch Ale mostly in the cooler months of the year. Check out the Upcoming Events and Beers page for the next time it will be at a beer store near you.","ibu":115,"name":"Scotch Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8.1000003815,"address":"302 N. Plum St.","category":"German Lager","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"A mighty lager-style brew, dark in color. Our Doppelbock brings a big malty sweetness together with the classic lager smoothness, topped off with a slightly evident alcohol flavor. A toasty brew to battle even the coldest winter nights.\n\n\nAvailable at the Brewery and in bottles & cases from March - May.","ibu":91,"name":"Doppel Bock","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.5,"city":"Romakloster","coordinates":[57.4985,18.459],"country":"Sweden","ibu":14,"name":"Romakloster"},{"abv":11.587486464006947,"address":"214 Spanish Town","category":"North American Lager","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":93,"name":"Red Stripe Lager Beer"},{"abv":3.9436295304398428,"address":"945 West Second Street","category":"Irish Ale","city":"Chico","coordinates":[39.7245,-121.848],"country":"United States","ibu":118,"name":"Organic Porter","state":"California"},{"abv":6.050400746082538,"address":"Salzachtal Bundesstrae Nord 37","category":"German Ale","city":"Hallein","coordinates":[47.6942,13.0784],"country":"Austria","ibu":53,"name":"Edelweiss Hefetrüb"},{"abv":14.24108298086454,"city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":31,"name":"Rauchbier","state":"Colorado"},{"abv":6.901322850359639,"category":"North American Lager","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":119,"name":"Prohibition Smokehouse Porter","state":"Illinois"},{"abv":14.012929983379774,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":114,"name":"Strong Brown Ale","state":"Illinois"},{"abv":10.874262936086005,"address":"1208 14th Avenue","category":"German Ale","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":95,"name":"Berghoff Hefeweizen","state":"Wisconsin"},{"abv":4.5999999046,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":67,"name":"Original","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":10.100000381,"address":"1213 Veshecco Drive","category":"British Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie Brewing presents the Beer formally known as Red Ryder BIG BEER - A beer dubiously awarded two cease and desist letters for its name. Ol’ Red Cease and Desist brings more to the table than just a big malty flavor and climaxing warming sensation…a legal record! This beer so recognized and loved by many deserves a unique name to match its unique history. What better name than Ol’ Red Cease and Desist – a name inspired by the long arm of the law!","ibu":55,"name":"Ol' Red Cease and Desist","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.3000001907,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Subtle Seasonal spices, in this dark, rich wheat beer are smooth and easy for the discerning palate.","ibu":16,"name":"Winter Wheat","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6,"address":"Walplein 26","category":"Belgian and French Ale","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","description":"Brugse Zot is a goldenblond beer with a rich froth and a fruity flavouring. The beer is brewed with four different kinds of malt and two aromatic varieties of hop which give the beer its unique taste.\n\nWith an alcochol degrees proof of 6 % Vol it is a well balanced, easy drinking beer with character.\n\nBrugse Zot is a natural beer born out of a selection of only the best ingredients. Thanks to the refermentation in the bottle, the beer has a longer natural life.","ibu":77,"name":"Brugse Zot","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":85,"name":"Red Dog","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":7,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"2x4 India Pale Ale (7% ABV, 65 IBUs) sports Columbus, Nugget and Amarillo hops for a spicy, citrusy blend in both flavor and aroma. Backed by golden pale malts and a kick from flaked rye, the hops are pleasantly robust with just the right touch of bitterness at the end.","ibu":94,"name":"2x4 India Pale Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":8.3000001907,"address":"2401 Blake St.","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"“Two inflammatory words... one wild drink. Nectar imprisoned in a bottle. Let it out. It is cruel to keep a wild animal locked up. Uncap it. Release it....stand back!! Wallow in its golden glow in a glass beneath a white foaming head. Remember, enjoying a RAGING BITCH, unleashed, untamed, unbridled- and in heat- is pure GONZO!! It has taken 20 years to get from there to here. Enjoy!”","ibu":21,"name":"Raging Bitch Belgian IPA","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":14.94308019960043,"address":"87 Doe Run Rd","category":"Other Style","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"A crisp, clean, easy drinking, refreshing American ale with a light body.","ibu":113,"name":"JoBoy's Cream Ale","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":9,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This little bottle has a grandiloquent story to tell.\n\n\n2,204 malted Maris Otter grains gave all they had to offer the world to provide the robustly delicate toffee malt canvas for the ensuing epic.\n\n\n6 Hop Cones willingly sacrificed themselves in fiery cauldron that is our brew kettle to ensure your mouth is left feeling punished and puckering for more.\n\n\n9,900,000,000 yeast cells frantically fermented their little hearts out as the sugars were magically turned into alcohol in the dark depths of our fermentation tanks.\n\n\nThis explicit ale has more hops and bitterness that any other beer brewed in the UK. This is an extreme beer rollercoaster for freaks, gypsies and international chess superstars.","ibu":7,"name":"Hardcore IPA","website":"http://brewdog.com/"},{"abv":6.1999998093,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Why put everything in a category? Live outside the box. The ‘flagship’ of TailGate Beer, Amber Wave, is a completely unique and individual beer that raises the standards and breaks all the molds.\n\n\nAmber Wave was inspired by America's amber waves of grain and is as unique as apple pie. The intellectuals behind TailGate Beer created this dark, rose colored ale that drinks like honey and lingers of light caramel, with notes of chocolate and sweet subtle hops. Surprise yourself, and others, with your sophisticated palate and acute ability to find the best beer brewed for drinking, not sampling.","ibu":36,"name":"Tailgate Amber Wave","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":9,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"In Williamsburg, Brooklyn, we forge barley malt and hops from Germany, aromatic raw sugar from Mauritius and yeast from Belgium into our latest beer, Brooklyn Local 1.\n\n\nBehind the full golden color you'll find an alluring aroma, a dynamic complex of flavors, Belgian flair, Brooklyn fortitude and a dusting of our special yeast. To create this beer, we use the old technique of 100% bottle re-fermentation, a practice now rare even in Europe. It gives this beer a palate of unusual depth. Enjoy it locally or globally, as an aperitif or with your favorite dishes. It is particularly nice with spicy seafood and with fine cheeses.","ibu":74,"name":"Local 1","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":47,"name":"Anniversary IPA Ahtanum","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":12.699999809,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"This winter warmer will knock the chill away until summer. It used as much malt as our brew house can handle and armloads of fresh hops and lovingly laid in our fermentor for four months. Massively malty and balanced with burly bitterness it is truly the king of beers, approaching wine in strength. A definitive one to have when you’re only having one. Adoringly served in brandy snifters to preserve precious properties.","ibu":72,"name":"Nokdechiloff","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":6.5,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":100,"name":"Indica India Pale Ale","state":"California","website":"http://www.lostcoast.com/"},{"abv":15.039999962,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","ibu":31,"name":"Olde School Barleywine","state":"Delaware","website":"http://www.dogfish.com"},{"abv":2.698042078960319,"address":"871 Beatty Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":7,"name":"Tropical Lager","state":"British Columbia"},{"abv":4.5999999046,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":80,"name":"Rauchbier Lager","state":"Bayern"},{"abv":0.05876140781472472,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":49,"name":"Pale Ale","state":"Washington"},{"abv":8,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":40,"name":"Equinox Dark Belgian Winter","state":"Vlaams Brabant"},{"abv":2.788480344860873,"address":"1525 St. Charles Avenue","category":"Irish Ale","city":"New Orleans","coordinates":[29.9386,-90.076],"country":"United States","ibu":32,"name":"Ponchartrain Porter","state":"Louisiana","website":"http://www.zearestaurants.com"},{"abv":6.07329228144645,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":66,"name":"Mile Rock Amber Ale","state":"Wisconsin"},{"abv":14.463713604955405,"address":"6863 Lundy's Lane","category":"North American Ale","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":56,"name":"Gritstone Premium Ale","state":"Ontario"},{"abv":4.9000000954,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"When one sees a beer with a darker complexion these days, more often than not it","ibu":54,"name":"Samuel Adams Black Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.1999998093,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A cask-conditioned American Pale Ale. This is a bright dry ale brewed only with American Nugget hops.","ibu":20,"name":"Arthur's Nugget Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":11.428293344294396,"city":"San Rafael","coordinates":[37.9735,-122.531],"country":"United States","ibu":25,"name":"Ace Pear Cider","state":"California"},{"abv":4.808871161433961,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":28,"name":"Double Black Stout","state":"Washington","website":"http://www.redhook.com/"},{"abv":5.5999999046,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"A mix of Northern and Southern English Brown Ales, blending 6 malts into an All-American beer.","ibu":31,"name":"Brown Ale","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":13.29110862159575,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":6,"name":"Rainbow Trout Stout","state":"Texas"},{"abv":6.6999998093,"address":"901 SW Simpson Avenue","category":"Other Style","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Did you know that Jubelale was the first beer ever bottled by Deschutes Brewery? Highly anticipated every fall, Jubelale is in a category of its own with a flavor and following that is impossible to match. Dark crystal malt creates that “luscious” holiday note while the roasty flavor and bountiful hops excite your tastebuds, reminding you why Jubelale is the perfect holiday beer","ibu":18,"name":"Jubelale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":13.52608296348622,"address":"1398 Haight Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":11,"name":"Prescription Pale","state":"California","website":"http://www.magnoliapub.com/"},{"abv":2.0438583030890833,"address":"906 Washington Street","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":80,"name":"Hammerhead Barleywine 1990","state":"California"},{"abv":13.01982957287435,"category":"Irish Ale","city":"Santa Cruz","coordinates":[36.9741,-122.031],"country":"United States","ibu":69,"name":"Pacific Porter","state":"California"},{"abv":3.090816149366389,"address":"514 South Eleventh Street","category":"German Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","ibu":30,"name":"Heartland Hefeweizen","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":4.5,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"A full bodied stout made with all malted barley and blueberry. Flavors of chocolate, roast malt and light blueberry make up the palate with lots of fruity blueberry aroma.","ibu":70,"name":"Tres Blueberry Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":6.0999999046,"address":"River Street, P.O. Box 276","category":"British Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Back Yard\" is a golden India Pale Ale. Historically, ale shipped to India in the 19th Century was brewed to higher gravities so that it could mature during the long sea voyage. English brewers also hopped these ales heavily to protect them from spoiling. The term \"India pale Ale\" or \"I.P.A.\" is still used by brewers to denote a super-premium, hoppy pale ale style. Backyard IPA is no exception. English pale barley malt is predominant in this beer with just a small amount of crystal malt. It is well bittered with Cluster and Cascade hops and finished with a mix of local hop and larger amounts of Fuggle hop.","ibu":82,"name":"Backyard India Pale Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":5,"address":"St. James's Gate","category":"North American Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"To mark the 250 year anniversary of the signing of the lease on St. Jame's Gate Brewery by Arthur Guinness, we introduce a special commemorative stout. This premium recipe provides a refreshing taste, which underlies the complex flavor of stout.","ibu":98,"name":"Guinness 250th Anniversary Stout","website":"http://www.guinness.com"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"A notorious drink that's as dark as its' namesakes history!! It is named after the infamous LaPorte, Indiana serial killer herself, Belle Gunness of 1908. This Irish-style dry stout is amazingly smooth to drink. You will taste chocolate, coffee and roasty flavors in every sip. Don't be afraid of the dark. A true dark beer lover would die to try it. It definitely would not kill you to dig some up.","ibu":68,"name":"Belle Gunness Stout","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"If you are searching for a light, refreshing pale ale, your search is over! Superstition Pale Ale is named after the Superstition Mountains which are just east of Phoenix. This American pale ale is brewed using mountain pure water, select domestic grain, yeast and hops from the Pacific Northwest. Superstition is copper in color with a clean, malty fullness and finishes with pronounced hop bitterness. Perfect for enjoying on a warm Arizona day.","ibu":52,"name":"Superstition Pale Ale","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5.1999998093,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"This style of beer is based on the English Mild, which was a combination of a stout and a lighter beer favored by coal miners in Scotland, Ireland and North England.\n\nWe've brought together the grains used to make both a Stout and a Pale Ale and balanced them in our Nut Brown Ale to produce a beer with a chocolate and molasses flavor and hints of caramel and coffee in the background.","ibu":14,"name":"Climax Nut Brown Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":5.1999998093,"address":"2035 Benson Avenue","category":"Belgian and French Ale","city":"St. Paul","coordinates":[44.9084,-93.1538],"country":"United States","ibu":82,"name":"Flat Earth Belgian-style Pale Ale","state":"Minnesota","website":"http://flatearthbrewing.com/"},{"abv":6.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A rich, malty, and very bitter ale. Cascade hops provide a long, fruity, and spicy after-taste. Recommended serving temperature 10°C/50°F. Ideal with barbequed or smoked meat dishes.","ibu":18,"name":"Nøgne Ø India Pale Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":4.3000001907,"address":"2439 Amber Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Boasting superior taste and champion flavor, the Brawler is crafted in the style of English session ales. This malt-forward, ruby colored ale is great for when you want to go a few rounds.","ibu":67,"name":"Yards Brawler","state":"Pennsylvania"},{"abv":6.5,"address":"40 Van Dyke St","category":"North American Ale","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Sixpoint Bengali Tiger is reminiscent of the century-old English IPA. In my perspective, many current IPAs suffer from lacking substance; unbalanced by a hoppy assertiveness that is not substantiated by a strong foundation of rich malt flavors. Our interpretation uses the highest-quality, floor-malted base malt, which lends a full-bodied and rich caramel flavor. We mash at high temperatures and add generous amounts of specialty malts to further emphasize a strong foundation of malt as leverage for our generous additions of hops… Which are indeed generous. We use a total of three different hop strains, and add a total of six different additions throughout the process. The Bengali Tiger has a hoppy snap upfront, but strides at a steady pace, and finishes balanced. The signature characteristic of the Tiger is the aroma… we use massive quantities of whole East Kent Goldings hops to dry hop in our conditioning tanks. The result? The essential oils from the hops are an enticing treat before every sip. Notice the lacing of stripes around the pint glass as you finish your glass; it’s the mark of the Tiger.","ibu":115,"name":"Bengali Tiger","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.5,"address":"237 Joseph Campau Street","category":"Other Style","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Made with unmalted wheat, coriander and orange peel to help you live smart and enjoy everyday!","ibu":37,"name":"Dirty Blond","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Sparkling golden ale with a complexity of malt and hop flavor brewed in a similar style to a turn of the century Canadian ale.","ibu":31,"name":"Syracuse Pale Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5,"category":"North American Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":92,"name":"Achel Bruin 5°","website":"http://www.achelsekluis.org/"},{"abv":10.095460721831186,"address":"23 South Main Street","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","ibu":89,"name":"Rapture","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":2.6477879756165548,"address":"102 North Market Street","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"Clean, crisp, easy drinking Colonge, Germany style ale. Kolsch's smoothness comes from special Kolsch yeast, German Hallertau hops, a slow fermentation and lager like conditioning.","ibu":103,"name":"Bube's Kolsch","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":5.0999999046,"address":"Hindenburgstrasse 9","category":"Belgian and French Ale","city":"Bayreuth","coordinates":[49.9477,11.5659],"country":"Germany","ibu":1,"name":"Maisel's Weisse Kristall","website":"http://www.maisel.com/"},{"abv":5,"address":"5080 Rue St-Ambroise","category":"British Ale","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":5,"name":"St-Ambroise Oatmeal Stout","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":7.4000000954,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Let us give praise to our maker and glory to his bounty by learning about beer.\" ~ Friar Tuck \n\nThe debut of Monk Madness began with the Johns Locker Stock draft program before being released to the Rogue Nation in the autumn of 2006 in 22-ounce bottles and kegs. Five layers of malt create a complex, slightly sweet flavor balanced by five different hop varieties. A versatile and robust ale, we recommend pairing this with spicy foods, stong cheeses, and/or with dessert. \n\n\nMonk Madness Ale is brewed with 12 ingredients: 2-row Pale, Belgian Munich, Belgian Special B, Weyermann Melonodon, and Amber Malts; Belgian Nobles, Chinook, Amarillo, Centennial, and Summit Hops; along with free-range coastal water and Rogues proproetary PacMan Yeast. Available in 22 ounce bottles and kegs. Note, Monk Madness was not brewed in the winter of 2007-2008 due to shortages of the speciality malts.","ibu":56,"name":"Monk Madness Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"The satisfying elements of both stout and coffee come together in this full-bodied treat. A marriage of Sumatra's best with rich chocolate and roasted malt provides for a truly enlightening beer.","ibu":73,"name":"Java Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.25,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams® Pale Ale is a delicious, lighter bodied beer with a delightfully fresh taste. Its unique blend of two row malts add a rich harmony of sweet flavors that are complimented by the traditional earthy hop character imparted by authentic British hops. The fermentation character of the ale yeast adds a rich bouquet of fruit and ester notes that add another layer of complexity to this popular style","ibu":46,"name":"Samuel Adams Pale Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":12.125124863032092,"address":"Route de la Marana","city":"Furiani","coordinates":[42.6483,9.4529],"country":"France","ibu":107,"name":"Ambrée / Chestnut Beer"},{"abv":11.814569227909107,"address":"4301 Leary Way NW","category":"North American Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":116,"name":"Mongoose IPA","state":"Washington"},{"abv":5.3000001907,"address":"1221 East Pike Street","category":"German Lager","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":56,"name":"Ambrosia Maibock","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":10.708029837857062,"country":"Netherlands","ibu":74,"name":"Lager Beer","website":"http://www.heineken.com/"},{"abv":4.8000001907000005,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Our first venture into organically-produced beer, Mothership Wit Organic Wheat Beer elevates the zesty Wit or White beers of Belgium. Our far-flung Beer Rangers affectionately refer to our Fort Collins brewery as the Mothership, a name that conjures images of earth shot from space and the interconnectivity of it all. Mothership Wit is brewed with wheat and barley malt, as well as coriander and orange peel spicing resulting in a balance of citrus and sour flavors held in suspension by a bright burst of carbonation.","ibu":94,"name":"Mothership Wit","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":3.018284529449742,"address":"3435 Cesar Chavez #227","city":"San Francisco","coordinates":[37.7481,-122.419],"country":"United States","ibu":116,"name":"Coney Island Lager","state":"California"},{"abv":1.7242666904149384,"address":"7791 Egg Harbor Road","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":118,"name":"Lighthouse Light","state":"Wisconsin"},{"abv":10.889090048557637,"category":"North American Lager","city":"Oconomowoc","coordinates":[43.1117,-88.4993],"country":"United States","ibu":15,"name":"Amber Rye Lager","state":"Wisconsin"},{"abv":3.1974647788890764,"city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":48,"name":"Adler Bräu Marquette Pilsner","state":"Wisconsin"},{"abv":3.666981107162438,"city":"Fairfax","coordinates":[37.9871,-122.589],"country":"United States","ibu":52,"name":"Kölsch","state":"California"},{"abv":6.47696285846672,"address":"119 South Front Street","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":57,"name":"Canadian Blonde Ale","state":"Michigan"},{"abv":8.354765735711865,"address":"1075 Country Lane","category":"North American Ale","city":"Ishpeming","coordinates":[46.5015,-87.679],"country":"United States","ibu":17,"name":"Jasper Brown Ale","state":"Michigan"},{"abv":14.212007314617015,"address":"8201 NE Birmingham Road","category":"North American Lager","city":"Kansas City","coordinates":[39.1551,-94.482],"country":"United States","ibu":112,"name":"Hofbrauhaus Brewery & Biergarten Vienna Velvet","state":"Missouri"},{"abv":0.7718108384402056,"address":"105 South Second Street","category":"North American Lager","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":11,"name":"Lager","state":"Wisconsin"},{"abv":10.215462402524095,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":3,"name":"Colonel Kolsch","state":"Wisconsin"},{"abv":7.8000001907000005,"address":"Tallinna mnt.2","category":"North American Ale","city":"Saku","coordinates":[59.3014,24.6679],"country":"Estonia","ibu":0,"name":"Porter"},{"abv":3.573862948173032,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":26,"name":"Schlafly Tripel","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":8,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":114,"name":"La Trappe Tripel","website":"http://www.latrappe.nl/"},{"abv":0.7842137752524136,"address":"An der Knigsbach 8","city":"Koblenz","coordinates":[50.3216,7.5862],"country":"Germany","ibu":101,"name":"Pils","state":"Rheinland-Pfalz"},{"abv":12.292274568185759,"address":"Lancaster Road","category":"British Ale","city":"Gateshead","coordinates":[54.9548,-1.6576],"country":"United Kingdom","ibu":114,"name":"Angel Ale","state":"Tyne and Wear"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":77,"name":"Old Stock Ale 2001","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":3.2308301943899043,"address":"1860 Schell Road","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":75,"name":"Caramel Bock","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":8,"address":"Nieuwbaan 92","city":"Merchtem-Peizegem","coordinates":[50.985,4.2226],"country":"Belgium","ibu":119,"name":"Satan Gold","state":"Vlaams Brabant"},{"abv":8.5,"city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":86,"name":"Golden Triangle Triple","state":"California"},{"abv":4.4600000381000005,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":27,"name":"Lucky U Denver Special Bitter","state":"Colorado"},{"abv":9.8000001907,"city":"Redmond","coordinates":[47.6701,-122.118],"country":"United States","ibu":70,"name":"Wild Banshee Barleywine","state":"Washington"},{"abv":10.600000381000001,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"The style was first brewed in England for the Russian Czar and it is the king of stouts. Plenty of big malt flavors- chocolate and roasted- and high alcohol with lower carbonation and mild hops. \n\nWe brewed this beer with double the malts and four times the hops of regular stouts!\n\n\nOtter Creek Russian Imperial Stout clocks in around 10% ABV- a beer to be savored responsibly. True to style, this beer will last for years so you may want to stock up on a few bottles for your cellar while it's available.\n\n\nRussian Imperial Stouts pair well with creamy cheeses such as camembert (we recommend Vermont-made!), decadent chocolate desserts, or a hearty meal.","ibu":112,"name":"Otter Creek Russian Imperial Stout","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":5.5,"address":"404 South Figueroa Street #418","category":"North American Ale","city":"Los Angeles","coordinates":[34.0532,-118.256],"country":"United States","description":"Light amber color and a mild malty background. Well-hopped featuring Cascade hops with a distinct floral finish.","ibu":80,"name":"Bonaventure Pale Ale","state":"California","website":"http://www.bonaventurebrewing.com/"},{"abv":6.0999999046,"address":"105 East State Street","category":"British Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A dark rich full-bodied stout with a dense creamy head. Full of character and very satisfying.","ibu":61,"name":"State Street Oatmeal Stout","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":13.291843264168484,"address":"17605 Monterey Road","category":"British Ale","city":"Morgan Hill","coordinates":[37.1553,-121.676],"country":"United States","ibu":107,"name":"El Toro Negro Oatmeal Stout","state":"California","website":"http://www.eltorobrewing.com/"},{"abv":12,"address":"215 1/5 Arch St.","category":"North American Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is our Imperial Stout that we age in conditioning tanks with oak staves. This adds a classic character of old world aging with out the Bourbon tones. This black ale is about 12% alc. and very rich in roasted and chocolate malt tones. Velvety smooth and able tobe aged for years. For now this will be a Seasonal Beer Offering. \n\n\nAll Beers to be bottle conditioned and Refermented.","ibu":81,"name":"Big Black Voodoo Daddy","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":10,"address":"638 W. 4th Street","category":"North American Ale","city":"Winston-Salem","coordinates":[36.0973,-80.2509],"country":"United States","ibu":19,"name":"Sexual Chocolate","state":"North Carolina","website":"http://www.foothillsbrewing.com/"},{"abv":11.901857536772303,"address":"1872 North Commerce Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":94,"name":"Lakefront IPA","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":7.3000001907,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"We started with the same grain bill as Scratch #12 (IPA) and substituted 25% rye for the base malt giving Scratch #18 a creamy mouth feel and a full-bodied taste.\n\n\nMount Hood and Chinook hops are combined here for flavoring and aroma, and Warrior hops are used for overall bitterness.\n\n\nThe rye plays off the Mount Hood hops, with both ingredients releasing an herbal, spicy flavor. Cheers.","ibu":62,"name":"Scratch #18 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.6999998093,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"Our pilsner is a traditional Northern German Style Pilsner. It has a fantastic malty aroma with a slight spice from the hops. The head is brilliant white and floats on the clean pale lager. The sparkling mouthfeel gives way to a soft malt sweetness that is followed by a long, dry, crisp finish. The balanced clean finish taunts the mouth to take another drink. Lagered for a minimum of 8-12 weeks to ensure smoothness and drinkability.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":83,"name":"Baron Pilsner","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.3000001907,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Brown is brewed to accentuate the sweeter, rounder notes derived from six different malts, including a de-husked chocolate malt that adds a hint of chocolate. The blend of these malts produces a beer that is complex and delicious without being heavy. This drinkable beer is perfect as a session beer or paired with foods.\n\n\nThis is the first year-round Harpoon beer the brewery has released in almost a decade. While the craft beer industry has seen a growing trend in \"extreme\" beers, the brewers of Harpoon wanted to create something they could sit down and enjoy over an extended period of time - a session beer. At 4.3% alcohol by volume, the Harpoon Brown Ale has the lowest alcohol content of all Harpoon beers.\n\n\nHarpoon Brown Ale will be available in bottles and on draft beginning in March 2007. An evening of celebrations to toast the beer's release will be held at locations throughout New England on Thursday, March 8th, including tastings at Harpoon's breweries in Boston, MA and Windsor, VT","ibu":103,"name":"Harpoon Brown Session Ale","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.4000000954,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Beach Bum Blonde Ale is a traditional American \n\nblonde ale with a slightly spicy hop note and balanced malty flavor.","ibu":22,"name":"Beach Bum Blonde Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":14.893554365709832,"address":"980 NE Fourth Street","category":"North American Ale","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":63,"name":"Chehalem Mountain IPA","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":9,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"Produced in the tradition of 18th Century English brewers who supplied the court of Russia's Catherine the Great, Old Rasputin seems to develop a cult following wherever it goes. It's a rich, intense brew with big complex flavors and a warming finish.","ibu":94,"name":"Old Rasputin Russian Imperial Stout","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":10,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":18,"name":"Fred","state":"Oregon"},{"abv":0.04658687355603708,"address":"1441 Cartwright Street","category":"German Ale","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":50,"name":"Hefeweizen","state":"British Columbia"},{"abv":13.322883276721745,"address":"2598 Telegraph Avenue","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":87,"name":"Organic Belgian Ale","state":"California"},{"abv":7.3000001907,"address":"600 Brea Mall","category":"Irish Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":117,"name":"Jeremiah Red","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":8.1000003815,"address":"800 East Lincoln Avenue","category":"North American Lager","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":29,"name":"Double Pilsner","state":"Colorado"},{"abv":5.5,"address":"Rijksweg 33","category":"North American Ale","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":27,"name":"Petrus Speciale","state":"West-Vlaanderen"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":109,"name":"Bigfoot 2002","state":"California","website":"http://www.sierranevada.com/"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":36,"name":"Old Foghorn 2001","state":"California"},{"abv":0.7043316757847728,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":68,"name":"Espresso Porter","state":"Nebraska"},{"abv":3.7869155374643637,"address":"4607 Wedgewood Boulevard","category":"British Ale","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":108,"name":"Big Ale","state":"Maryland"},{"abv":14.994424144784182,"address":"624 Ludington Street","category":"Irish Ale","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":59,"name":"Peninsula Porter","state":"Michigan"},{"abv":7.630578879921241,"address":"2145 Blake Street","city":"Denver","coordinates":[39.7557,-104.993],"country":"United States","ibu":58,"name":"Barleywine","state":"Colorado"},{"abv":2.47629976639961,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":73,"name":"Guinea Pig Amber Ale","state":"Nebraska"},{"abv":13.946471990042127,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":80,"name":"Christmas Ale","state":"Wisconsin"},{"abv":5,"address":"1075 East 20th Street","category":"German Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur Summerfest® is a refreshing, pilsner-style lager. Its incredible smoothness comes from an extra-long lagering period. Lighter in body than our ales but just as complex in character, Summerfest® quenches your thirst with big aroma and a tangy hop bite. \n\n\nGOLD MEDAL WINNER\n\nCalifornia State Fair (European Light Lagers: 1999)","ibu":65,"name":"Summerfest","state":"California","website":"http://www.sierranevada.com/"},{"abv":5.1999998093,"address":"5 Bartlett Bay Road","category":"German Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"THE Hefeweizen. Unfiltered and unfettered, Circus Boy is a unique and refreshing American-style Hefeweizen. Is he a who? Or a what? Or perhaps some of both? \n\n\nBrewed with organic lemongrass.","ibu":25,"name":"Circus Boy","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.9000000954,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Spicy and Bold, a big Christmas cookie of a beer.\n\nSamuel Adams® Old Fezziwig® Ale is the Christmas cookie of beer. Bursting with spices of the season and a remarkably full body, it helps those long winter nights pass much quicker. The full body hits the palate first with a depth of malt character ranging from sweeter toffee and caramel notes to the more dark, roasty chocolate notes. Then come the spices in full force. Cinnamon, ginger and orange peel dance on the tongue bringing with them the celebratory spirit that goes hand in hand with the season.","ibu":103,"name":"Samuel Adams Old Fezziwig Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":7.1999998093,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This Belgian-style strong golden ale showcases a variety of the ingredients and brewing methods that help differentiate Flying Fish beers. The Grand Cru is fermented at a higher temperature than our other beers adding an undercurrent of fruitiness (although there is no fruit in the beer). Very lightly filtered, the Grand Cru exhibits complex mouthfeel, strong malt flavors, a spicy hop presence and a soothing alcohol warmth, followed by a clean, dry finish. It is excellent with food as well as served by itself.","ibu":62,"name":"Grand Cru Winter Reserve","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5.5999999046,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Ice, introduced in 1993, was the world’s first Ice-Brewedâ„¢ beer and the most successful new brand introduction in Canadian brewing history. Labatt Ice is a fully fermented beer that is allowed to mature at cold temperatures. Labatt Ice uses selected North American hops to complement its smooth, full flavour.","ibu":61,"name":"Labatt Ice","state":"Ontario"},{"abv":4.466980719433994,"address":"2598 Telegraph Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8634,-122.259],"country":"United States","ibu":45,"name":"Red Oak Ale","state":"California"},{"abv":6.111069264763248,"category":"North American Ale","city":"Arlington Heights","coordinates":[42.0884,-87.9806],"country":"United States","ibu":63,"name":"Stockyard Stout","state":"Illinois"},{"abv":7.692864277551296,"address":"208 East River Drive","category":"Other Style","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":51,"name":"Cherry Ale","state":"Iowa"},{"abv":9.406459979021442,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":68,"name":"Black Cobra Stout","state":"Iowa"},{"abv":9.390263210329783,"category":"German Ale","city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":96,"name":"Weisse","state":"Bayern"},{"abv":2.267094210970119,"address":"Am Deich 18-19","category":"North American Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":59,"name":"St.Pauli Girl Beer","state":"Bremen"},{"abv":14.395278896831696,"category":"Irish Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":75,"name":"Black Hook Porter","state":"Washington","website":"http://www.redhook.com/"},{"abv":12.006082826602976,"address":"Am Brunnen 2","city":"Wolnzach","country":"Germany","ibu":7,"name":"Nikolausbier Altfränkisches Dunkel","state":"Bayern"},{"abv":8.566117223576246,"address":"CZ-294 15 Klter Hradit nad Jizerou","city":"Klter Hradit nad Jizerou","country":"Czech Republic","ibu":78,"name":"Tmavé 10% / Dark Beer"},{"abv":5.0999999046,"address":"1809 Larkspur Landing Circle","category":"North American Lager","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":58,"name":"Hefe Weiss","state":"California"},{"abv":14.54108593932805,"address":"3703 North Main Street","category":"North American Ale","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":15,"name":"Lake Effect Pale Ale","state":"Indiana"},{"abv":1.3337063333573962,"address":"5080 Rue St-Ambroise","category":"North American Ale","city":"Montreal","coordinates":[45.4682,-73.5913],"country":"Canada","ibu":35,"name":"Griffon Brown Ale","state":"Quebec","website":"http://www.mcauslan.com"},{"abv":2.3253083336176914,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":73,"name":"Beaver Tail Brown Ale","state":"Colorado"},{"abv":11.924520082767291,"address":"234 Dallas Street West","category":"German Lager","city":"Dallas","coordinates":[45.2585,-91.8181],"country":"United States","ibu":9,"name":"Copperhead Premium Ruby Lager","state":"Wisconsin"},{"abv":4.447435755878484,"address":"1875 South Bascom Avenue #700","category":"North American Lager","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":101,"name":"Faller Wheat","state":"California"},{"abv":0.11396174289437067,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":35,"name":"Northwest Pale Ale","state":"North Carolina"},{"abv":14.938783785695033,"address":"906 Washington Street","category":"British Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":70,"name":"Holiday Scottish Strong Ale","state":"California"},{"abv":5.6999998093,"address":"856 10th Street","category":"Irish Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":6,"name":"Storm Cellar Porter","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":5,"address":"26 Osiers Road","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":12,"name":"Ramrod Special Bitter Ale","website":"http://www.youngs.co.uk"},{"abv":4.745568311072706,"category":"Other Style","city":"Belmont","country":"United States","ibu":50,"name":"Full Boar","state":"CA"},{"abv":10.5,"address":"1680-F East Waterloo Rd.","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Smooth malt flavors of this golden Belgian-style abbey ale are complimented by traditional imported ingredients. A slightly spicy and complex flavor makes this European celebration-style beer unique and refreshing","ibu":26,"name":"Gulden Fraug Belgian Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6,"address":"2050 Yavapai Dr","category":"Irish Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":47,"name":"King Crimson","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":4.5999999046,"address":"1860 Schell Road","category":"North American Lager","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","description":"This beer has changed hands a bit over its 60+ year history - first brewed by the Grain Belt Brewery in Minneapolis, then by the now-defunct Minnesota Brewing and currently by August Schell Brewing Co. in New Ulm.","ibu":77,"name":"Grain Belt","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Country of origin: India \n\nBeer type: Lager \n\nAlcohol content by volume: < 7.5% by volume \n\nCarbohydrates: - \n\nTaste: full bodied malty flavour \n\nMalts: Indian malts, 6 row barley \n\nHops: German hop extract (CO2) & Indian hop palate \n\nColour: Golden yellow \n\nAvailability: India - all seasons, South East Asia, Middle East and Europ \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml and 330 ml Indian standard glass amber bottle ; 500 ml Non returnable bottles ; 500 ml cans and 330 ml cans ( in select markets) \n\n \n\nhttp://www.sabmiller.in/brands_haywards_5000.html","ibu":63,"name":"Haywards 5000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6.0999999046,"address":"91 S Royal Brougham Way","category":"North American Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Mahogany in color, this full-bodied ale features a floral aroma and malty finish for a taste that's the perfect accompaniment to a crisp autumn afternoon.","ibu":8,"name":"Pyramid Broken Rake","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":8,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"Amber ale with Palmetto berries and hibiscus.","ibu":78,"name":"Pays du Soleil","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"British Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Full Curl Scotch Ale is brewed in the traditional Wee Heavy Scotch strong ale style. (This is not to be confused with the lighter-bodied Scottish ale style.) All about malt, Full Curl pours dark brown with a tan head. Its medium body provides sustenance while its strength boosts courage. With a stiff mug of Full Curl under your belt, you may even have what it takes to don a kilt.","ibu":39,"name":"Full Curl Scotch Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.6999998093,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An Extra Special Farmhouse Ale. A Bam celebration of excess. More malt, more hops, same vivacious personality.","ibu":80,"name":"E.S. Bam","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":3.3099999428,"category":"North American Lager","country":"Japan","description":"From Kirin's Site:\n\n\nWith just 95 calories and full-flavor, Kirin Light is one of the few great world-class Lights.\n\n\nYou might think Kirin Light would be a lightweight contender, content to let his sturdier siblings steal the show. But this fitness-minded newcomer won't compromise. You won't have to compromise either - with just 95 calories and full flavor, Kirin Light is one of the few great world-class lights.\n\n\nWhat makes Kirin Light great\n\nCanadian barley malt, Czech hops, rich golden color","ibu":0,"name":"Kirin Light","website":"http://www.kirin.com/"},{"abv":4,"address":"32295 State Route 20","category":"British Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"An English style ale, copper in color with subtle English malt hints balanced nicely with fresh Washington grown Yakima Valley hops.","ibu":25,"name":"Spitfire Best Bitter","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":4,"address":"32295 State Route 20","category":"German Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A Bavarian style Hefeweizen, a cloudy brew with slight hints of bannana and clove. Light and refreshing.","ibu":2,"name":"Heat Seeker Hefe","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":5.4000000954,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber, full-bodied lager made in the traditional style with German hops. Brewed in early August and put on tap with a keg of the previous years batch by October of each year. This beer is brewed in memory of \"Lewis\", the owners beer-drinking long-haired Dachsund, who passed away at 17-1/2 on 8/17/99.","ibu":20,"name":"Lewmeister Oktoberfest","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5.3000001907,"category":"Other Style","city":"Hereford","coordinates":[52.056,-2.7175000000000002],"country":"United Kingdom","description":"Strongbow is a brand of cider manufactured in England by Bulmers. It is the UK's most popular cider[citation needed], accounting for more than half of the draught cider sold in British pubs. Strongbow is also unique in that it is produced with a Royal Warrant.","ibu":80,"name":"Strongbow Cider"},{"abv":4.5999999046,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":58,"name":"Corona Extra","website":"http://www.gmodelo.com.mx/"},{"abv":7.5,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":35,"name":"Hitachino Nest Espresso Stout","state":"Kanto"},{"abv":10.408494777204726,"address":"3ra.Av.Norte Final, Finca El Zapote, Zona 2","category":"German Lager","city":"Guatemala City","coordinates":[14.6133,-90.5353],"country":"Guatemala","ibu":100,"name":"Moza"},{"abv":4.642847560842291,"address":"13450 - 102 Avenue","category":"German Lager","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":54,"name":"Iceberg Copper Bock","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":11.035559474126831,"address":"Wilhelm-Schussen-Strae 12","category":"German Ale","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":101,"name":"Weiße","state":"Baden-Wrttemberg"},{"abv":8.3999996185,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":66,"name":"Abtskelder Tripel","state":"Nebraska"},{"abv":9.30984280715505,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":48,"name":"Mönchshof Kellerbräu","state":"Bayern"},{"abv":7.1999998093,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"An artisan amber ale brewed in the Flanders tradition. Deep amber with earthy caramel, spice, and sour fruit notes developed through natural barrel aging. Unfiltered, unpasteurized and blended from barrels ranging in age from two to ten months.","ibu":7,"name":"La Roja","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":6.5,"address":"B-1350 Jauche","city":"Jauche","coordinates":[50.6818,4.9547],"country":"Belgium","ibu":71,"name":"Grottenbier","state":"Brabant Wallon"},{"abv":5.3186474871201135,"address":"42 Slateford Road","city":"Edinburgh","coordinates":[55.9358,-3.2297000000000002],"country":"United Kingdom","ibu":61,"name":"Golden Promise Traditional Scottish Ale","state":"Scotland"},{"abv":5,"address":"110 Wisconsin Dells Parkway South","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":61,"name":"Dunkel Lager","state":"Wisconsin"},{"abv":6.5,"category":"Irish Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":18,"name":"Not Tonight Honey Porter","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":8.5,"address":"Unicorn Brewery","city":"Stockport","coordinates":[41.499,-72.9007],"country":"United Kingdom","ibu":68,"name":"Old Tom Barley Wine","state":"Cheshire"},{"abv":2.563650051131401,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":89,"name":"Nut Brown","state":"California"},{"abv":4.0999999046,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":56,"name":"Corona Light","website":"http://www.gmodelo.com.mx/"},{"abv":10,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","ibu":21,"name":"Paradox Speyside","website":"http://brewdog.com/"},{"abv":4.5,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"Other Style","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Razberry Wheat is crisp with a refreshing tartness and the fresh aroma of raspberries. This salmon pink ale is just the thing to transport you to berry time in the summer.","ibu":115,"name":"Cascade Razberry Wheat","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":7.4000000954,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","ibu":61,"name":"Big Hop Harvest Ale","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":7.44118760802616,"address":"One Busch Place","category":"Belgian and French Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":31,"name":"Bud Light Golden Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":10,"category":"North American Ale","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","description":"Ladies and Gentlemen, Shmaltz Brewing Co. is proud to introduce Bittersweet Lenny's R.I.P.A. Brewed with an obscene amount of malts and hops. Shocking flavors - far beyond contemporary community standards. We cooked up the straight dope for the growing minions of our nation's Radical Beer junkies. Judges may not be able to define \"Radical Beer,\" but you'll damn well know it when you taste it. Bruce died, officially declared a pauper by the State of California, personally broken and financially bankrupt simply for challenging America's moral hypocrisies with words. The memorial playbill read: \"Yes, we killed him. Because he picked on the wrong god.\" -Directed by, the Courts, the Cops, the Church... and his own self-destructive super ego. Like Noah lying naked and loaded in his tent after the apocalyptic deluge: a witness, a patron saint, a father of what was to come. Sick, Dirty, Prophetic Lenny: a scapegoat, a martyr, a supreme inspiration.","ibu":3,"name":"Bittersweet Lenny R.I.P.A.","state":"California","website":"http://www.shmaltz.com/"},{"abv":7.763788956794816,"address":"700 North Pennsylvania Blvd.","category":"North American Lager","city":"Wilkes Barre","coordinates":[41.2557,-75.8583],"country":"United States","ibu":117,"name":"Lionshead Light","state":"Pennsylvania","website":"http://www.lionbrewery.com/"},{"abv":5.0999999046,"address":"2944 SE Powell Blvd","category":"German Lager","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Our Czech style pilsner is all malt all the time-no choicest rice or corn syrup here! Whole flower Czech Saaz hops balance the delicate honey flavor of our organic Canadian grown pilsner malt creating a golden beer with depth of character.","ibu":13,"name":"HUB Lager","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":3.3095212871899093,"category":"North American Ale","city":"Auburn","coordinates":[38.8966,-121.077],"country":"United States","ibu":41,"name":"Oatmeal Stout","state":"California"},{"abv":1.879291006703887,"address":"200 Village Green","category":"German Lager","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":80,"name":"Bockbier","state":"Illinois"},{"abv":4,"address":"150 Simcoe Street","category":"North American Lager","city":"London","coordinates":[42.9778,-81.2467],"country":"Canada","description":"Labatt Blue Light was introduced in 1983 as a lower alcohol, lower calorie version of Canada’s most popular brand. Blue Light uses specially selected North American aromatic hops and the same strain of lager yeast as the one used to produce Labatt Blue. The result is a crisp, clean and delicately balanced beer, with a slight sweetness and citrus-like hop character.","ibu":115,"name":"Labatt Blue Light","state":"Ontario"},{"abv":12.499253930454396,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":37,"name":"IPA","state":"Massachusetts"},{"abv":11.101458372877484,"address":"75-5629 Kuakini Highway","category":"Other Style","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":108,"name":"Lilikoi Wheat Ale","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":10.907496816704327,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":38,"name":"Pale","state":"California"},{"abv":8.5,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":84,"name":"Andelot Mystique","state":"Oost-Vlaanderen"},{"abv":6.875724467543931,"address":"1524 West Marine View Drive","category":"North American Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":7,"name":"Sequoia Red","state":"Washington"},{"abv":4.8000001907000005,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":13,"name":"Loki","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":6.3000001907,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":52,"name":"The Immortal IPA","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":9.1999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":27,"name":"471 Double IPA","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4,"address":"765 Center Boulevard","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":46,"name":"Kent Lake Kolsch","state":"California"},{"abv":5,"address":"Marsstrae 46-48","city":"München","country":"Germany","ibu":74,"name":"Pils","state":"Bayern"},{"abv":11.600000381000001,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":49,"name":"Harvest Ale 2006","state":"Manchester"},{"abv":11.699999809,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":4,"name":"Old Stock Ale 2007","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":6,"name":"Flemish Primitive Wild Ale (Pin Head)","state":"Oost-Vlaanderen"},{"abv":7,"address":"901 S. Bond St.","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"Just like the miracle cure-alls of old, Professor Wagner’s Imperial Pilsner possesses no verifiable medicinal qualities whatsoever. And yet, taken internally, this golden elixir is guaranteed to cure what ails you. Snake Oil is a crisp, Medium-bodied lager with a complex maltiness and heavy hop presence – well-rounded and refreshing.","ibu":74,"name":"Snake Oil","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5,"address":"Am Brauhaus 8b","category":"German Lager","city":"Dresden","country":"Germany","description":"dark, bottom-fermented, more on the sweet side, made of 100% barley malt according to ther description, very good to meat","ibu":86,"name":"Waldschlösschen Dunkel","state":"Sachsen","website":"http://www.waldschloesschen.de"},{"abv":4.8000001907000005,"address":"1100 New York Ave, NW","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness","ibu":34,"name":"Capitol Kolsch","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":6.341369748851101,"category":"North American Ale","city":"Trowbridge","coordinates":[51.3201,-2.208],"country":"United Kingdom","ibu":17,"name":"IPA","state":"Wiltshire"},{"abv":14.825536837177458,"address":"2617 Water Street","category":"North American Lager","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":83,"name":"Special Beer","state":"Wisconsin"},{"abv":5.393076196977447,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":51,"name":"Adler Bräu Downtown Brown","state":"Wisconsin"},{"abv":7.4022572180839665,"address":"103 West Michigan Avenue","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":46,"name":"Lake Superior ESB","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":11.058863680940354,"address":"Chause de Mons 28","city":"Pipaix","coordinates":[50.5779,3.5554],"country":"Belgium","ibu":7,"name":"Clovis","state":"Hainaut"},{"abv":3.25324528092319,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":20,"name":"Alt","state":"Wisconsin"},{"abv":2.919091596981028,"city":"Biloxi","coordinates":[30.396,-88.8853],"country":"United States","ibu":38,"name":"Biloxi Blonde","state":"Mississippi"},{"abv":14.266619762653253,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":94,"name":"Depot Pils","state":"Michigan"},{"abv":2.9099242219497845,"address":"200 East Michigan Avenue","category":"North American Lager","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":37,"name":"Winter Wheat","state":"Michigan"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":60,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":10,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Pilgrim’s Dole is a barleywine-style ale made with fifty percent wheat malt, or what we at New Holland call a wheatwine. Pilgrim’s Dole blends warming and slightly sweet flavors with a unique caramelized character. It would be an excellent accent to nutty dishes, fruit crisps or creme brulee.","ibu":113,"name":"Pilgrim's Dole","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":6,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Scotch Ale is a full-bodied, malty sweet ale. True to Scottish brewing tradition, this malty flavor and deep copper brown color are a result of Scottish two row malt and roasted barley.","ibu":90,"name":"Saranac Scotch Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.8600001335,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This intensely dark Kulmbacher style lager has a superb malt complexity with the distinctive flavors and aromas of coffee, caramel and chocolate.\n\n\nA renowned smoothness and a creamy, tan head make it a world champion.","ibu":48,"name":"Black Bavarian Lager","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":5.5450250198262,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":63,"name":"Hefeweißbier","state":"Bayern"},{"abv":14.784801147033335,"address":"5919 Chicago Road","category":"British Ale","city":"Warren","coordinates":[42.5278,-83.0472],"country":"United States","ibu":85,"name":"120 Shilling Scotch Ale","state":"Michigan","website":"http://www.kbrewery.com/"},{"abv":2.332744506294394,"address":"18 East 21st Street","category":"Irish Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":69,"name":"Porter","state":"Nebraska"},{"abv":8.3000001907,"address":"Naamsesteenweg 469","city":"Kerkom","coordinates":[50.7763,5.166],"country":"Belgium","ibu":93,"name":"Winterkoninkse","state":"Limburg"},{"abv":1.3826141167036543,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":5,"name":"India Pale Ale","state":"California"},{"abv":14.136879123012552,"address":"57 Hamline Avenue South","city":"Saint Paul","coordinates":[44.9398,-93.1568],"country":"United States","ibu":24,"name":"Knockadoon Irish Ale","state":"Minnesota"},{"abv":0.34892303785086454,"address":"701 Evans Street","category":"North American Ale","city":"Greenville","coordinates":[35.6083,-77.3732],"country":"United States","ibu":9,"name":"Buccaneer Brown Ale","state":"North Carolina"},{"abv":3.5,"address":"451 Wilmington-West Chester Pike","category":"North American Lager","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":118,"name":"Light Lager","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":14.925575301616734,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":84,"name":"Klout","state":"California"},{"abv":10,"address":"2001 Second Street","category":"German Lager","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":85,"name":"Doppelbock","state":"California"},{"abv":3.533484820818579,"city":"Austin","coordinates":[30.2672,-97.7431],"country":"United States","ibu":47,"name":"Dubbel Ale","state":"Texas"},{"abv":4.877297509694732,"address":"4607 Wedgewood Boulevard","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":12,"name":"Stone Beer","state":"Maryland"},{"abv":5.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Doggie Style Pale Ale \n\nMeet the Alpha of the pack ... Flying Dog Classic Pale Ale is brilliant amber in color and dry hopped with buckets full of Cascades for an unrivaled hop flavor and aroma. This is a true representation of an American-style pale ale, using the finest ingredients. Flying Dog Classic Pale Ale is a multi-award winning product and is consistently ranked as one of the best pale ales in the U.S. This is what craft beer is all about.","ibu":117,"name":"Classic Pale Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":13.047333140997067,"address":"1933 Davis Street #177","category":"German Lager","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":82,"name":"Maibock","state":"California","website":"http://drinkdrakes.com/"},{"abv":7.60915426439743,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":16,"name":"Adler Bräu Tailgate Amber","state":"Wisconsin"},{"abv":11.019597271383248,"address":"4057 Pennsylvania Avenue","category":"North American Ale","city":"Kansas City","coordinates":[39.0534,-94.5919],"country":"United States","ibu":34,"name":"Deluxe Cream Stout","state":"Missouri"},{"abv":3.1353183138988006,"address":"Kreuzstrae 4-10","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":74,"name":"Organic Ur Pils","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":2.667661232333247,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":38,"name":"Old Knucklehead 1999","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":7.214224662004838,"address":"842 East 65th Street","category":"North American Ale","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":66,"name":"Stout","state":"Indiana"},{"abv":12.570330974625834,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":24,"name":"Blonde Light","state":"South Carolina"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","description":"It is made using 100% Granny Smith apples. This cider has a mouth-watering flavor that is tangy and tart, with just a touch of sweetness.","ibu":53,"name":"Woodchuck Granny Smith Varietal Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":4.5,"address":"429 W. 3rd St","category":"North American Ale","city":"Williamsport","coordinates":[41.238,-77.0103],"country":"United States","description":"Hammerin’ Ale is the Barbarian’s first beer. Brewed to be a well-balanced, easy-going beer, Hammerin’ Ale comes from a rather simple recipe which yields a deep amber color and a sublime balance of malt character and hop flavors. This beer goes very well with grilled meats and is meant to be enjoyed year-round. Hammerin’ Ale is an excellent choice for “Barbarians” who are new to craft beer.","ibu":69,"name":"Hammerin' Ale","state":"Pennsylvania","website":"http://www.bavarianbarbarian.com"},{"abv":6.4000000954,"address":"5429 Shaune Drive","category":"Other Style","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"English Olde Ale. Traditionally malty with the warming sensation of alcohol, Olde Ales are brewed in the fall as winter warmers.\n\n\nBrewed in the style of an English Olde Ale, this ale balances the sweet heady aroma of spruce tips with the clean crisp finish of noble hops. Its malty richness is complemented by the warming sensation of alcohol.\n\n\nAlaskan Winter is made from glacier-fed water, Sitka spruce tips and a generous blend of the finest quality European and Pacific Northwest hop varieties and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year.","ibu":61,"name":"Winter Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":6.5,"address":"5429 Shaune Drive","category":"Irish Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Smoked Beer. Known as \"rauchbier\" in Germany, smoke-flavored beers were virtually unknown in the U.S. until Alaskan Smoked Porter was developed in 1988.\n\n\nThe dark, robust body and pronounced smoky flavor of this limited edition beer make it an adventuresome taste experience. Alaskan Smoked porter is produced in limited \"vintages\" each year and unlike most beers, may be aged in the bottle much like fine wine.\n\n\nWater, five types of malt, 2 varieties of hops and yeast with no adjuncts, no preservatives and no pasteurization. Our glacier-fed water originates in the 1,500 square-mile Juneau Ice Field. Prior to brewing, selected malts are smoked in small batches under carefully controlled conditions in a commercial food smoker using local alder wood.","ibu":90,"name":"Alaskan Smoked Porter","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":6.708255076628077,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete's Wicked Strawberry Blonde is truly a unique beer experience. Reward yourself with our golden lager made of the finest pale and wheat malts and Cluster Hops, with a kiss of natural strawberry flavor.","ibu":70,"name":"Pete's Wicked Strawberry Blonde","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":5.0999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A beer lover's dream! This classic irish stout and amber lager blend is malty, yet pleasantly bitter with many complex flavor notes. Look for a deep brown-black color and full-body.","ibu":107,"name":"Saranac Black & Tan","state":"New York","website":"http://www.saranac.com"},{"abv":14.5,"address":"5763 Arapahoe Avenue","category":"British Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"A super-caramelly, oak-aged English-style strong ale. The oak is very apparent in this rich and high gravity ale. Additional depth and complexity result in a woody and cask-like nose, with a pronounced vanilla flavor on the palate. As of 2007, the use of additional roasted malt has resulted in subtle bitternes to balance the natural sweetness.","ibu":41,"name":"Samael's Oak-aged Ale","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":8,"address":"701 Galveston Ave","category":"British Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Break out the bagpipes with your lederhosen! We’re proud to present our Iron Thistle Scotch Ale – Rahr’s first National Grand Champion winner. This dark, Scottish ale has a bold taste dominated by a smooth, sweet maltiness balanced with a low, hoppy bitterness. So don your kilts and enjoy. Here’s to your health – Slàinte! Prosit!","ibu":14,"name":"Iron Thistle","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":5.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Celtic Copper is a mahogany hued ale with rich malt flavor and subtle hop balance; an excellent choice for those who prefer amber ales.","ibu":45,"name":"Celtic Copper Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":0.26291890303268284,"address":"1022 Main Ave.","category":"North American Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"The slightly roasted flavor and nutty palate with a hint of hops make this beer subtle and drinkable.","ibu":65,"name":"Colorado Trail Nut Brown Ale","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":6,"category":"Belgian and French Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"This pale golden, Belgian-influenced ale is for everyone: Farm Girl, wannabe Farm Girl. In the Belgian Farmhouse tradition, this brew has a dry malt finish and a spiciness that only Belgian yeasts can create. Smooth and well rounded... this one can please anyone in any situation, whether you are on the water, in the sun, or hiding from winter's chill.","ibu":113,"name":"Farm Girl Saison","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"British Ale","city":"Grimstad","country":"Norway","description":"A light session ale, with an assertive hop aroma of E K Golding. Great beer to pair with lots of different food - a good allround.","ibu":5,"name":"Nøgne Ø Bitter","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"From the talented brewers of Midnight Sun comes an incredible, beautifully bright and sunny golden ale. Every sip entices the taste buds with a bold balance of pils malt and noble hops. Midnight Sun Kolsch is a traditional German-style beer that unites the liveliness of an ale with the crispness of a lager for real refreshment any time of year. \n\n\nCreating a beer that truly serves both newcomers to craft beer as well as avid beer aficionados is no easy task. Midnight Sun Kolsch brewers struck gold with this beer...and now you can too. \n\n\nAvailability:\n\nAK - draft (year-round)","ibu":30,"name":"Midnight Sun Kolsch","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":72,"name":"Impromptu Pale Ale","state":"Nebraska"},{"abv":9.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":5,"name":"Brune","state":"Hainaut"},{"abv":5.5,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":93,"name":"Amber Weizen","state":"Washington"},{"abv":5.6999998093,"address":"104 North Lewis Street","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":4,"name":"Saison","state":"Washington"},{"abv":11.373841508242618,"address":"Haldenstrasse 69","category":"North American Lager","city":"Winterthur","coordinates":[47.5077,8.7302],"country":"Switzerland","ibu":116,"name":"Original Ittinger Klosterbräu"},{"abv":10,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":79,"name":"Double Bastard Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":4.252703640394849,"address":"Kreuzstrae 4-10","category":"North American Ale","city":"Mnster","coordinates":[51.9657,7.6214],"country":"Germany","ibu":75,"name":"Jubilate Special Reserve Anniversary Ale","state":"Nordrhein-Westfalen","website":"http://www.pinkus-mueller.de/"},{"abv":10.583915458967718,"address":"320 Pierce St","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":57,"name":"Whiskey Barrel Whitetail Cream Ale","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":5.0999999046,"address":"1001 16th Street #A-100","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":80,"name":"Lucky U ESB","state":"Colorado"},{"abv":6,"address":"Route 4 & 100A","category":"British Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"This robust and malty brew will take the bite from a cold winter night.","ibu":18,"name":"Hibernator","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":4.5,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":108,"name":"Cerveza Sol","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":7.415380197691799,"address":"16 North Brown Street","category":"North American Ale","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":85,"name":"Amber","state":"Wisconsin"},{"abv":6.704978813780552,"address":"Ole Steensgt. 10 Postboks 1530","category":"North American Lager","city":"Drammen","coordinates":[59.7451,10.2135],"country":"Norway","ibu":105,"name":"Classic Special Brew","website":"http://www.aass.no"},{"abv":4.9000000954,"address":"1809 Larkspur Landing Circle","category":"North American Ale","city":"Larkspur Landing","coordinates":[37.9479,-122.511],"country":"United States","ibu":78,"name":"Albion Amber Ale","state":"California"},{"abv":8.568432131038819,"address":"147 West Broadway","category":"German Lager","city":"Salt Lake City","coordinates":[40.7626,-111.895],"country":"United States","ibu":88,"name":"Black Forest Schwarzbier","state":"Utah"},{"abv":3.2294415790132494,"city":"Richmond","coordinates":[37.543,-77.4691],"country":"United States","ibu":2,"name":"Stubborn Mule Barleywine","state":"Virginia"},{"abv":12.383848523162198,"address":"1 Dostal Alley","city":"Central City","coordinates":[39.8019,-105.514],"country":"United States","ibu":109,"name":"Powder Keg Raspberry Porter","state":"Colorado"},{"abv":6.4000000954,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":13,"name":"Maduro","state":"Illinois"},{"abv":4.923581290591948,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":55,"name":"Pale Ale","state":"Illinois"},{"abv":13.023510946145858,"city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":89,"name":"Winter Wheat","state":"Missouri"},{"abv":7.868339762323965,"address":"2100 Locust Street","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":104,"name":"Schlafly Winter ESB","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":1.8259061311030933,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":21,"name":"Missouri Brown Dark Ale","state":"Missouri"},{"abv":9.089399033868993,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":101,"name":"Double Cream Oatmeal Stout","state":"Michigan"},{"abv":3.969197541793432,"address":"1501 Arboretum Drive","category":"North American Lager","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":119,"name":"Fox Light","state":"Wisconsin"},{"abv":9.8000001907,"address":"196 Alps Road","category":"Belgian and French Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"This Belgian IPA has a malt bill of a Belgian Tripel and a hop bill of a Double IPA. The yeast I chose for this beer comes from one of the 7 Trappist breweries.\n\n\nBelieve it or not, this is the first time in my professional brewing career that I have used dextrose (corn syrup) in a Terrapin brew. True to style no doubt.\n\n\n“Monk’s Revenge” (otherwise known as the “Big Nasty”) has all the flavor and aroma of a Double IPA while hidden beneath lies the malt character of a fine Belgian Tripel.\n\n\nI hope you enjoy my interpretation of this very fun style.","ibu":98,"name":"Terrapin Monk's Revenge","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":10.199999809,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Our 12th anniversary brew is a Rye Barleywine. Checking in at 10.2% abv, Twelve is being released in July and through the end of the year. Made from 50% Rye Malt and 50% Barley Malt, this strong ale is extremely viscous. The rye adds a tantalizing note of flavor on the palate with a hint of tartness you've come to expect from Rye. Slightly warm when its young, the beer will age very well, perhap 5 years or more. We're guessing that peak taste will be in the 1 to 2 year old range, with 3 and 4 not far behind. Be sure to lay some down in your collection.","ibu":8,"name":"Twelve","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":12.50321264427563,"category":"German Lager","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":65,"name":"Black Lava Lager","state":"Hawaii"},{"abv":8.22427506645086,"city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":75,"name":"Colorado Kölsch Ale","state":"Colorado"},{"abv":9.972084500483366,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":118,"name":"Stout","state":"California"},{"abv":5.8000001907000005,"city":"Aberdeen","coordinates":[35.1315,-79.4295],"country":"United States","ibu":95,"name":"Double Eagle Scotch Ale","state":"North Carolina"},{"abv":13.584562738561608,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":26,"name":"Kriek","state":"Vlaams Brabant"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":94,"name":"Old Foghorn 1998","state":"California"},{"abv":1.9912046301095643,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":89,"name":"Railroad Stout","state":"Illinois"},{"abv":8.120095252629216,"address":"PO Box 1510","category":"German Lager","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Amber is a Munich style lager. It has a smooth, malty, slightly caramel flavor and a rich amber color.","ibu":96,"name":"Abita Amber","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11.28156506629131,"address":"351 Allen Street","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"A coffee lover's delight! A wonderful stout infused with coffee that is specially roasted for us by Emy J's (www.emyjs.com) in Stevens Point, WI.","ibu":28,"name":"Brewhouse Coffee Stout","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":6.1999998093,"address":"40 Bowden Square","category":"North American Ale","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":74,"name":"South Hampton IPA","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5.6999998093,"address":"939 Getchell Street","category":"North American Ale","city":"Helena","coordinates":[46.5977,-112.037],"country":"United States","description":"A GOLD MEDAL WINNER at the Great American Beer Festival, beating out 98 other IPA's and chosen as the best IPA in the country! It's amber color and incredible hoppy aroma will keep you coming back for more. R-U-HOPPY?","ibu":77,"name":"Tumbleweed IPA","state":"Montana","website":"http://lewisandclarkbrewing.com/"},{"abv":6.25,"address":"445 St.Paul Street","category":"German Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Certain things seem interminable. The line at the DMV. The commencement address. Winter. \n\n\nBut take heart. Even the longest, darkest winter gives way to spring and a new sense of optimism that the best is just ahead. That thought—and an itchy wool robe—sustained the monks through times of fasting. Their reward? A bock beer with the power to rejuvenate the body and the soul. That, and the opportunity to exchange the wool robe for a nice burlap one. \n\n\nSo when you’re stuck in the middle of that seemingly endless glass of mediocre beer, be optimistic. A Dundee Pale Bock awaits.\n\n\nA traditional German Maibock with a deep, golden color, malty-sweet aroma, and clean finish from Magnum and Czech Saaz hops.","ibu":45,"name":"Dundee Pale Bock Lager","state":"New York"},{"abv":6,"address":"2050 Yavapai Dr","category":"North American Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":82,"name":"Village Nut Brown Ale","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":3.1570390259602554,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Much like the local icon it is named for, our version of American Pale Ale has a bold character. We add a healthy dose of hops in both the kettle and the finishing tank.","ibu":80,"name":"Great Blue Heron Pale Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":7,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A full-bodied brown ale with smooth hints of pumpkin and brown sugar. Perfect to warm-up with, as the season cools.","ibu":90,"name":"Punkin Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6.5,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Ever met a New Belgium Beer Ranger? They are our beloved folks out in the field. Spanning all 26 of our states from the Pacific to the Atlantic, our Beer Rangers do their best to protect, to pour and to partake. And explore many a beer from many a brewery, they do. The fellows up in the Northwest kept calling for “more hops!” Soon it became a common theme across the land. Rangers, fans and craft lovers everywhere were searching for hoppier beers. \n\n\nSo, here it finally is – New Belgium’s foray into the true American India Pale Ales. Bring out the hops! This clear amber beauty bursts at the starting gate with an abundance of hops: Cascade (citrus), Chinook (floral/citrus), and Simcoe (fruity) lead off the beer, with Cascade added again for an intense dry hop flavor. Brewed with pale and dark caramel malts that harmonize the hop flavor from start to finish, Ranger is a sessionable splendor for all you hopinistas. Thank your Beer Ranger!","ibu":9,"name":"Ranger India Pale Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":6.8000001907000005,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Sweet Orange Blossom Honey is combined with Belgian two-row malted barley and Munich malt to create another Belgian classic. Tetternger and E. Kent Goldings hops are added to round out the finish of this beer. The aroma of the honey remains without the sugary sweetness.","ibu":73,"name":"Bronze Griffin","state":"Michigan"},{"abv":5.75,"address":"4720 California Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5604,-122.387],"country":"United States","ibu":64,"name":"No Doubt Stout","state":"Washington"},{"abv":1.1824115310702976,"category":"North American Lager","country":"Netherlands","ibu":109,"name":"Premium Light Lager Beer","website":"http://www.heineken.com/"},{"abv":5.105429603966298,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":52,"name":"Edel-Pils","state":"Baden-Wrttemberg"},{"abv":9.161003717253728,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":38,"name":"Maisbier"},{"abv":9,"address":"Kaiser-Ludwig-Platz 1","category":"German Lager","city":"Ettal","coordinates":[47.569,11.0942],"country":"Germany","ibu":68,"name":"Curator Dunkler Doppelbock","state":"Bayern"},{"abv":8.1000003815,"address":"Ul. Marii Konopnickiej 1","category":"North American Lager","city":"Witnica","coordinates":[52.6739,14.9004],"country":"Poland","ibu":44,"name":"Mocny BOSS / BOSS Beer","website":"http://www.browar-witnica.pl/"},{"abv":7,"address":"ul. GoÅ›niewska 65","category":"North American Lager","city":"Warka","country":"Poland","description":"European Strong Lager","ibu":89,"name":"Warka Strong","website":"http://www.warka.com.pl/"},{"abv":7,"address":"9750 Indiana Parkway","category":"British Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","description":"A big malty body from chocolate and roasted malts, well balanced with just the right combination of hops. Robust yet smooth, a true malt-lover's delight.","ibu":14,"name":"Robert the Bruce Scottish Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":5.1999998093,"address":"2201 Sherman Street","category":"North American Ale","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":35,"name":"India Pale Ale","state":"Wisconsin"},{"abv":3.9460903843143083,"address":"23 White Deer Plaza","category":"Irish Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":1,"name":"Packs A Punch Porter","state":"New Jersey"},{"abv":8.881293186030998,"address":"686 South Main Street","category":"North American Ale","city":"Moab","coordinates":[38.5657,-109.55],"country":"United States","ibu":116,"name":"Scorpion Pale Ale","state":"Utah"},{"abv":10.341110445679735,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":26,"name":"Milkhouse Stout","state":"Wisconsin"},{"abv":8,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Essentially a strong American IPA made with 20% rye malt. Darker in color, Hop Rod Rye boasts a huge hop aroma and flavor accompanied by a slightly sweet, malty finish.","ibu":116,"name":"Hop Rod Rye","state":"California","website":"http://www.bearrepublic.com/"},{"abv":2.2441094297435296,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":19,"name":"Old Scratch Barleywine 2002","state":"Wisconsin"},{"abv":7.202006712814077,"address":"4150 Sycamore Dairy Road","category":"North American Ale","city":"Fayetteville","coordinates":[35.0707,-78.9545],"country":"United States","ibu":37,"name":"Hoppy Hour IPA","state":"North Carolina"},{"abv":2.4677902162437784,"address":"Hohe Buchleuthe 3","city":"Kaufbeuren","coordinates":[47.8781,10.6161],"country":"Germany","ibu":0,"name":"Jubiläums German Pils","state":"Bayern","website":"http://www.aktien-brauerei.de/"},{"abv":6.6999998093,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Dark, rich, hearty, smooth and chocolaty. The two siloettes on the logo are Marina and Kshusha adopted from Russia by Amherst Brewing Company's owners, John and Terrie.","ibu":64,"name":"Two Sisters Imperial Stout","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"(White of Chambly) was the first bottle\n\nrefermented ale produced by Unibroue. It is\n\nbrewed from a blend of pale barley malt,\n\nwheat malt and unmalted wheat, to which\n\nwe blend selected spices and hops.\n\n \n\nBlanche de Chambly is only partially filtered,\n\nretaining its natural cloud of yeast that is\n\ncharacteristic of the original white ales\n\nbrewed during the Middle Ages.\n\n\nWe recommend this remarkably refreshing","ibu":118,"name":"Blanche de Chambly","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":23,"name":"Red Nectar","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":2.0049254643646854,"category":"North American Ale","city":"Cincinnati","coordinates":[39.1361,-84.5031],"country":"United States","ibu":63,"name":"5 Malt Ale","state":"Ohio"},{"abv":5.9000000954,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":114,"name":"Natural Ice","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.6999998093,"address":"310 Mill Creek Avenue","category":"Irish Ale","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Dark Brewed Porter is an original specialty beer that has been brewed expressly for tavern owners and family trade since 1829. We are proud to be recognized as one of the largest porter producers in the US. An authentic craft-style beer, our Porter calls for a generous portion of caramel and dark roasted malts, which deliver a rich full-bodied flavor and creamy taste with slight tones of chocolate evident in every sip. It pours dark, topped with a thick foamy head, and imparts a faint malty aroma. This smooth and robust Porter has a unique character that complements any meal from steak or seafood to chocolate desserts. Yuengling Dark Brewed Porter is enjoyed by even the most discerning consumer for its flawless taste and unwavering quality.","ibu":49,"name":"Yuengling Porter","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":13.216828533544932,"address":"26 Old Cross","category":"North American Ale","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":84,"name":"Special Reserve Oatmeal Ale","state":"Hertfordshire"},{"abv":2.2917135925778553,"address":"3015-D Hopyard Road","category":"North American Lager","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":108,"name":"Copper Wheat","state":"California"},{"abv":11.349578357794861,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":78,"name":"Sun Fest","state":"California"},{"abv":11.489386082022655,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Similar to the Harvest Wit but with a lot more punch. A very pronounce citrus aroma with a triple hop flavor makes for one great beer.","ibu":46,"name":"Triple Citra Hopped Satsuma Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":6.25,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This is a single malt-English pale, and single hop-English Fuggles, India Pale Ale with a rich golden color and spicy finish. Named for brewery supporters John and Cindy Bundick, with reference to John's service on a submarine.","ibu":83,"name":"Bluejackets Best","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.3000001907,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Ports Pale Ale is an extremely light and easy to drink Pale Ale. It is brewed with the finest German and English Malt and Hops. Brewed for the local Stockton ports baseball team.","ibu":42,"name":"Ports Pale Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":4.1999998093,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"This is our smooth golden ale. Our Gold has a medium body and low to medium hop bitterness \n\nand aroma.","ibu":18,"name":"Estes Park Gold","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":5.3000001907,"address":"2944 SE Powell Blvd","category":"British Ale","city":"Portland","coordinates":[45.4969,-122.635],"country":"United States","description":"Beer of the Ancients! Barley (Egyptian), Wheat (Mesopotamian), Oats (Egyptian), Amaranth (Aztec), Quinoa (Incan), Spelt (Mesopotamian), and Kamut (Egyptian) sustain the soul with a nutrients cultivated through the millennia. Finished with 15 pounds of cold-pressed Stumptown Hairbender espresso. Unlock the mystery entombed in darkness.","ibu":21,"name":"Survival Stout","state":"Oregon","website":"http://hopworksbeer.com/"},{"abv":4.6999998093,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"ith more than 2,800 bodies of water in the Adirondacks, it's not too hard to find a sunny place to relax, rest your feet and look out over the water. To celebrate summer in the Adirondacks, we've brewed a beer with generous amounts of wheat malt for a light, refreshing taste. Look for subtle hints of lemon.","ibu":82,"name":"Saranac Summer Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This golden sparkling blond ale was brewed to pay homage to a 1000-year tradition rooted in Cologne, Germany. Clear, crisp and easy to drink, the Kolsch of today is lighter than the \"House\" beer that was served in Cologne 200 years ago - the city that made Kolsch famous. We hope you'll enjoy it!","ibu":55,"name":"Saranac Kolsch","state":"New York","website":"http://www.saranac.com"},{"abv":3.360328457038071,"address":"PO Box 721","city":"Freetown","coordinates":[8.4841,-13.2287],"country":"Sierra Leone","description":"• Millions of golden bubbles\n\n• Sparkling brightness\n\n• Refreshing taste\n\n• Cascading foam head\n\n• Cold filtered for quality\n\n\nhttp://www.slbrewery.com/index.php?option=com_content&task=view&id=18&Itemid=36","ibu":82,"name":"Star Beer","state":"Sierra Leone","website":"http://www.slbrewery.com/"},{"abv":6.25,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Mogul is a complex blend of 5 malts and 7 hops. This years Mogul (12/05) will only get better with time...its a hedonistic mouthful with layers of rich malt and tremendous bitterness. A quote from John \"more hops\" Maier, \"Keep Warm, Drink Mogul ~ Prost!\" This batch of Mogul was brewed with Pale, Munich, Dark caramunich, Melanoidin, and Amber malts. \n\nMoguls hops include Newport, Amarillo, Chinook, Horizon, Cascade, Centennial and Crystal...and Mogul (12/05) is dry-hopped with Amarillo and Centennial at the rate of 1 pound per barrel! Oh Hoppy Day!","ibu":110,"name":"Mogul Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":111,"name":"Fur Rondy","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Leroy's BIG Brother. Sweet floral hop aroma balances out the big malty roasted body with the slightest bitter spiced-chocolate finish. A very untraditional hopping technique gives this beer a unique character significantly more robust than our traditional Leroy Brown Ale. The beer weighs in at 5.0% alc./vol. Cheers!!","ibu":52,"name":"American-Style Brown Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":9.5,"address":"1516 Sansom Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":108,"name":"Wee Heavier","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":7,"address":"1201 First Avenue South","category":"British Ale","city":"Seattle","country":"United States","ibu":84,"name":"Snow Cap","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":13,"name":"Kitsilano Maple Cream Ale","state":"British Columbia"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":19,"name":"Harvest Ale 2005","state":"Manchester"},{"abv":3.9698767044596517,"category":"German Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":74,"name":"Adler Bräu Weiss","state":"Wisconsin"},{"abv":1.2458278037934556,"address":"226 Elk Avenue","city":"Crested Butte","coordinates":[38.8698,-106.987],"country":"United States","ibu":23,"name":"Red Lady Ale","state":"Colorado"},{"abv":13.203725020730793,"category":"North American Ale","city":"Riverside","coordinates":[33.9533,-117.396],"country":"United States","ibu":96,"name":"Double Chocolate Stout","state":"California"},{"abv":10.488171658523083,"address":"237 Joseph Campau","category":"Irish Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":107,"name":"Double Chocolate Porter","state":"Michigan"},{"abv":9.1999998093,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"This dangerously drinkable garnet beauty is a hop lover's delight. The intense dry-hop nose and the alcohol content are perfectly balanced for a caramel candy-like malt finish. This is a serious beer for serious beer afficianados and it only gets better with age. Cellerable for 3 years.","ibu":61,"name":"Hog Heaven Barleywine","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":1.4626768856626926,"address":"Vroenenbosstraat 15","category":"Belgian and French Ale","city":"Dworp","coordinates":[50.729,4.2971],"country":"Belgium","ibu":79,"name":"Oude Gueuze","state":"Vlaams Brabant"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":21,"name":"Reinaert Flemish Wild Ale","state":"Oost-Vlaanderen"},{"abv":9.9099998474,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":35,"name":"Old Guardian Barley Wine 2003","state":"California","website":"http://www.stonebrew.com/"},{"abv":5,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":90,"name":"Golden Export","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":14.146314153888424,"address":"Onekaka","city":"Takaka","coordinates":[-40.7658,172.705],"country":"New Zealand","ibu":54,"name":"Strong Ox"},{"abv":7.5,"city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":77,"name":"Bourbon Barrel Scotch Ale","state":"Wisconsin"},{"abv":4.347098176574961,"category":"German Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":51,"name":"Half Again Bock","state":"Delaware"},{"abv":8.842985490641148,"address":"686 South Main Street","city":"Moab","coordinates":[38.5657,-109.55],"country":"United States","ibu":22,"name":"Dead Horse Ale","state":"Utah"},{"abv":9,"address":"6 Cliffe High Street","category":"North American Ale","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":89,"name":"A. LeCoq Imperial Extra Double Stout 1999","state":"East Sussex"},{"abv":10.725978298077369,"address":"313 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":102,"name":"Marzenbier","state":"Wisconsin"},{"abv":10.762774393751478,"address":"921 South Riverside Drive","category":"North American Ale","city":"Saint Charles","coordinates":[38.7745,-90.484],"country":"United States","ibu":83,"name":"Old Courthouse Stout","state":"Missouri"},{"abv":5.6593864647897965,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":71,"name":"Hinterland Pale Ale","state":"Wisconsin"},{"abv":11.080591174462844,"category":"Irish Ale","city":"Lake Delton","coordinates":[43.6011,-89.7937],"country":"United States","ibu":49,"name":"T.P.H. Porter","state":"Wisconsin"},{"abv":6.401193298429543,"address":"238 Lake Shore Drive","category":"North American Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"An amber-colored ale with a pronounced floral aroma and a flavor contributed by Cascade hops. Hop lovers will savor this bold version of an American classic.","ibu":8,"name":"Pale Ale","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":14.165667634054087,"category":"North American Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":11,"name":"Bitter Amber","state":"Colorado"},{"abv":12.377738364134903,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":16,"name":"Sun Fest","state":"California"},{"abv":5.062858168439586,"address":"2920 North Henderson Ave","category":"North American Ale","city":"Dallas","coordinates":[32.821,-96.7848],"country":"United States","ibu":2,"name":"White Rock Red","state":"Texas"},{"abv":9.718789115750523,"category":"North American Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":28,"name":"Red Lager","state":"Texas"},{"abv":4.805385371252836,"category":"German Lager","city":"Lake Oswego","coordinates":[45.4207,-122.671],"country":"United States","ibu":82,"name":"Jack Frost Winter Doppelbock","state":"Oregon"},{"abv":0.5003168594138119,"category":"North American Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":21,"name":"India Pale Ale","state":"Washington"},{"abv":14.975305647877367,"address":"610 Main Street","category":"North American Ale","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":13,"name":"Smoke Jump Stout","state":"South Dakota"},{"abv":5.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Maduro is a Northern English-style brown ale with some American affectations. It is unlike the typical American Brown Ale, as it doesn’t have the big hop character common in American-brewed Brown Ales. And Maduro is higher in alcohol than the common English brown ale. Maduro also has oats, in the malt bill which imparts a silky body and aids in making the roasted, toasted and chocolate components mesh together in Maduro's complex malt profile. The end result is a remarkably full flavored yet approachable and sessionable brown ale that pairs well with cigars.","ibu":77,"name":"Maduro Oatmeal Brown Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":4.1999998093,"address":"3300 Old Seward Highway","category":"Other Style","city":"Anchorage","coordinates":[61.1902,-149.869],"country":"United States","description":"Brewed with wheat and barley malts and flavored with pureed raspberries, this pink-hued, slightly tart ale gives a clean sip.","ibu":85,"name":"Wild Country Raspberry Wheat","state":"Alaska","website":"http://www.moosestooth.net/"},{"abv":5.3000001907,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"Behold the hop. A flower, but too unsightly to be used for decoration. The ugly duckling of the flower family. \n\n\nOh, but the secret it holds. Soak it in some water with the right companions and it surrenders its bouquet to use a corny flower metaphor. That unique hop flavor is the difference between a fine pale ale and more ordinary beers. \n\n\nDundee Pale Ale understands the secret of the hop flower—the power to turn an ordinary beer into something extraordinary. \n\n\nAnd the power to make you indescribably hoppy. \n\n\nA wonderfully balanced true pale ale. Cascade, Tomahawk, and Amarillo hops create a citrusy aroma with a smooth, crisp finish. A subdued malt character nicely complements the hop complexity and produces an orangey amber hue.","ibu":41,"name":"Dundee Pale Ale","state":"New York"},{"abv":7.398998310499189,"address":"4366 Huntington Dr","category":"German Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"A truly delicious beer, Heffevenom is a medium bodied, lightly hopped wheat beer brewed in the true Bavarian tradition. Our brewers combine mountain pure water, select wheat and domestic malted grain, hops and yeast to create a highly refreshing ale with a pronounced banana and clove bouquet. Perfect with a slice of lemon as garnish.","ibu":106,"name":"Heffevonom Bavarian Wheat","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":14.889731284931148,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A Scotch Ale, “brewed with 100% Michigan barley and a blend of Pacific Northwest and Michigan hops.”","ibu":91,"name":"Bell's Christmas Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":6,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"If you like your beer on the bitter side then this one's for you. This American Style IPA uses Pale Ale, Munich, and Caramunich malt blest with Cascade, Chinook, Willamette and Centennial (dry hopped) hops to create a brew that is fit for the crazy American hop addicts.","ibu":2,"name":"Broken Paddle","state":"Michigan"},{"abv":5.5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A classic American style pale ale. A well balanced, light copper colored, medium bodied ale with a distinctive hop bitterness and aroma.","ibu":87,"name":"Mackinac Pale Ale","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5.1599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"For hops lovers - this bitter ale is pale colored and made with a blend of 6 different malts and 5 different hops. This ale is dry-hopped for extra flavor and aroma.","ibu":81,"name":"Holy Cow IPA","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bitters are popular pub beers in England and are closely related to the more well known pales ales. Saranac Extra Special Bitter has a rich, malty taste balanced by the pleasant bitterness of Williamette Hops. The finish is dry with a hint of the Foral English Fuggle and Spicy Saaz hop. Enjoy!","ibu":72,"name":"Saranac Extra Special Bitter","state":"New York","website":"http://www.saranac.com"},{"abv":5.5,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"White ale brewed with apple must\n\n\nRedolent of ripe Granny Smith apples, this\n\nunique white ale pleases the palate with a\n\ndelicate balance of fruit and spice notes and\n\njust a hint of sweetness.\n\n \n\nÉphémère apple satisfies with each sip and\n\nrefreshes in all seasons, especially when\n\npaired with an artisan cheddar cheese, pork\n\ntenderloin served with apple chutney or Vidalia\n\nonion soup.\n\n\nWe developed the Éphémère (Ephemeral)\n\nseries to feature a seasonal fruit in a\n\nrefreshing, lightly spiced white ale.\n\n \n\nThe label depicts a fairy, an ephemeral spirit\n\nassociated with fruits picked at the peak of\n\nripeness during each harvest season. \n\nÉphémère apple flavor is brewed with apple\n\nmust, which consists of the freshly-pressed\n\njuice from apples.\n\n\nEnjoy this beer 'alfresco' while dining in the\n\nafternoon sun, relaxing at a family gathering or\n\nat a picnic in the back yard.\n\n\nWinner of 3 Gold Medals from the Beverage\n\nTesting Institute since 2002","ibu":20,"name":"Éphémère Pomme","state":"Quebec","website":"http://www.unibroue.com"},{"abv":8.5,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A strong, fruity, belgian-style trippel 8.5% alc./vol.\n\n\nOur aptly named Christmas Ale is based on the strong beers traditionally brewed by Belgium's trappist monasteries. Trippel is typically at least 8% alc./vol. and has a light golden colour. Because of its high strength this beer has an intensely fruity palate. Up front it has a honeyish sweetness but the finish is dry and champagne-like. Most weary Christmas shoppers would be well advised to benefit from the warmth and 'ho-ho-ho factor' that only a beer of the Biltzen's calibre can provide.","ibu":65,"name":"Blitzen Christmas Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":4.9000000954,"country":"Israel","description":"The best beer ever!","ibu":34,"name":"Goldstar","website":"http://www.tempo.co.il/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob is a malty and full-bodied lager with an elegant European hop profile.\";\"0","ibu":29,"name":"Michelob Beer","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":7.1999998093,"address":"2105 N. Atherton St.","category":"British Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A big malty ale brewed in the style of English Old Ales. Deep ruby in color and lightly bittered with a big malty backbone.","ibu":76,"name":"Arthur's English Old Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":4.8000001907000005,"address":"15 South Orange Avenue","category":"North American Ale","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":93,"name":"Perfect Stout","state":"New Jersey"},{"abv":5.743336960131518,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":55,"name":"Esker Alt","state":"Wisconsin"},{"abv":4.5999999046,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":119,"name":"Red Lager","state":"Wisconsin"},{"abv":9.57718921865235,"address":"3560 Oakwood Mall Drive","category":"North American Lager","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":25,"name":"Whitetail Wheat","state":"Wisconsin"},{"abv":1.294621219026304,"category":"North American Ale","city":"Superior","coordinates":[46.7208,-92.1041],"country":"United States","ibu":13,"name":"Derailed Ale","state":"Wisconsin"},{"abv":6,"address":"Val Dieu 225","category":"Belgian and French Ale","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","description":"This authentic Abbey Ale is based on the recipe perfected centuries ago by the monks of Abbey Du Val-Dieu.","ibu":33,"name":"Blonde","state":"Lige"},{"abv":11,"address":"9832 14th Avenue SW","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":41,"name":"Castaway Barley Wine Winter Ale","state":"Washington"},{"abv":4,"address":"404 South Third Street","category":"North American Lager","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":107,"name":"Del Rio Lager","state":"Washington"},{"abv":4.8000001907000005,"address":"1253 Johnston Street","category":"German Ale","city":"Vancouver","coordinates":[49.269800000000004,-123.132],"country":"Canada","ibu":42,"name":"Haupenthal Hefeweizen","state":"British Columbia"},{"abv":3.37380766840639,"address":"Astridlaan 134","city":"Assebroek","coordinates":[51.1968,3.2527],"country":"Belgium","ibu":73,"name":"Vuuve","state":"West-Vlaanderen"},{"abv":11.355779954245431,"address":"200 East Campbell Avenue","category":"North American Lager","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":63,"name":"Kristall Weizen","state":"California"},{"abv":3.622084315356621,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":75,"name":"Eccentric Belgian Wheat","state":"Nebraska"},{"abv":5,"address":"Unit 21-24 Batten Road Industrial Estate","city":"Salisbury","country":"United Kingdom","ibu":56,"name":"Summer Lightning","state":"Wiltshire"},{"abv":7.5,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Imperial Hefeweizen","state":"California"},{"abv":5.1999998093,"address":"3525 Liberty Avenue","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"Gold Medal Winner of the Great American Beer Festival. Our beer is fairly dark in color, but don’t be afraid. It is a perfect example that dark beers are not always strong beers. The body is surprisingly mellow, and the alcohol content is a bit lower than most people might think. It has a wonderfully clean and roasty aroma. Hop bitterness levels are kept in line, but is has a noticeable hop flavor.","ibu":88,"name":"Pious Monk Dunkel","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":14.506308021778977,"address":"130 W Gurley St","category":"North American Ale","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":17,"name":"Prescott Pale Ale","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":6,"address":"1814 Second Street","category":"North American Ale","city":"Santa Fe","coordinates":[35.6631,-105.966],"country":"United States","ibu":17,"name":"Second Street IPA","state":"New Mexico","website":"http://www.secondstreetbrewery.com/"},{"abv":7,"address":"190 5th Street","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named after a drawing of an old cedar tree growing out of a cliff on the Lake Superior shoreline done by friend and artist Ladislav Hanka, this beer is copper colored and hopped with American Centennial and English East Kent Golding hops.","ibu":32,"name":"Old Cedar","state":"Michigan","website":"http://liverybrew.com/"},{"abv":2.0049845658783383,"address":"1634 18th Street","category":"Other Style","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A light German-style beer made with Anaheim chiles and smoked Ancho peppers. A 2006 Great American Beer Festival Bronze Medal Winner in the Fruit and Vegetable Beer category anda Wynkoop specialty.","ibu":92,"name":"Patty's Chile Beer","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":5,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"The American hop Cascade is used to give this brew its classic American Aroma. Pale and Crystal malt from the U.S. are used to give this beer a medium body and high hop flavor. This beer goes down easily and opens the door to a world of microbrewed beers.","ibu":60,"name":"Crooked Door","state":"Michigan"},{"abv":5.1599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"Named after Donovan's, a 19th century Irish restaurant in downtown Waterbury. This medium-bodied, red-colored ale has a nice hop flavor and aroma.","ibu":1,"name":"Donovan's Red","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.8000001907000005,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":70,"name":"Mickey's Ice","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":5.5,"category":"German Ale","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Hefe-Weißbier is the best-selling beer by the Paulaner Brewery. Specially produced top-fermented yeast is what gives it its unmistakeable character: sparkling light, fruity, and just a tiny bit bitter. Because it is not filtered during the brewing process, it retains its originality and the many vitamins, minerals and trace elements.\n\n\nHefe Weissbier Naturtrüb:\n\n12.5% original wort; 5.5% alcohol; 44 kcal/100 ml","ibu":60,"name":"Hefeweizen","website":"http://www.paulaner.com/"},{"abv":5,"category":"German Lager","country":"Portugal","description":"\"Authentic Flavour\" Super Bock is the leading beer brand on the Portuguese market and is the only brand to have won 19 consecutive gold medals in the international contest \"Monde Sélection da la Qualité","ibu":43,"name":"SuperBock","website":"http://www.unicer.pt"},{"abv":18,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Dark, rich, roasty and complex, World Wide Stout has more in common with a fine port than a can of cheap, mass-marketed beer. Brewed with a ridiculous amount of barley. Have one with (or as!) dessert tonight!","ibu":15,"name":"World Wide Stout","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"This special coffee stout includes NAFTA approved, organic, shade grown coffee beans from Costa Rica, Indonesia, and Ethiopia roasted by the brewmaster at local coffee roaster Red Twig in Edmonds, Wa. Hints of your morning cup are evident in the aroma, flavor and finish of this breakfast beer (but not just for breakfast). \n\nNo Chemicals, Additives or Preservatives.","ibu":8,"name":"Jittery Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.114757428519072,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Dedicated to Spanish author Juan de la Cueva, who, in 1575, wrote of a an dish that combined seedless chipotles with beer: Chipotle Ale is based on Rogues American Amber Ale, but delicately spiced with smoked jalapeno (chipotle) chile peppers. Deep amber in color with a tight head, rich malty aroma, delicately smooth and crisp flavor, and subtle chipotle chili finish. Chipotle Ale is created from Northwest Harrington, Klages, and Maier Munich Malts; Willamette and Cascade hops; and Chipolte (smoked jalapeno) Peppers. Available in a 22-ounce (12/case), 12-ounce (24 loose/case) screened bottles, and on draft. Blend it with Rogue Chocolate Stout and create a Mole black and tan!","ibu":55,"name":"Chipotle Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":12,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Batch 7000 is part of our commemorative series celebrating our progress with special brews. Our 7,000th batch is a special recipe to be brewed only once.","ibu":105,"name":"Batch 7000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":10.5,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"The vintage port of American stout. A good ale for the cellar. Well suited for November storms and trips across the Sahara.","ibu":25,"name":"Expedition Stout","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"Belgian and French Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"This easy drinking beer is made with pale and \n\nMunich malts, wheat, honey and fresh raspberry puree. Honey Raspberry Ale is refreshing and mildly sweet.","ibu":88,"name":"Honey-Raspberry Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7,"address":"1940 Olney Avenue","category":"Belgian and French Ale","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"This Belgian-style Abbey Dubbel is an exceptionally complex beer with many interwoven flavors. This classic-style Abbey beer features an immense head with a fruity nose and a generous body. Malty in the middle, the beer features a clean, almondy dry finish and a slight alcohol warmth. More like a wine than a beer—it has a lot of the qualities of a fine Burgundy.\n\n\nBeer writer Michael Jackson has praised the Flying Fish Dubbel as \"a wonderful example of the style.\";\"0","ibu":44,"name":"Belgian Abbey Dubbel","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":6.816556934761864,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":92,"name":"Birch Wood Ale","state":"Wisconsin"},{"abv":4.3000001907,"address":"238 North Boundary Street","category":"Irish Ale","city":"Wasilla","coordinates":[61.5816,-149.439],"country":"United States","ibu":20,"name":"Pioneer Peak Porter","state":"Alaska"},{"abv":10,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":41,"name":"K-O Blond Beer","state":"Oost-Vlaanderen"},{"abv":10.579400200546713,"address":"123 East Doty Street","category":"North American Lager","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":62,"name":"Pro-Tel Memorial Malt Liquor","state":"Wisconsin"},{"abv":4.50292201974513,"address":"7791 Egg Harbor Road","category":"Other Style","city":"Egg Harbor","coordinates":[45.0495,-87.2802],"country":"United States","ibu":57,"name":"Raspberry","state":"Wisconsin"},{"abv":5.758576773419134,"address":"Lichtenfelser Strae 9","category":"German Ale","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":77,"name":"Kapuziner Gold","state":"Bayern"},{"abv":6.483738356828633,"city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":33,"name":"Stronghold Pilsner","state":"Wisconsin"},{"abv":7,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Our interpretation of a legendary style ale is not for the timid. Assertively hoppy and dangerously seductive. A skillful blend of three premium barley malts with generous amounts of Northern Brewer and Cascade Hops creates a special ale to satisfy even the most demanding palate.","ibu":23,"name":"High Seas IPA","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":8.192483471785616,"address":"3703 North Main Street","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":49,"name":"Kolsch","state":"Indiana"},{"abv":6,"address":"237 West Butler Avenue","category":"Irish Ale","city":"Chalfont","coordinates":[40.2795,-75.2143],"country":"United States","description":"Rich and smooth on the pallate this ale is a near perfect \"Irish Red\". A variety of hops, Mt. Hood, Liberty & Fuggles combined with some roasted barley make an agreeable brew.","ibu":101,"name":"Crabby Larry's Irish Red Ale","state":"Pennsylvania","website":"http://www.crabbylarrys.com/"},{"abv":5.1999998093,"address":"The Street","city":"Pentlow","coordinates":[52.081,0.6559],"country":"United Kingdom","ibu":4,"name":"Augustinian Ale","state":"Essex"},{"abv":4.9000000954,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Our Massatucky Brown Ale with a subtle raspberry flavoring","ibu":11,"name":"Raspberry Brown Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":13.577676229187633,"address":"23-1 Azumabashi 1-chome","category":"Irish Ale","city":"Tokyo","country":"Japan","ibu":12,"name":"Kuronama","state":"Kanto"},{"abv":1.3353741997691804,"address":"2027 13th Street","city":"Boulder","coordinates":[40.0187,-105.279],"country":"United States","ibu":67,"name":"Angry Monk","state":"Colorado"},{"abv":4.625054370168967,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":63,"name":"Pilsner","state":"Wisconsin"},{"abv":1.7799889371528321,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":78,"name":"Sunset Red","state":"Michigan"},{"abv":10,"address":"Rue de Maredsous, 11","category":"Belgian and French Ale","city":"Dene","coordinates":[50.3093,4.7646],"country":"Belgium","description":"Moortgat's Maredsous 10 is an orangy-blond big sweet tripel nudging into a barley wine.","ibu":46,"name":"10","state":"Namur","website":"http://www.maredsous10.be/"},{"abv":9.812754889971854,"address":"580 North Nimitz Highway","category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":62,"name":"Bumbucha Stout","state":"Hawaii"},{"abv":3.7499763846735155,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":39,"name":"Honey Weizen","state":"California"},{"abv":12.780675269088933,"category":"North American Lager","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":31,"name":"Mountain Wheat","state":"Nebraska"},{"abv":3.289757602569127,"address":"205 North Broadway","category":"North American Lager","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":19,"name":"Honey Wheat Ale","state":"Illinois"},{"abv":6.8000001907000005,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Raise your glass to the heavens in a toast to HOPS – the spice of beer! This classic American I.P.A. features the finest American hops to add a spicy, assertive, and citrusy character to its full-bodied, rich malt taste","ibu":20,"name":"Hoppin' To Heaven IPA","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":12,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The transformation of Scratch #3-2007 to Splinter Gold has been a slow rest in oak wine barrels dosed with brettanomyces. During a two-year aging period the horsy flavors of the brett combined with the Westmalle yeast used during primary fermentation to create a complex blend of flavors. Bone-dry and 12% abv, Splinter Gold is highly carbonated.","ibu":109,"name":"Tröegs Splinter Beer Gold","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.5,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian blonde ale from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nThis organic blonde ale presents a nice yeasty nose, long-lasting head and a spicy, earthy note on the palate.","ibu":4,"name":"Brasserie De Brunehaut Bio Bière Blonde (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":5.0999999046,"address":"PO Box 1510","category":"Belgian and French Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Real Louisiana Satsumas, golden wheat, oats and the finest barley create Abita Satsuma Harvest Wit. Pale and cloudy, like the haze on a hot summer day, this white beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing. \n\n\nAbita Satsuma Harvest Wit is very versatile and can compliment a number of dishes. This brew pairs well with salads, fish, shrimp and lobster, as long as the dishes are not too spicy. Thai dishes, which often have citric notes in their flavor profile, would also perfectly compliment the orange flavors in Abita Satsuma Harvest Wit.","ibu":111,"name":"Satsuma Harvest Wit","state":"Louisiana","website":"http://www.abita.com/"},{"abv":3.20313509302495,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"A light copper-colored ale with moderate hoppiness which exhibits a spicy hint of fruit, notable maltiness and a medium body.","ibu":15,"name":"Standing Stone Amber Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":12,"address":"190 5th Street","category":"Belgian and French Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Brewmaster Steve took his Belgian Amber Ale and re-fermented it in a merlot cask with 100# of sweet Michigan cherries from Husteds Farm Market. He than moved the resulting beer into another cask with 30# of tart cherries. 5 fermentations due to wild yeast and 9 months later, we have our version of a Belgian Kriek. Named after our good friend and musician, April Verch.","ibu":30,"name":"Verchuosity","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.8000001907000005,"address":"8 Mt. Desert Street","category":"North American Ale","city":"Bar Harbor","coordinates":[44.3875,-68.2046],"country":"United States","ibu":9,"name":"Thunder Hole Ale","state":"Maine","website":"http://www.barharborbrewing.com/"},{"abv":4.5,"address":"2050 Yavapai Dr","category":"North American Lager","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":25,"name":"Forty-Niner Gold Lager","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.4000000954,"address":"186 James Fletcher Drive, Otahuhu","category":"North American Ale","city":"Auckland","coordinates":[-36.9489,174.821],"country":"New Zealand","description":"Supreme Champion Beer - New Zealand International Beer Awards","ibu":101,"name":"Epic Pale Ale","website":"http://epicbeer.com/"},{"abv":6,"address":"Metaalweg 10","category":"North American Ale","city":"Roermond","coordinates":[51.1684,6.0515],"country":"Netherlands","description":"Born as “Christoffel Bier” this was the first beer brewed by Christoffel. After the introduction of Christoffel Robertus, this beer was named Blond refering to the colour of the beer. Blond is a low-fermenting beer with 6% alc.vol.\n\n\nBlond has a full body, a very balanced taste and a beautiful bitterness due to a generous addition of fresh hop during the brewing-process. The aroma is fruity and Blond has a fresh taste with a pleasant, hoppy finish.","ibu":10,"name":"Christoffel Blond","website":"http://www.christoffelbeer.com"},{"abv":6,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"Dock Street Amber is a classic, top fermented ale and is the company flagship beer. \n\n\nIt is brewed with American Cascade hops and two row imported pale and caramel malts and then dry hopped. Our traditional brewing process gives this beer its subtle, complex and fruity character and its distinctive hop \"nose.\" The result is an exceptionally balanced premium full bodied ale that finishes clean and smooth on the palate. It appeals to gourmets and beer aficionados.\n\n\nOur goal in brewing the Dock Street Amber was to produce a phenomenal tasting American beer. At the time it was created, most all full-bodied beers were imports.\";\"0","ibu":96,"name":"Dock Street Amber","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":6.5,"address":"23 South Main Street","category":"Other Style","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This IPA is brewed with 35% rye malt. The crisp malt character is layered with Warrior hops. Dry-hopped with Warrior and Simcoe.","ibu":52,"name":"Revitalization Rye","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":3.7000000477,"category":"North American Ale","country":"Czech Republic","description":"Very good dark beer. Not as heavy as stout.","ibu":46,"name":"Breznak Dunkles/Dark","website":"http://drinksunion.qbizm.cz/de/pages/vyrobky_p_breznak.htm"},{"abv":4.5999999046,"address":"Route 4 & 100A","category":"German Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Long Trail Ale is a full-bodied amber ale modeled after the \"Alt-biers\" of Düsseldorf, Germany.","ibu":14,"name":"Long Trail Ale","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":6.620359904214924,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":114,"name":"Dos Equis Amber Lager","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":4.4000000954,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Bold with a soft finish, our darkest beer has plenty of malt flavor with undertones of coffee and chocolate. The addition of oatmeal to the brew adds extra smoothness and a thick creamy head.","ibu":33,"name":"Blackstone Stout","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":7.5,"address":"312 North Lewis Road","category":"German Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":8,"name":"Instigator Doppelbock","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.1999998093,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7487,10.5694],"country":"Germany","ibu":80,"name":"Cambonator Doppelbock","state":"Bayern"},{"abv":5.5999999046,"address":"621 Front Street","category":"North American Ale","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":14,"name":"Brown Ale","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":3.107667200152997,"address":"Ortsstrae 1","city":"Herbertingen","coordinates":[48.0778,9.3996],"country":"Germany","ibu":44,"name":"Zwickelbier","state":"Baden-Wrttemberg"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":62,"name":"Harvest Ale 2005 (Sherry)","state":"Manchester"},{"abv":6.2696722089636285,"address":"1235 Oakmead Parkway","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":27,"name":"Kölsch","state":"California"},{"abv":3.9000000954000003,"address":"2804 13th Street","category":"German Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":70,"name":"Jack of Spades Schwarzbier","state":"Nebraska"},{"abv":10,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":101,"name":"Killer Penguin","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":7.115253719097091,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":109,"name":"Summertime Kölsch","state":"Illinois"},{"abv":5.859292912914658,"address":"61 US Highway 1 South","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":6,"name":"32 Inning Ale","state":"New Jersey"},{"abv":1.4765449586421897,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":82,"name":"Kayak Kölsch","state":"Minnesota"},{"abv":4.290216413275793,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":87,"name":"Oktoberfest","state":"Thüringen"},{"abv":12.633950539797418,"address":"1327 North 14th Street","category":"North American Lager","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":76,"name":"Port Washington Pier 96 Lager","state":"Wisconsin"},{"abv":8.5,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Once brewed in Britain for the Russian Czars, this tremendously rich and thick ale uses a profusion of burnt and caramel malts. A massive mouthful of dark roasted malt and coffee flavors finishes with hints of chocolate, caramel & licorice.","ibu":110,"name":"Sprecher Russian Imperial Stout","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":12.079945071877038,"address":"7536 Fay Avenue","category":"North American Ale","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":94,"name":"Stout","state":"California"},{"abv":4.8000001907000005,"address":"540 Main Street","category":"North American Ale","city":"Longmont","coordinates":[40.1688,-105.102],"country":"United States","ibu":1,"name":"Four Alarm Alt","state":"Colorado"},{"abv":7.590594074328957,"address":"375 Water Street","category":"Belgian and French Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"\"Tall and tan and young and lovely","ibu":46,"name":"Ipanema Summer White","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":0.8998670038858192,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","ibu":69,"name":"Pale Ale","state":"California","website":"http://www.lostcoast.com/"},{"abv":7.874334303593077,"category":"North American Ale","city":"Helena","coordinates":[46.5958,-112.027],"country":"United States","ibu":46,"name":"Wild West Beer","state":"Montana"},{"abv":6,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A very rich, dark bock beer. dark ruby in color with subtle tones of chocolate and burnt malt. It will warm you on a cold winter night and brighten your days. The perfect holiday gift for the beer drinker.","ibu":11,"name":"St. Nikolaus Bock Bier","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":9.271407586403516,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":50,"name":"Maple Nut Brown","state":"Nebraska"},{"abv":10,"address":"Durham DH7 0NT","category":"North American Lager","city":"Durham","coordinates":[54.8229,-1.7457],"country":"United Kingdom","ibu":92,"name":"Storm Super Premium Malt Liquor","state":"Durham"},{"abv":8.195461481972007,"address":"4301 Leary Way NW","category":"German Ale","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":6,"name":"El Jefe Weizen Ale","state":"Washington"},{"abv":6.1999998093,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":91,"name":"Avatar Jasmine IPA","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":5.5,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":54,"name":"Portage Bay Pilsener","state":"Washington"},{"abv":0.3916115750428284,"address":"Meckatz 10","city":"Heimenkirch","coordinates":[47.6308,9.8889],"country":"Germany","ibu":46,"name":"Weiss-Gold","state":"Bayern"},{"abv":9.288031962475841,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":50,"name":"Blarney Stone Stout","state":"Kansas"},{"abv":6,"address":"High Street","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":11,"name":"Winter Welcome 2007-2008","state":"North Yorkshire"},{"abv":10.81883647601704,"city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":30,"name":"Super Natural ESB","state":"Oregon"},{"abv":9.302607423134898,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":2,"name":"Yuel Fuel","state":"Colorado"},{"abv":0.5843980462740206,"address":"135 North Highway 101","city":"Solana Beach","coordinates":[32.9908,-117.272],"country":"United States","ibu":61,"name":"Mother of All Beers","state":"California","website":"http://www.pizzaport.com"},{"abv":5.089900448331983,"address":"102 North Center Street #111","category":"Irish Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":117,"name":"Porter From Hell","state":"Illinois"},{"abv":8,"address":"980 NE Fourth Street","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","ibu":94,"name":"Tannen Bomb","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":5.4549921551873295,"category":"Irish Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":20,"name":"McBride Porter","state":"Iowa"},{"abv":6.095931363186695,"address":"392 George Street","category":"North American Ale","city":"New Brunswick","coordinates":[40.4962,-74.4441],"country":"United States","ibu":103,"name":"Altruistic American Ale","state":"New Jersey"},{"abv":5.3000001907,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"We at FiftyFifty believe that beer is good. Especially this beer. Manifesto is one of FiftyFifty's flagship beers. This beer is a delight for those who take pleasure in craft beers and are looking for something that they can enjoy a few pints of. Manifesto has a restrained malt backbone of flavor with mild biscuit and caramel notes, and the hop character is light to moderate with mild earthiness evolving to a slightly more moderate citrus/piney finish. This is a beer of principle.","ibu":118,"name":"Manifesto Pale Ale","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":7.707691185512015,"address":"720 Main Street","category":"North American Lager","city":"Frisco","coordinates":[39.5765,-106.094],"country":"United States","ibu":77,"name":"Old Smoky","state":"Colorado"},{"abv":10,"address":"306 Northern Avenue","category":"North American Ale","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"Harpoon Leviathan Imperial IPA will challenge your senses and your palate. As the vibrant aroma rushes out of your glass you will notice the blend of piney and tropical fruit notes. At first sip, this big beer starts with apowerful hop bitterness up front and an aggressive hop flavor and character throughout. \n\n\nLeviathan Imperial IPA is brewed with tons of pale malt and just enough caramel malt to provide a sweet malt body to balance the hop intensity. We used copious amounts of a variety of hops including Chinook, Centennial, Simcoe, and Amarillo at various points during the boil to create a complex hop flavor and clean lingering bitter finish. We then fermented the beer with Harpoon’s own versatile proprietary yeast. Finally, we dry hopped at a rate of over 1 lb a barrel to produce this beer’s massive aroma.","ibu":94,"name":"Harpoon Leviathan","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":6.1999998093,"address":"1940 Olney Avenue","category":"Other Style","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"Exit 11 Hoppy American Wheat Ale is the second in their wildly popular Exit Series of Big Bottle Beers. Exit 11 is a confluence of styles and ingredients, just as Exit 11 is the point in New Jersey where the Garden State Parkway, the New Jersey Turnpike and several other highways come together.\n\n\n“Exit 11 is the point on the Turnpike where the Garden State Parkway branches off and takes hundreds of thousands of travelers to the renowned Jersey Shore,” says Flying Fish Founder Gene Muller. “Our Exit 11 Wheat Ale is a fresh, citrus-y summer beer perfect for beachgoers and those who only wish they were headed ‘downa shore’.”\n\n\nExit 11 is an American-style wheat beer brewed with English ale yeast and three Pacific Northwest hops, Columbus, Palisade and Amarillo. It is brewed with 50% Belgian pale malt and 50% white wheat, and is an ideal summer thirst quencher, with its bouquet of tangerines and apricots. Exit 11 is available only during this one-time release, and only until it sells out across New Jersey, Pennsylvania and Delaware.","ibu":22,"name":"Exit 11 - Hoppy American Wheat","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":5,"address":"Kendlerstraße 1","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"Paracelsus Zwickl is a natural beer specialty with a mellow impression on the tongue. The aftertaste unfolds a slight bitterness. Zwickl-beer is not filtered and therefore shows some cloudiness due to rests of yeast, minerals and trace elements.\n\n\nThis very special beer is brewing at its best using a sophisticated recipe combined with love and dedication. Stiegl only uses excellent ingredients from Austrian agricultural suppliers, applying biological techniques. As a result of this Paracelsus Zwickl beer was awarded the Bio-Austria certificate. Bio-production is subject to strict yearly controls by “Austria-Bio-Guaranty”.\n\n\n“Bier is a really divine medicine”. This quotation comes from Paracelsus (1493 – 1541). He was a well known physician, forward thinker and visionary who lived in Salzburg for many years. He found out that beer had healing powers.","ibu":97,"name":"Paracelsus Zwickl","website":"http://www.stieglbrauerei.at/"},{"abv":11.498267270473928,"address":"1022 Main Ave.","category":"British Ale","city":"Durango","coordinates":[37.2748,-107.88],"country":"United States","description":"One of these beers is available all of the time. Our heartiest beers emphasize roasted malts and the generous use of hops. Creamy, smooth and always nitrogenated, these beers are nearly a meal or a dessert in themselves.","ibu":10,"name":"Iron Horse Oatmeal Stout","state":"Colorado","website":"http://www.carverbrewing.com/_/home.htm"},{"abv":8.653963673828185,"address":"Kerkstraat 11","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":9,"name":"Timmermans Gueuze","website":"http://www.anthonymartin.be/"},{"abv":4.315342368724711,"address":"2 Sagamore Street","category":"British Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Tavern Ale is a traditional English Bitter, dry bodied and light in color. This sessions ale utilizes Northdown and Kent Golding Hops. Tavern Ale is the creation of Assistant Brewer Adrian Bethel.","ibu":61,"name":"Cooper's Cave Tavern Ale","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":6,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"Resinous hop character and bitterness balance the rich carmel malt base. We took it a step further and Amarillo dry-hopped the brew to 45 ibu's, creating refreshing and savory hop flavors and aromas. Is it red IPA? That's your call.","ibu":71,"name":"Hop Hed Red Ale","state":"California","website":"http://www.greenflashbrew.com"},{"abv":5,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":44,"name":"Feuerwehrmann Schwarzbier","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.8000001907000005,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"The second beer of the Brewmaster's reserve line, Saison de Brooklyn is brewed in the style produced by old farmhouse breweries in Belgium and France. Well-hopped and fermented to a crisp dryness, Saisons were brewed in the spring to sustain farmers through the summer. Saison de Brooklyn is boldly hoppy, dry and flinty, with a bright spicy, citric aroma and pillowy white head. This beer has remarkable versatility with food, complementing spicy dishes particularly well.","ibu":100,"name":"Saison De Brooklyn","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":4.9000000954,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"The rich mahogany hue of the Nut Brown is the first thing you will notice. You'll find subtle hints of both chocolate and coffee. We delicately blend chocolate and caramel malts with four others to make this flavorful, easy drinking beer. The malt character will appeal to those looking for a moderately dark ale, but the smoothness is what will surprise all.","ibu":68,"name":"Nut Brown","state":"New York"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"British Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Mother Earth is the rich fertile “living” planet. Our EARTH combines pale and dark malts for essential body. Cocoa nibs—decadent chocolate in its most elemental form—add distinction. Lush lactose creates incredible creaminess. But Earth gains amazing ground with extensive aging on Bergenfield extra dark cocoa.","ibu":39,"name":"Earth - Belgian Style Chocolate Milk Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4,"address":"Route 4 & 100A","category":"Other Style","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Light & refreshing with a hint of blackberry at the finish makes this beer a real thirst quencher. For the health conscious, Blackbeary Wheat has less than 6 grams of carbs and contains 0 fat.","ibu":5,"name":"Blackbeary Wheat","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":13.47914371799275,"address":"60 Ship Street","category":"North American Lager","city":"Providence","coordinates":[41.819,-71.4097],"country":"United States","description":"Made on Honor, sold on Merit. Flavorful lager.","ibu":52,"name":"Narragansett Lager","state":"Rhode Island","website":"http://www.narragansettbeer.com"},{"abv":9,"address":"Route de Charlemagne 8","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Named Grande Réserve in 75 cl (25.4 fl.oz.) bottles, it is principally distinguished by its character of a strong beer. \n\n\nThis is a beer whose fragrance of fresh yeast with a light, flowery rosy touch is especially pleasant. \n\n\nIts flavour, noticed when tasting it, only accentuates the pleasant sensations perceived in the aroma , while revealing a light but pleasant touch of roasted malt.\n\n\nThis top fermented Trappist beer , refermented in the bottle, is not pasteurised.","ibu":52,"name":"Chimay Grand Reserve(Chimay Blue)","website":"http://www.chimay.com"},{"abv":14.294493205012655,"address":"30 Germania Street","category":"North American Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Great tasting yet drinkable, with a clean smooth finish. Sam Adams Light® is not just a lighter version of our Samuel Adams Boston Lager® but rather the culmination of over two years of tireless research and brewing trials to create a flavorful Light beer. And it has proved to be worth the wait. Brewed using only the finest two row malt and German Noble hops it has a smooth, complex roasted malt character that is superbly balanced with the subtle orange fruit notes of the Noble hops. Sam Adams Light® finishes crisp and smooth without any lingering bitterness, leaving you yearning for more.","ibu":73,"name":"Sam Adams Light","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":9.883399350715838,"category":"North American Ale","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":103,"name":"Last Stop Stout","state":"Wisconsin"},{"abv":3.9000000954000003,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":9,"name":"Refreshing Summer Ale","state":"London","website":"http://www.fullers.co.uk/"},{"abv":11.110941885915263,"category":"North American Lager","city":"Collegeville","coordinates":[40.1857,-75.4516],"country":"United States","ibu":86,"name":"Peckiomen Pils","state":"Pennsylvania"},{"abv":13.469977094570936,"category":"Irish Ale","city":"Albuquerque","coordinates":[35.0845,-106.651],"country":"United States","ibu":54,"name":"Plaza Porter","state":"New Mexico"},{"abv":9.363277384689855,"category":"North American Ale","city":"Blue Ash","coordinates":[39.232,-84.3783],"country":"United States","ibu":33,"name":"Y2KIPA","state":"Ohio"},{"abv":1.3316773058548748,"category":"North American Ale","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":47,"name":"Pale Ale","state":"California"},{"abv":5.0999999046,"address":"231 San Saba Court","category":"North American Ale","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Smooth blend of malt, citrus and fruit","ibu":56,"name":"Firemans #4","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":6,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Stout was first introduced by Guinness in Ireland as \"Extra Stout\" (a stronger version of their Porter). Later, the stronger Imperial and Double Stouts emerged. Sweet, Milk, and Oatmeal Stouts are English adaptations with less alcohol and less bitter then the dry Irish Stouts. Victorian England recognized Oatmeal Stouts nutritional value and it is traditionally the drink of choice for nursing mothers and athletes. It is a beer equally at home with oysters as it is with a homemade pizza and freshly tossed green salad (or as a float over ice cream).\n\n\nRogues Shakespeare Stout received a 99, the highest score of the 309 beers in 44 categories at the 1994 World Beer Championships. The June/July 1998 issue of Mens Journal included Rogue Ales Shakespeare Stout as one of \"The 100 Best Things to Eat in America.\"Based on Stuart Kallens book, \"The 50 Best Beers in the World\", Shakespeare Stout was ranked the third best beer in the world and best American Beer--which makes it the Worlds Best Stout!\n\n\nRogues Shakespeare Stout is ebony in color, a rich creamy head and a mellow chocolate aftertaste. It is made from Northwest Harrington, Crystal, and Chocolate malts, roasted barley and rolled oats, along with Cascade hop. Shakespeare Stout is available in the classic 22-ounce bottle, a commemorative 3-litre bottle with ceramic swing-top, and on draft.","ibu":29,"name":"Shakespeare Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":7,"address":"814 W Hamilton St","category":"North American Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Hoppiest Brew Works beer ever? The smell of grapefruit, a sweet malt flavor, and oh by the way, lots of hop bitterness. Brewed in the tradition of West Coast ales, we have put loads of malt and hops in our kettle to come up with this sensational ale. Brewed with pale, and crystal malts, hopped with Tomahawks for Yakima Valley, WA. This beer styled has made many a microbrewery famous and this one is sure to please all those who love hops.","ibu":18,"name":"Hop Explosion","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":5.3499999046,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"rk in color yet medium bodied. Rich and smooth.\n\nSamuel Adams® Brown Ale is a study in flavor, body, and style. Supported by an interesting blend of malts, it shines with a deep mahogany luster. The roasted malt blend is complex and deep as well, with notes of biscuit, nut and caramel. The hops are imported from Europe; Noble Spalt from Germany and citrusy Goldings, a traditional British ale hop selected from a single farm in East Kent. With moderate hop bitterness, a deep malt body, and a fruity ale fermentation character, Samuel Adams® Brown Ale satisfies the soul and doesn","ibu":40,"name":"Samuel Adams Brown Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":4.5,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"Adnams Suffolk Special Bitter, at 4.5% alcohol by volume, is a dry, crisp, refreshing, and distinctly hoppy example of its style.\n\n\nThis beer is also available in some markets in tradtional cask form, as Adnams Bitter. At only 3.7% alcohol, Adnams Bitter is the classic English 'ordinary,' though we think you'll agree that there's full of flavor.\n\n\nDespite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain’s fastest growing brewery over the last two years. To top it off, Adnams’ head brewer was recently chosen as Britain’s Brewer of the Year by a panel of his peers.","ibu":76,"name":"Adnam's Suffolk Special Bitter","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":11.800000191,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"First released in March 2007, Blasphemy is our award winning QUAD aged in bourbon barrels. But not overaged, so we've picked up gentle vanilla oaky notes which complement rather than supercede the complex qualities that already make QUAD such an incredible beer. Expected to be an annual Spring seasonal, supplies are limited. ABV is 11.8%.","ibu":87,"name":"Blasphemy","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.9400000572,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A smooth, refined version of a classic ale.\n\nSamuel Adams® Boston Ale was first brewed to celebrate the opening of our Boston Brewery. Like Samuel Adams Boston Lager®, it was an old family recipe that was rescued by Jim Koch from his father's attic. Samuel Adams® Boston Ale, a Stock Ale, has a complex, caramel malt character balanced with distinct spicy and herbal hop notes. Our proprietary ale yeast imparts a variety of fruit and ester notes in both the nose and flavor which are indicative of the style.","ibu":2,"name":"Samuel Adams Boston Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":10,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","description":"The Mighty Fish Brewers first produced Ten Squared Anniversary Ale to celebrate Fish Brewing Company’s tenth anniversary. The ale was so good and the response to it so overwhelmingly positive that it has become the crown jewel of REEL ALEs. Ten different hops: Horizon, Chinook, Columbus, Willamette, Tradition, Northern Brewer, Santiam, Tettnanger, Cascade and Golding, in the order of their use -- give Ten Squared a unique hop character which has to be tasted to be believed. \n\n\nEven with 100 IBUs, this brew sports a strong malt backbone. Two-row Pale, Caramel 40, Caramel 75, Special B and Aromatic malts impart remarkable balance for such a hop monster. This is smooth ale with surprising similarities to ten year old malt whiskey. Produced for the holidays, 10 102 Anniversary Ale is usually available into late spring.","ibu":31,"name":"10 Squared (10²)","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.248118193225821,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This American wheat beer is infused with 20% wildflower honey resulting in a light, semi-sweet refreshing beverage. This beer represents the next evolution of Sophie’s Sparkling Ale as we have added the wheat base, essentially combining two of our most popular beers. This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg.","ibu":55,"name":"Wildflower Honey Wheat","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5.3000001907,"address":"50 N. Cameron St.","category":"German Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A special German wheat ale yeast produces clove and banana flavors during fermentation leaving this unfiltered beer with an incredibly spicy and fruity complexity!\n\n\nOur Brewmaster has acquired many medals at the Great American Beer Festival for this beer style. A difficult, four-step infusion mash schedule produces the complexity of this traditional beer style.","ibu":20,"name":"Hinterland Hefe Weizen","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":3.3558864591563795,"city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":78,"name":"Hula Girl Pale Ale","state":"Hawaii"},{"abv":10.972609588841658,"address":"2380 Larsen Drive","city":"Camino","coordinates":[49.1482,-122.862],"country":"United States","ibu":65,"name":"Best Bitter Ale","state":"California"},{"abv":7.878736368799545,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":63,"name":"Triple Nickel Irish Stout","state":"Illinois"},{"abv":12.58198400251178,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":15,"name":"Ringneck Red Ale","state":"South Dakota"},{"abv":5.1999998093,"address":"550 South Wisconsin Avenue","category":"North American Ale","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"A standard American-style beer and our flagship brand. A small amount of corn is added to the grist to give the brew a smooth character. Features a rich, golden color and a light malt character balanced with a mild dose of hops.","ibu":81,"name":"Big Buck Beer","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":6.5,"address":"66 East Eighth Street","category":"British Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"The Poet has a rich, smooth malt character enveloped in tones of roast and chocolate. A soft mouth-feel brings luxurious flavors and soothing aroma. It pairs wonderfully with earthy flavors such as mushrooms and beef, while remaining the perfect accent to any chocolate.","ibu":5,"name":"The Poet","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":14,"address":"Eggenberg 1","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"Brewed only once a year on December 6. Samichlaus is aged for 10 months before bottling. This beer is perhaps the rarest in the world. Samichlaus may be aged for many years to come. Older vintages become more complex with a creamy warming finish.","ibu":114,"name":"Samichlaus Bier 2006"},{"abv":5.5,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This traditional Witbier (Wheat beer) has been developed in cooperation with Master Brewer Pierre Celis, the Godfather of Hoegaarden and Celis White. \n\n\nThis beer as well has a second fermentation in the bottle, giving this beer its specific taste (5.5% alcohol content).","ibu":77,"name":"St. Bernardus Witbier","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A light to medium bodied deep golden ale that starts with an elegantly creamy malt complexity and ends with a firm but understated hop finish that balances the initial sweetness with a touch of bitterness.","ibu":57,"name":"Orlio Common Ale","state":"Vermont","website":"http://www.orlio.net/"},{"abv":8.5,"address":"Chiswick Lane South","category":"British Ale","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","description":"I have crafted this very special ale from the finest Challenger and Northdown hops, Maris Otter malted barley, and of course, our unique yeast, to create a truly extraordinary limited edition brew.\n\n\nIndividually packed and numbered, this bottle is one of only one hundred and forty-five thousand produced.","ibu":114,"name":"Vintage Ale 2008","state":"London","website":"http://www.fullers.co.uk/"},{"abv":4.5,"address":"1714 Camus Lane","city":"Madison","coordinates":[43.0844,-89.4761],"country":"United States","ibu":13,"name":"Fauerbach Amber Lager","state":"Wisconsin","website":"http://www.fauerbachbrewery.com/"},{"abv":4.5999999046,"address":"470 Prospect Village Dr.","category":"Irish Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Porters are dark ales without the roasted malt character of a stout. Our porter is a brown porter with a very smooth, balanced profile.","ibu":88,"name":"Estes Park Porter","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":12.619842142756486,"address":"1430 Washington Avenue South","category":"Other Style","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Our popular summer seasonal brewed with honey, orange, and lemonrass.","ibu":20,"name":"Thunderstorm","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.4000000954,"address":"D-73525 Schwbisch Gmnd","category":"German Lager","city":"Schwbisch Gmnd","country":"Germany","ibu":45,"name":"Trompe La Mort","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"7160 Oliver Street","category":"North American Lager","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":22,"name":"Cream Ale","state":"British Columbia"},{"abv":5.1999998093,"address":"Friedhofstrae 20-36","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":30,"name":"Edel-Spezial","state":"Baden-Wrttemberg"},{"abv":12,"address":"Emil-Ott-Strasse 1-5","category":"German Lager","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":114,"name":"Aventinus Weizen-Eisbock","website":"http://www.schneider-weisse.de"},{"abv":1.161710834187617,"address":"2880 Wilderness Place","category":"British Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":19,"name":"GABF 25th Year Beer","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.090260629264234,"address":"1001 16th Street #A-100","category":"North American Ale","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":1,"name":"Falcon Pale Ale","state":"Colorado"},{"abv":14.000923071452945,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":111,"name":"Sugar River ESB","state":"Wisconsin"},{"abv":5.504681143027708,"category":"British Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":46,"name":"Deep Powder Winter Ale","state":"Washington"},{"abv":6.841285931624873,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":36,"name":"Michelob Hefeweizen","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.4000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":29,"name":"Kapuziner Kristall-Weizen","state":"Bayern"},{"abv":8,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":21,"name":"Lucifer","state":"West-Vlaanderen"},{"abv":10.01990248985571,"address":"243 North Gaither Street","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":11,"name":"Mojo Ale","state":"Oregon"},{"abv":5,"address":"Westgate Street","category":"Other Style","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","description":"Based on a traditional Irish recipe from county Wexford that dates back to 1810, we use only the best ingredients to ensure that our Wexford Ale has a smooth mellow creaminess we believe you will enjoy.","ibu":30,"name":"Wexford Irish Cream Ale","state":"Suffolk"},{"abv":7.111320380288555,"address":"Carretera a Puerto Corts","category":"North American Lager","city":"San Pedro Sula","country":"Honduras","ibu":76,"name":"Port Royal Export"},{"abv":5.9244879771451515,"address":"26 Old Cross","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":95,"name":"AK Original Bitter","state":"Hertfordshire"},{"abv":11.134938400233406,"address":"1000 Great Highway","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":26,"name":"Essex S.O.B.","state":"California"},{"abv":12.69675749093929,"category":"Irish Ale","city":"Wauwatosa","coordinates":[43.0495,-88.0076],"country":"United States","ibu":4,"name":"Badger Porter","state":"Wisconsin"},{"abv":5.6999998093,"address":"45980 Waterview Plaza","category":"North American Ale","city":"Sterling","coordinates":[39.0324,-77.4097],"country":"United States","description":"A fruity, copper-colored ale with a firm maltiness & dry hop.","ibu":63,"name":"Great American's Restaurant Pale Ale","state":"Virginia","website":"http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"},{"abv":5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Royal Challenge Premium Lager is the second largest selling mild beer in India. Royal Challenge is brewed with the choicest 6 malt barley. Its long brew duration provides it with a distinct, smooth taste and rich flavour. It has all the hall marks of a great beer - Color that is golden honey, taste that is smooth and crisp, lace that sticks to the wall of the glass. Royal Challenge Premium Lager is the beer for the discerning who have the confidence to make their choices based on their superior taste and knowledge rather than follow the crowd.\n\n\n\nhttp://www.sabmiller.in/brands_royal-challenge.html","ibu":3,"name":"Royal Challenge","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":11.52780633285306,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \"Cousin Jack\" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin!","ibu":35,"name":"Bourbon Barrel Aged Cousin Jax","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.8000001907000005,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"The Hoffmann Helles (pronounced Hell-es), which is German for \"bright\" is a pleasant and easy to drink summer beer with a bready/grainy taste.","ibu":3,"name":"Climax Helles","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":7,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"Irish Ale","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":18,"name":"Baltika 6 Porter","state":"Sankt-Peterburg"},{"abv":6.0999999046,"address":"1634 18th Street","category":"North American Ale","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A dark, deeply roasted and full-bodied ale. Rich with kisses of chocolate, coffee and oats, it's a glorious version of an American-style stout. A longtime house favorite.","ibu":0,"name":"Sagebrush Stout","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":11.245314905150034,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"A bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia.\n\n\n A spiced saison with chamomile, rosemary and black pepper.","ibu":42,"name":"Saison Athene","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":5.5,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"\"O'zapft is!\" The cry of happy beer drinkers at the start of the Munich Oktoberfest, which in German means \"The keg is tapped!\" Rahr's Oktoberfest Celebration Lager is a traditional Marssen style Oktobefest lager - dark amber in color, super smooth, medium body with a sweet malty finish. True to tradition, this is a classic Oktoberfest Lager.","ibu":105,"name":"Rahr's Oktoberfest","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":11.343229998449742,"address":"1 Old Brewery Lane","category":"North American Lager","city":"Formosa","country":"Canada","ibu":104,"name":"Waterloo Dark","state":"Ontario"},{"abv":8.6999998093,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Gordon is a hybrid version of strong ale, somewhere between an Imperial Red and a Double IPA. We make it with six different malts and three types of hops, then dry-hop it with a mutha lode of Amarillo hops. It is 8.7% alcohol by volume, and has 85 International Bittering Units. \n\n\nIt features a gooey, resiny aroma and a luscious mouthfeel. Gordon is brewed with dash of chocolate malt in it, to round out its load of hops and balance the beer. The result is an assertive yet exceptionally smooth version of strong beer.\n\n\nWe brew Gordon in tribute to the late Gordon Knight. In addition to opening some of Colorado’s first microbreweries, Knight was a Vietnam vet, grade-A citizen, and huge promoter of craft beer. He lost his life in 2002 while fighting a wild fire outside of Lyons, Colorado.\n\n\nOriginally our winter seasonal beer, it has become a cult favorite of extreme-beer lovers, so we now brew occasional batches of Gordon throughout the year. Released in bottles in 2003 and 2004, Gordon is now sold in four packs of hand-labeled cans and on draft in select markets.\n\n\n--http://www.oskarblues.com/brew/","ibu":62,"name":"Gordon","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":5,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This Delicious Fruity ale is brewed with blackberries, raspberries and sweetened with a touch of blueberry honey. Light and refreshing.With a reddish-Amber color, be sure to look for the ale bitter and berry sweetness. Enjoy!","ibu":8,"name":"Saranac Mountain Ale","state":"New York","website":"http://www.saranac.com"},{"abv":5.0999999046,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Malt Advocate described Saint Rogue Red as \"An ale with great character and plenty of hops to satisfy. Full aromatic punch of caramel, citrus fruit and melon, with underlying fresh earth tones. Sweet caramel notes up front are quickly taken over by an array of fruit and hops bitterness that lingers into the night. A more adventurous ale than most.","ibu":117,"name":"Dry Hopped St. Rogue Red Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":9,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"Trois Pistoles has a dark brown color topped with a rich foam mousse.\n\nIts slightly sweet taste is enhanced by accents of roasted malt, cocoa, ripe fruit and dark spices with a smooth finish like an old port.\n\n\nBrewed with four selected malts and four\n\nexotic spices, Trois Pistoles beckons with a\n\nsubtle sweetness that makes it surprisingly\n\nsmooth and satisfying for a beer of such strength and complexity.","ibu":17,"name":"Trois Pistoles","state":"Quebec","website":"http://www.unibroue.com"},{"abv":9.8000001907,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep, golden, rich malt flavor huge citrus, fruity grassy, ethanol sweetness aroma with a profound bitterness, yet balanced malt back bone with grapefruit, mellow citric overtones. Dry hopped three times in the fermenter. Brewed with over 65 lbs of hops for 300 gallons of beer. The beer to bring world peace and end the war. Bronze Medal - 2006 Imperial IPA Festival at the Bistro in Hayward, California.","ibu":100,"name":"Double Trouble IPA","state":"California","website":"http://www.21st-amendment.com/"},{"abv":4.5,"address":"Bergerstrae 1","category":"North American Ale","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":75,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":9.591160712162205,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":101,"name":"E.S.B.","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":10.5,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":40,"name":"Winter","state":"Lige"},{"abv":5.0999999046,"address":"1001 North 102nd Street","category":"North American Ale","city":"Omaha","coordinates":[41.2672,-96.0714],"country":"United States","ibu":11,"name":"Duke IPA","state":"Nebraska"},{"abv":4.5,"address":"Unit 3, Century Park, Valley Way","city":"Swansea","coordinates":[51.6666,-3.9443],"country":"United Kingdom","ibu":10,"name":"OSB Premium Ale","state":"Wales"},{"abv":7.5,"address":"Denterhoutembaan 2","city":"Ninove","coordinates":[50.8417,4.0213],"country":"Belgium","ibu":101,"name":"Witkap-Pater Tripel","state":"Oost-Vlaanderen"},{"abv":4,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":106,"name":"Bitter","state":"Oxford"},{"abv":6.033167365593956,"category":"North American Ale","city":"Holland","coordinates":[42.7875,-86.1089],"country":"United States","ibu":26,"name":"Lake Effect Stout","state":"Michigan"},{"abv":6.735736381711589,"address":"4301 West Wisconsin","city":"Appleton","coordinates":[44.2678,-88.4731],"country":"United States","ibu":102,"name":"Fox River Golden Ale","state":"Wisconsin"},{"abv":0.4541227647220947,"address":"1101 North Water Street","category":"German Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":81,"name":"Bavarian Weiss Beer","state":"Wisconsin"},{"abv":10.28582506478822,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":106,"name":"Rendezvous Bière de Garde","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":7.180124629048656,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":52,"name":"Adler Bräu Oatmeal Stout","state":"Wisconsin"},{"abv":12.507128370307548,"address":"Burg. van den Heuvelstraat 35","category":"North American Lager","city":"Lieshout","coordinates":[51.5163,5.5977],"country":"Netherlands","ibu":65,"name":"Hollandia"},{"abv":0.22935933600603198,"category":"North American Ale","city":"Casper","coordinates":[42.8666,-106.313],"country":"United States","ibu":104,"name":"Surefire Stout","state":"Wyoming"},{"abv":10.818187071795219,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":99,"name":"Queen of Clubs Schwarzbier","state":"Wisconsin"},{"abv":1.5708827502517964,"category":"North American Lager","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":111,"name":"Wazee Wheat","state":"Colorado"},{"abv":3.599999904599999,"address":"639 Conner Street","category":"North American Lager","city":"Noblesville","coordinates":[40.0453,-86.0155],"country":"United States","ibu":103,"name":"Flat Belly American Wheat","state":"Indiana"},{"abv":3.516740244186094,"address":"2100 Locust Street","category":"North American Lager","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":37,"name":"Schlafly Wheat Ale","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":5.81031523069914,"address":"114 North Main Street","category":"North American Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":70,"name":"Stubbins Stout","state":"Michigan"},{"abv":12.167099998063998,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":98,"name":"Organic Extra Special Bitter","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":9.15717056495116,"address":"2617 Water Street","city":"Stevens Point","coordinates":[44.5104,-89.5734],"country":"United States","ibu":75,"name":"Augsburger Golden","state":"Wisconsin"},{"abv":5,"address":"617 Fourth Street","category":"North American Ale","city":"Eureka","coordinates":[40.8032,-124.165],"country":"United States","description":"A smooth, full-bodied nut brown ale, lightly hopped with a hint of roasted chocolate and crystal malts. This ale is dark in color without the heavy taste of porter or stout.","ibu":21,"name":"Downtown Brown","state":"California","website":"http://www.lostcoast.com/"},{"abv":0.9450022243546163,"address":"1327 North 14th Street","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":83,"name":"Pumpkin Ale","state":"Wisconsin"},{"abv":7.908117820706653,"address":"835 48th Avenue","category":"German Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":68,"name":"Schokolade Bock","state":"Iowa"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"This traditional Belgian Whitbierre is the multiple gold medal winning Pierre Celis original. White and cloudy in appearance, brewed with wheat and seasoned with orange peel and coriander. A refreshing unfiltered ale that is both sweet and tart.","ibu":13,"name":"Celis White","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"A British Pale Ale never tasted so fresh. We challenge our good friends across the pond to match this one. Can’t be done. We’ve honored the traditions of the great British Pale brewers of Burton-on-Trent using our patented Firestone Union oak barrels. You’re left with a mild blend of vanilla and toasted oak flavor touched with an elegant hint of English noble hops. DBA is the flagship of our company and wildly popular.","ibu":78,"name":"Double Barrel Ale","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.4131626839774065,"address":"2922 Lyndale Avenue South","city":"Minneapolis","coordinates":[44.9491,-93.2885],"country":"United States","ibu":55,"name":"Kolsch","state":"Minnesota"},{"abv":5.074465091234773,"address":"8377 Pearl Road","city":"Strongsville","coordinates":[41.347,-81.8226],"country":"United States","ibu":118,"name":"Big Woody Lager","state":"Ohio"},{"abv":8,"address":"407 Radam, F200","category":"Belgian and French Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"Our first anniversary release is a Belgian-style strong ale that is amber in color, with a light to medium body. Subtle malt sweetness is balanced with noticeable hop flavor, light raisin and mildly spicy, cake-like flavors, and is finished with local wildflower honey aromas. Made with 80% Organic Malted Barley, Belgian Specialty grains, Forbidden Fruit yeast, domestic hops and Round Rock local wildflower honey, this beer is deceptively high in alcohol.","ibu":65,"name":"One","state":"Texas","website":"http://512brewing.com/"},{"abv":8,"address":"Rue de Panneries 17","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian Bière de Garde - full of fruity esters, alcohol phenols, Belgian malts, noble hops and a dry, refreshing after-taste. Award-wining Mont Saint-Aubert received 'World's Best\" recognition in the Bière de Garde category during the 2009 World Beer Awards (London).\n\nIn 2008 Mont Saint-Aubert took Silver medals in the Belgian-Style Pale Strong Ale category at the Brewers Association World Beer Cup and the Australian International Beer Awards.","ibu":80,"name":"Mont St. Aubert","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":11.5,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":87,"name":"Night Stalker","state":"Illinois"},{"abv":1.9822377866145435,"address":"100 Searsport Avenue","category":"North American Ale","city":"Belfast","coordinates":[44.4295,-68.975],"country":"United States","ibu":22,"name":"Lobster Ale","state":"Maine","website":"http://www.belfastbaybrewing.com/"},{"abv":2.2175729161680255,"address":"75-5629 Kuakini Highway","category":"Irish Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","description":"Pipeline Porter is smooth and dark with a distinctive roasty aroma and earthy complexity from its diverse blends of premium malted barley. This celebration of malt unites with freshly roasted 100% Kona coffee grown at Cornwell Estate on Hawaii’s Big Island, lending a unique roasted aroma and flavor. A delicate blend of hops rounds out this palate-pleasing brew.","ibu":81,"name":"Pipeline Porter","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":4.8000001907000005,"address":"306 Northern Avenue","category":"Other Style","city":"Boston","coordinates":[42.3465,-71.0338],"country":"United States","description":"We have added natural raspberry flavor to our UFO Hefeweizen to create this beer. Consistent with the hefeweizen style, this beer is unfiltered and cloudy with a solid foamy head. UFO Raspberry has a distinctive, hazy rose color. The scent of fresh raspberries hits the nose immediately, along with a subtle bready aroma from the wheat and yeast. The body is light and the unfiltered yeast provides a soft mouthfeel. The taste of the fruit compliments the beer nicely, neither overwhelms the other. There is a faint sweetness on the palate, which finishes cleanly in a semi-dry, tart finish.","ibu":24,"name":"UFO Raspberry Hefeweizen","state":"Massachusetts","website":"http://www.harpoonbrewery.com"},{"abv":5.1999998093,"address":"91 S Royal Brougham Way","category":"German Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","description":"Brewed by the original Wheat Beer Pioneers, Pyramid Hefe Weizen is left unfiltered for extra flavor and aroma. \n\n\nHandcrafted with 60% malted wheat (10% more than Bavarian tradition calls for), our award-winning Hefe Weizen is unsurpassed in quality and exceptionally smooth and refreshing for the whole beer experience.","ibu":84,"name":"Pyramid Hefe Weizen","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":9.6000003815,"address":"Ul. Marii Konopnickiej 1","category":"North American Ale","city":"Witnica","coordinates":[52.6739,14.9004],"country":"Poland","ibu":37,"name":"Porter Czarny Boss / Black BOSS Porter","website":"http://www.browar-witnica.pl/"},{"abv":13.529354253491437,"address":"Heitzerstrae 2","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":105,"name":"Hefe-Weizen Dunkel","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":11.93237028085949,"address":"The Eagle Maltings","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":24,"name":"Wychcraft","state":"Oxford"},{"abv":11,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":54,"name":"EKU 28","state":"Bayern"},{"abv":6.5999999046,"address":"Victor Nonnemansstraat 40a","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":28,"name":"Zinnebir Xmas","state":"Vlaams Brabant"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":20,"name":"Bigfoot 2004","state":"California","website":"http://www.sierranevada.com/"},{"abv":0.22397300781922147,"address":"809 Rue Ontario Est","city":"Montreal","coordinates":[45.5181,-73.5642],"country":"Canada","ibu":105,"name":"Apocalypse Buckwheat Ale / Coup de Grisou","state":"Quebec"},{"abv":7.465340678543639,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":48,"name":"Amber","state":"Wisconsin"},{"abv":9.158424744563465,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":85,"name":"Kölsch","state":"Colorado"},{"abv":6.0584928311186435,"address":"4700 Cherry Creek Drive South","category":"North American Ale","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":26,"name":"Big Ben Brown","state":"Colorado"},{"abv":6.981831437901501,"category":"North American Ale","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":24,"name":"River City Red Ale","state":"Missouri"},{"abv":10,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"A bit of backwoods pleasure without the banjo. This stout is brewed with a hint of coffee and vanilla then aged in oak bourbon barrels. Our process ensures that strong bourbon undertones come through in the finish in every batch we brew. We recommend decanting at room temperature and best enjoyed in a brandy snifter.","ibu":83,"name":"Founders Kentucky Breakfast","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":6.5,"address":"357 Salmon Brook Street","category":"British Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"As English style extra special bitter, brewed using the finest malt and hops from England to produce a well balanced medium body pint.","ibu":21,"name":"Old Mill Pond ESB","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":5.1999998093,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A dark beer made with a touch of roasted chicory, organic Mexican coffee, St. John's Wort, and licorice root. Brewed with whole-leaf Cascade and Fuggles hops, the grains include pale, roasted & oatmeal.","ibu":62,"name":"Chicory Stout","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.830793965024789,"address":"5500 Greenville Avenue #1300","city":"Dallas","coordinates":[32.8545,-96.7687],"country":"United States","ibu":47,"name":"ESB","state":"Texas"},{"abv":12.078484763499716,"category":"North American Ale","city":"Kahului","coordinates":[20.8947,-156.47],"country":"United States","ibu":4,"name":"Amber","state":"Hawaii"},{"abv":3.0282934716353127,"category":"North American Lager","city":"Suisun City","coordinates":[38.2382,-122.04],"country":"United States","ibu":64,"name":"Weizen","state":"California"},{"abv":14.037484079786548,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":94,"name":"Summer Brau","state":"California"},{"abv":10.727738754197404,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":7,"name":"Blue Heron Pale Ale","state":"California"},{"abv":1.631760415770045,"address":"13351 Highway 101","category":"Irish Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":59,"name":"Yuletide Porter","state":"California"},{"abv":12.808086936810449,"category":"German Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":74,"name":"Hefeweizen","state":"North Carolina"},{"abv":12.681510100178222,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":57,"name":"Noche Buena Special Holiday Amber Beer","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":1.5302944827743103,"address":"717 East Butterfield Road","category":"German Lager","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":53,"name":"Dark Satin","state":"Illinois"},{"abv":2.2508124509253715,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":83,"name":"Hinterland Pub Draught","state":"Wisconsin"},{"abv":14.198187252679231,"address":"313 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":13,"name":"Hinterland Amber Ale","state":"Wisconsin"},{"abv":4.5,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":84,"name":"Spitfire Premium Kentish Strong Ale","state":"Kent"},{"abv":4.5,"address":"3525 Liberty Avenue","category":"German Ale","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"I’m sure everyone here knows, Pittsburgh has some humid summers. What can you do to escape the heat and enjoy yourself? Well I’ve got the answer. How about a light thirst quenching Hefe Weizen (pronounced hefa Vite zen) in the cool environment of our Hop Garden patio. I can hear you wondering, what is a hefe weizen? Allay your fears my friends because I’m going to tell you. A hefe weizen is a special style of beer made with malted wheat and malted barley. Hefe weizens are from Germany. This beer is top fermented (an ale) with a very special yeast. The Hop levels are kept deliberately low in order to bring out the character of the yeast. If you notice the nose of the beer, it has a clove-like or fruity aroma. The grain bill includes 50% wheat malt and 50% barley malt. It is served very carbonated and a touch cloudy. It is cloudy because it is served unfiltered. The remaining yeast contributes flavor, adds B vitamins, and improves the beer as it ages.","ibu":36,"name":"Heavenly Hefeweizen","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":5.3499999046,"address":"24 North Pleasant Street","category":"British Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Amber in color, medium body with very hoppy aroma and bitter finish. Dry hopped with Oregon Goldings","ibu":70,"name":"Amherst ESB","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":3.267843177881785,"category":"Irish Ale","city":"White River Junction","coordinates":[43.649,-72.3193],"country":"United States","ibu":119,"name":"Porter","state":"Vermont"},{"abv":11.787217727908647,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":9,"name":"Birra Canadeo / Gridiron Gold","state":"Wisconsin"},{"abv":12.604770958741442,"address":"200 Dousman Street","category":"North American Ale","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":95,"name":"Bridge Out Stout","state":"Wisconsin"},{"abv":4.5999999046,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":68,"name":"Old Hooky","state":"Oxford"},{"abv":5.1999998093,"address":"Grntenstrae 7","category":"German Ale","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":59,"name":"Bavarian-Weissbier Hefeweisse / Weisser Hirsch","state":"Bayern"},{"abv":5.867264340558702,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":8,"name":"Habañero","state":"Minnesota"},{"abv":7.5,"address":"Hohe Buchleuthe 3","category":"German Lager","city":"Kaufbeuren","coordinates":[47.8781,10.6161],"country":"Germany","ibu":35,"name":"St. Martin Doppelbock","state":"Bayern","website":"http://www.aktien-brauerei.de/"},{"abv":6.5999999046,"address":"451 Wilmington-West Chester Pike","category":"North American Ale","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":42,"name":"East Kent IPA","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":2.7346890533169868,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":61,"name":"New Century Beer","state":"Wisconsin"},{"abv":14.908446149501493,"address":"7734 Terrace Avenue","category":"North American Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":82,"name":"Capital Wisconsin Amber","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":5.460820060885366,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":37,"name":"Old Woody Pale Ale","state":"Indiana"},{"abv":1.3737246359295796,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":25,"name":"Imperial Stout","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":8,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Introduced on May 1, 2007. Available May and June. Distributed throughout our network of wholesalers in draft and 22 oz. bottles.","ibu":99,"name":"PENNdemonium","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":9,"address":"2800 North Reading Road","category":"Belgian and French Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"The Triple is a strong, full-bodied Belgian abbey-style ale. The authentic Belgian yeast strain used in fermentation contributes to a rich array of spicy, phenolic, and fruit-like flavors and noticeable alcoholic warmth. This unfiltered ale has an irresistible pale orange-colored hazy glow.","ibu":11,"name":"Abbey Triple","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":106,"name":"Milwaukees Best","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":10.847110883506604,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":34,"name":"Kona Coffee Stout","state":"Hawaii"},{"abv":0.8249654441201548,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":79,"name":"Kickstart Oatmeal Stout","state":"Arizona"},{"abv":3.96529041019263,"address":"127 South Grove Avenue","category":"North American Ale","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":38,"name":"Honey Brown Ale","state":"Illinois"},{"abv":4.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Fat City Ale is the newest release from Valley Brewing Company. Fat City Ale is produced using only the finest 2-Row Barley and fresh Hops resulting in a crisp and refreshing flavor.","ibu":22,"name":"Fat City Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":9,"address":"2051A Stoneman Circle","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"The hexagram talisman has been used around the world for centuries to invoke magic and good luck. The six–point star is also the customary symbol of the brewer, representing the essential aspects of purity: water, hops, grain, malt, yeast, and of course, the brewer. Wishes of good fortune often collaborate with the brewer’s creativity to yield dramatic results. We carefully chose the name for this Imperial India Black Ale, Iniquity – a word opposing goodness. Why? This beer is contrary to what one may expect from an IPA; this is an ale as black as night. It is the antithesis of Unearthly. Some may consider it an immoral act to blacken an ale. We suggest they don’t rely on conventional standards. Allow the darkness to consume you. Cheers!","ibu":53,"name":"Iniquity Imperial Black Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":50,"name":"Fireside Nut Brown","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":14.668425762158385,"address":"170 Orange Avenue","category":"German Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"The Coronado 'Islandweizen' is our version of an American-styled Hefeweizen or unfiltered wheat beer. It's lightly hopped with Nobel Tettnang and Saaz hops to create a great full-bodied beer. This refreshing beer can be enjoyed with a slice of lemon.","ibu":81,"name":"Islandweizen","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.4200000763,"address":"23 South Main Street","category":"Irish Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This dark mahogany ale has agreat and delicious malt depth, yet is balanced with supple, energizing bitterness.","ibu":6,"name":"Pappy's Porter","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5,"category":"British Ale","country":"Australia","description":"http://www.fostersbeer.com/home.aspx?fullbrowser=h","ibu":66,"name":"Foster's Special Bitter","website":"http://www.fostersbeer.com/"},{"abv":6.1999998093,"address":"2516 Market Avenue","category":"North American Lager","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"An amber lager with rich, fragrant malt flavors balanced by crisp, noble hops.","ibu":16,"name":"Eliot Ness Amber Lager","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.3000001907,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":101,"name":"Gordon Biersch Schwarzbier","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"The days are long but the season is short. So what gives? Sleep! After doing more before midnight than most Outsiders do in a week, Alaskans deserve some down time. And these moments of relaxation demand more than that ordinary, non-distinct lawn mower beer. Celebrate a day well done with a beer done well—a seriously delicious IPA with some scorchin’ hops. \n\n\nOur new seasonal double IPA is designed to keep you incredibly hopped up spring through summer.","ibu":77,"name":"Meltdown Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.1999998093,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":64,"name":"Paddle Out Stout","state":"California"},{"abv":9.6999998093,"address":"1777 Alamar Way","category":"British Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":51,"name":"Triple Exultation Old Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":13.993914655711288,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":95,"name":"Cardinal Pale Ale","state":"Nebraska"},{"abv":13.52142730112371,"address":"Grntenstrae 7","city":"Sonthofen","coordinates":[47.5132,10.279],"country":"Germany","ibu":29,"name":"Neuschwansteiner Bavarian Lager","state":"Bayern"},{"abv":1.1540075661252258,"address":"515 Jefferson Street SE","category":"Irish Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":28,"name":"Mudshark Porter","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":2.857599967243515,"address":"871 Beatty Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":72,"name":"Red Truck Ale","state":"British Columbia"},{"abv":5.3000001907,"address":"Am Hopfengarten 5","city":"Leutkirch im Allgäu","coordinates":[47.8243,10.0239],"country":"Germany","ibu":28,"name":"Dunkle Weisse","state":"Baden-Württemberg"},{"abv":6,"address":"Hohenzornstrasse 2","category":"North American Lager","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":35,"name":"Honey Brown Ale"},{"abv":10,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":55,"name":"Ultrabrune","state":"Hainaut"},{"abv":6,"address":"Mendoza","category":"German Lager","city":"Mendoza","coordinates":[-32.8902,-68.844],"country":"Argentina","ibu":88,"name":"Cerveza Roja"},{"abv":5.3000001907,"address":"830 Main Street","category":"North American Ale","city":"Pleasanton","coordinates":[37.6645,-121.873],"country":"United States","ibu":5,"name":"Pleasanton Pale","state":"California"},{"abv":13.905933392424808,"category":"North American Ale","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":58,"name":"Celtic Stout","state":"Iowa"},{"abv":8.773027676790901,"address":"Uran","category":"North American Lager","city":"Maharashtra","coordinates":[18.88,72.94],"country":"India","ibu":100,"name":"Royal Challenge Indian Premium Lager"},{"abv":3.1755894870351087,"address":"33 Main Street","city":"Woodbridge","coordinates":[40.5549,-74.2771],"country":"United States","ibu":116,"name":"Cali \\\"Steam\\\" Locomotive","state":"New Jersey"},{"abv":5.526931909969736,"address":"The Eagle Maltings","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":23,"name":"Scarecrow Ale","state":"Oxford"},{"abv":7.558805182316934,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":106,"name":"Luna Stout","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"210 Aberdeen Dr.","city":"Valparaiso","coordinates":[41.4392,-87.1078],"country":"United States","ibu":76,"name":"Scottish Ale","state":"Indiana"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":64,"name":"Grand Cru 2003","state":"California","website":"http://alesmith.com/"},{"abv":12.05370518371587,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":93,"name":"Winter Wheat","state":"California"},{"abv":3.0218483265188856,"address":"200 North Main Street","category":"German Lager","city":"Las Vegas","coordinates":[36.1755,-115.145],"country":"United States","ibu":112,"name":"Hibernator Doppelbock","state":"Nevada"},{"abv":8.6000003815,"address":"136 East Second Street","category":"British Ale","city":"Salida","coordinates":[38.535,-105.992],"country":"United States","ibu":54,"name":"Loyal Duke Scotch Ale","state":"Colorado"},{"abv":9.870472644689816,"address":"Rue de la Frontire, 435","city":"Blaugies","coordinates":[50.3693,3.827],"country":"Belgium","ibu":89,"name":"Moneuse Speciale Noël","state":"Hainaut"},{"abv":5.5999999046,"address":"99 Castleton Street","category":"North American Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"One of the first beers I brewed after moving out to California to begin my brewing education was a Pale Ale. This version is a true testament to the influences the Wild West had on my early brewing. My Pale Ale is loaded with US-grown Cascade, Crystal, and Columbus hops, so be sure to take a good sniff to enjoy their robust aromas before taking your first sip.","ibu":67,"name":"Captin Lawrence Pale Ale","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration V is yet another exciting Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Living up to its name, Obliteration V finishes with poignant bitterness.","ibu":89,"name":"Obliteration V","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.882780438881771,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"This unfiltered ale retains a medium maltiness and body and features a flowery hop perfume and pleasant bitterness.","ibu":51,"name":"Standing Stone India Pale Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":6.4000000954,"address":"2522 Fairway Park Drive","category":"German Lager","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"An authentic, German-style Bock, celebrating the coming of spring. This strong, deeply flavored lager has been aged to create a smooth, malty taste with a hint of sweetness. A light addition of German hops balances the malt flavor. \n\n\nSaint Arnold Spring Bock is best consumed at 40° Fahrenheit.","ibu":35,"name":"Saint Arnold Spring Bock","state":"Texas","website":"http://www.saintarnold.com"},{"abv":6,"address":"701 Galveston Ave","category":"North American Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"During a fierce storm on his voyage across the ocean, William Rahr could be heard yelling from the tall masted ship: \"Roll on old sea! And when you are done, when the storm clouds have destroyed themselves, we will still be standing and drinking!\" Today, we have created the ultimate ale for a voyage such as this: A German-Style IPA - a traditional India Pale Ale with German Influence.","ibu":88,"name":"Stormcould IPA","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":12.022556877336209,"address":"2 Sagamore Street","category":"North American Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Sagamore Stout is a light, dry Irish Draught Stout. It is not only named for the street on which our brewery is located but also for the \"Sagamore\" of the Mohicans, the Chief Chingachgook. Best quaffed using a wide mouthed, full blown English Pint.","ibu":52,"name":"Sagamore Stout","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":4.6999998093,"address":"910 Montreal Circle","category":"German Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":2,"name":"Hefe-Weizen","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.8000001907000005,"address":"800 Paxton Street","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"In the 14th Century, Sailors would rely on sheer skill to get from a starting point to a final destination. They called this Dead Reckoning. We see our beer the same way. We know where to begin and know where to go, but there are hundreds of ways to get there.\n\n\nDead Reckoning is unfiltered and weighs in at 5.8% abv and 53 IBU’s. It features Pilsner, Caramel, Chocolate and Roasted malts along with Chinook and Vanguard hops. “The outstanding taste and flavor of Dead Reckoning originates in the chocolate and roasted malts,” says John Trogner. \"There is a nice hoppiness in the front of the beer, but the rich, smooth mouth feel is what really stands out.\";\"0","ibu":91,"name":"Dead Reckoning Porter","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Crack open Yeti Imperial Stout’s sophisticated sibling – Oak Aged Yeti Imperial Stout. Although these beers come from the same clan, they have entirely different personalities. Aging on a blend of French and toasted oak chips infuses a subtle oak and vanilla character into Yeti’s already intense chocolate, roasted coffee malt flavor and hugely assertive hop profile. Who says you can’t tame a Yeti?","ibu":0,"name":"Oak Aged Yeti Imperial Stout","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.1051395408573566,"address":"Brckenauer Strae 6","category":"German Lager","city":"Motten","coordinates":[50.3949,9.7724],"country":"Germany","ibu":76,"name":"Will-Bräu Ur-Bock","state":"Bayern"},{"abv":9.844531254096044,"address":"621 Front Street","city":"Mukilteo","coordinates":[47.9485,-122.305],"country":"United States","ibu":11,"name":"Icebreaker Barley Wine","state":"Washington","website":"http://www.diamondknot.com/"},{"abv":3.647322290124989,"address":"Lautenberg 1","category":"German Lager","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":105,"name":"Schwarze","state":"Baden-Wrttemberg"},{"abv":6,"city":"Sonora","coordinates":[37.9841,-120.382],"country":"United States","ibu":74,"name":"ESB (Extra Special Blizzard)","state":"California"},{"abv":4.8000001907000005,"address":"800 East Lincoln Avenue","category":"Irish Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Not quite a stout but definitely no lightweight, Cutthroat Porter is smooth and robust. Inspired by the classic London porters, we use dark roasted malts to create a deep, rich color and flavor that hint at chocolate and coffee. We named it Cutthroat Porter as our tribute to the Colorado state fish - with its own rich heritage and unmistakable dark coloring. And while we're big fans of small batches, here's to the currently threatened Cutthroat population reaching mass quantities.","ibu":1,"name":"Cutthroat Porter","state":"Colorado"},{"abv":4.5,"address":"445 St.Paul Street","category":"North American Lager","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"From the Brewer's Website:\n\nThe Dundee family began with Honey Brown Lager in the early 1990's during the height of the craft brewing resurgence. Introduced by then brewery head Jack \"JW\" Wehle, Honey Brown was a full bodied lager brewed with natural honey provided by Wixon's Farm in the Finger Lakes town of Dundee, New York. The brand was an overwhelming success that defied definition as a style and grew to tremendous acclaim, garnering several medals at the World Beer Cup and the Great American Beer Festival.","ibu":51,"name":"Honey Brown","state":"New York"},{"abv":10,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Deserving the title \"Emperor of Ales\" (unlike the bourgeois \"King of Beers\"), Imperial is the strongest and fullest of all stouts. Imperials originally were brewed with large quantities of hops and a high alcohol content to withstand long, unrefrigerated journeys. Rogue Imperial Stout, considered the high end of stouts, is made of 2-row Great Western Harrington & Klages, Hugh Baird XLT-80, Black, Munich and Chocolate Malts; Willamette, Cascade and Chinook hops; rolled oats; and two secret ingredients. Unfiltered and unfined, Imperial Stout is best when aged for one year. Imperial Stout is available in a new 750-ml ceramic swing-top bottle (replacing the much older 7-ounce and more recent 12-ounce XS-line packaging) and on draft.","ibu":59,"name":"XS Imperial Stout","state":"Oregon","website":"http://www.rogue.com"},{"abv":14.331933737933367,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"The Morimoto Soba Ale is part of the new Signature Series of Rogue Ales, launched in the Spring of 2003 with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nSoba (also known as buckwheat) is not a type of wheat but a member of the rhubard family (a fruit, not a grain!) Soba has been a longtime staple of Japanese cuisine because of its nutritional value. Buckwheat is high in potassium, phosphorous, vitamin B (50 percent more than wheat) and protein, and its virtually fat-free. The fruits of buckwheat plant are like small beechnuts, which are milled to separate the edible groats from the dark brown hulls. The groats are then roasted and used more or less like a grain (a good example is Kasha).\n\n\nMorimoto Soba Ale is brewed with Roasted Buckwheat, Pale malt, Munich Malt, 13-17 Carastan Malt, and Crystal Hops. (Note, this beer contains Gluten.) The flavor is unique, toasty-nutty sensation with medium body and good hop bitterness. Morimoto Soba Ale is available in a 22 ounce silkscreened bottle and 13.2 gallon sankey kegs.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":97,"name":"Morimoto Soba Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.8000001907000005,"address":"1100 New York Ave, NW","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness","ibu":105,"name":"Capitol Kolsch","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":4.724905381419245,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":20,"name":"Norski Honey Bock","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":11.719023129660286,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":17,"name":"Chapeau Exotic Lambic","state":"Vlaams Brabant"},{"abv":1.3607402799865909,"category":"North American Ale","city":"Peoria","coordinates":[40.6936,-89.589],"country":"United States","ibu":90,"name":"Steamboat Oatmeal Stout","state":"Illinois"},{"abv":6.485808415962268,"address":"3545 Summers Lane (restaurant)","category":"North American Ale","city":"Klamath Falls","coordinates":[42.2249,-121.782],"country":"United States","ibu":65,"name":"Kalamath Basin IPA","state":"Oregon"},{"abv":0.406658018801459,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":96,"name":"Bandit Brown","state":"Wisconsin"},{"abv":9.849316707796147,"address":"23 Commerce Street","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","ibu":66,"name":"Belgian Wheat","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":10.969070487540515,"address":"3703 North Main Street","category":"North American Lager","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":93,"name":"Wall Street Wheat Ale","state":"Indiana"},{"abv":6.797159159275966,"address":"1028 Johnny Dodds Boulevard","category":"North American Ale","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":18,"name":"Cooper River Red","state":"South Carolina"},{"abv":1.3205110755068394,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":119,"name":"Starboard Stout","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":8,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"Blond beer with a fruity and hoppy aroma and a balanced flavour with a slightly bitter aftertaste.","ibu":53,"name":"Tongerlo Tripple","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":5.8000001907000005,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","ibu":3,"name":"Trappist Westvleteren Blonde","state":"West-Vlaanderen"},{"abv":13.314502360788058,"address":"2980 Cahill Main","category":"German Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":66,"name":"Crop Circle Wheat","state":"Wisconsin"},{"abv":6.325469666312998,"address":"1514 NW Leary Way","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":67,"name":"Yo Ho Ho Christmas Ale 2001","state":"Washington"},{"abv":5.5,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":63,"name":"Gold-Pils","state":"Bayern"},{"abv":6.684878080048309,"address":"636 East Main Street","category":"North American Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":28,"name":"American Pale Ale","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":4.725913580821219,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":35,"name":"Oktoberfest","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8.1999998093,"address":"Rue Faubourg St Paul 38","city":"Binche","coordinates":[50.408,4.1659],"country":"Belgium","ibu":59,"name":"Bruin Tradition / Brune Tradition","state":"Hainaut"},{"abv":7.1999998093,"address":"Schillerstrae 14","category":"German Lager","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":99,"name":"Bajuvator Doppelbock","state":"Bayern"},{"abv":14.009361462606995,"address":"113 18th Street","category":"North American Ale","city":"Rock Island","coordinates":[41.5118,-90.5746],"country":"United States","ibu":118,"name":"Off The Rail Pale Ale","state":"Illinois"},{"abv":0.27647734371432864,"category":"North American Lager","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":89,"name":"Ribleymeister Light","state":"Iowa"},{"abv":8.5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion & purpose, we present this series of experimental hop-driven beers. Using different hop varieties & brewing techniques, we aim to educate the palate & challenge the hophead in you.\n\n\nObliteration VI is a Double IPA brewed with Summit, Summit and Summit; 95 IBU’s","ibu":91,"name":"Obliteration VI","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":2.1454199314993208,"category":"German Lager","city":"Fresno","coordinates":[36.7477,-119.772],"country":"United States","ibu":19,"name":"Pale Bock","state":"California"},{"abv":5.771420367406751,"address":"255999 Eighth Street SW","city":"Calgary","coordinates":[51.034,-114.083],"country":"Canada","ibu":53,"name":"Dry Pear Hard Cider","state":"Alberta"},{"abv":3.560780106983985,"address":"901 Gilman Street","category":"Irish Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":96,"name":"Porter","state":"California"},{"abv":5.5,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Is an award-winning, traditional, all-natural style of beer that falls under the category of a \"West Coast\" India Pale Ale (IPA). Characterized by its high hop content, high alcohol content and deep amber color, Hoppy Faceâ„¢ is brewed using water with a high mineral content. Using only the finest 2-row malted barley and great northwestern grown hops, this combination results in a clean, crisp, well-balanced beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\n\nIt will put a smile on your face!!!","ibu":3,"name":"Hoppy Face Amber Ale","state":"California","website":"http://www.hoppy.com"},{"abv":5.5999999046,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":48,"name":"Castelain Blond Biere de Garde"},{"abv":5.484857306231968,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":88,"name":"English Brown Ale","state":"Wisconsin"},{"abv":5.0999999046,"address":"Alte Akademie 2","city":"Freising","coordinates":[48.3952,11.7288],"country":"Germany","ibu":49,"name":"Original Lager","state":"Bayern"},{"abv":3.3226268132676138,"category":"North American Ale","city":"Phoenix","coordinates":[33.4484,-112.074],"country":"United States","ibu":93,"name":"Splitfinger Stout","state":"Arizona"},{"abv":0.565337903063734,"category":"North American Ale","city":"Albany","coordinates":[44.6365,-123.106],"country":"United States","ibu":112,"name":"Russian Imperial Stout","state":"Oregon"},{"abv":5.459892051799587,"address":"30 Butterfield Road","category":"German Ale","city":"Warrenville","coordinates":[41.8206,-88.2068],"country":"United States","ibu":77,"name":"Ebelweiss","state":"Illinois","website":"http://www.twobrosbrew.com/"},{"abv":8,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","description":"The first in our Brew Crew Big Beer Series, Hopmouth Double IPA is a hop lover’s delight! Deep amber hue with a generous white head, Hopmouth showcases a rich, toasty flavor and a sweet caramel notes as a result of the high-quality Maris Otter Malt, imported from the UK. The hops are right up front in the aroma, reminiscent of citrus and pine, while the resin-like flavors linger well after the last sip.\n\n\nThis is a BIG beer. True to our original vision, we have achieved a level of balance and drinkability rarely found in this style. Delicious on its own, Hopmouth is also a brilliant pair with many boldly-flavored foods, including many cheeses and desserts.","ibu":46,"name":"Hopmouth Double IPA","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":4.5,"category":"Irish Ale","city":"Kilkenny","coordinates":[52.6538,-7.248],"country":"Ireland","ibu":2,"name":"Smithwick's","website":"http://www.diageo.ie/Company/Brewing/KilKenny/CompanyBrewingKilkenny"},{"abv":12.027657883226944,"address":"5555 76th Avenue SE","category":"Other Style","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":3,"name":"Grasshopper","state":"Alberta"},{"abv":11,"address":"80 Des Carrires","category":"North American Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","ibu":111,"name":"11","state":"Quebec","website":"http://www.unibroue.com"},{"abv":4.9000000954,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":71,"name":"Chautauqua Brew","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With a summer release in mind, GREED Belgian-style Single was created miserly—relatively speaking—with one type of malt and two varieties of hops. At 5% ABV and 30 IBUs, Greed is the lightest in our series of 2007 Deadly Sin Beers. However, the Belgian yeast used in fermentation and conditioning contributes an earthy, somewhat spicy flavor and a crisp finish. We invite you to be greedy before it’s gone. \n\n\nGREED...Less [for you] is More [for me].","ibu":39,"name":"Greed","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Messenger of the gods, Mercury symbolizes commerce, travel, thievery, wit and wealth. MERCURY cleverly stole its essence from mistress lover VENUS. Second runnings of the voluptuous quadrupel created this small yet fascinating beer. Indian coriander acknowledges the traveler; a distinct Belgian yeast contributes wit & charm.","ibu":89,"name":"Mercury - Belgian Style Small Beer","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7,"address":"1430 Vantage Court #104A","category":"North American Ale","city":"Vista","coordinates":[33.136,-117.225],"country":"United States","description":"This West Coast-Style India Pale Ale is extravagantly hopped, full flavored, medium bodied and copper colored. A menagerie of hops is combined throughout the brewing process to impart specific characteristics. Hops used include Simcoe for a unique fruitiness and grapefruit zest, Columbus for strong hop pungency, Centennial for pine and citrus notes, and Cascade for floral aroma.","ibu":5,"name":"West Coast IPA","state":"California","website":"http://www.greenflashbrew.com"},{"abv":6,"address":"21 W. Bay St.","category":"Irish Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","description":"Our porter is a full bodied, semi-sweet dark ale, with distinct notes of caramel and chocolate. A touch of English grown Fuggles gives balance to the complex malty sweetness. Brewed in the loving memory of our Brew master's grandfather, the Captain.","ibu":29,"name":"The Captains Porter","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":6,"address":"901 SW Simpson Avenue","category":"German Lager","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Broken Top Bock is a malt forward, high gravity lager with a subtle aroma and warming sweetness. Czech Saaz hops balance a diverse malt composition that creates the flavor, color and mouth feel. The lager yeast chosen for this beer plays an important role in the flavor contribution, adding sweet fruit overtones. This bock boasts a clever 7% alcohol by volume so don’t let it “kick” you off of your stool.","ibu":64,"name":"Brocken Top Bock","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.6599998474,"address":"23 South Main Street","category":"North American Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"This I.P.A. is so rich and delicious that you'll need to confess after drinking one! Generously dry-hopped for your olefactory pleasure.","ibu":60,"name":"Mortal Sin","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":5.5999999046,"address":"811 Edward Street","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This malty German style lager is brewed with Bamberg smoked malt using only the best German hops and traditional lager yeast. Look for a smooth malty flavor with a hint of smoke in the finish.","ibu":115,"name":"Saranac Rachbier","state":"New York","website":"http://www.saranac.com"},{"abv":5.375076755568822,"address":"141 South Main Street","category":"North American Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"An amber-colored beer, lightly hopped, with a nice malty finish; go ahead, salute your brew.","ibu":48,"name":"Amber Waves of Grain","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":4.5999999046,"address":"619 10th St. South","category":"Irish Ale","city":"Minneapolis","country":"United States","description":"Finnegans Irish Amber is brewed with potatoes and three varieties of imported two-row malts. The beer is pale amber in color but light in body. A gentle hop bitterness compliments its complex malt character. \n\nFinnegans is currently available on tap and in liquor stores throughout the state of Minnesota. Finnegans is unique in that 100% of the profits are donated to The Finnegans Community Fund which disburses grants to help the working poor and at-risk youth throughout Minnesota.","ibu":51,"name":"Irish Amber","state":"Minnesota","website":"http://www.finnegans.org"},{"abv":10,"address":"8111 Dimond Hook Drive","category":"German Lager","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Beer Description:\n\nThis double bock provides smooth sailin' in rough seas. The fact that this luscious lager was aged in rum barrels creates the illusion that the open sea is a safe place. And while riding out these waves of grain, you may fall victim to the dangers of pirates, rum, bock. OK...maybe the beach is a bit over-rated.","ibu":43,"name":"RUMBAH Double Rum Bock","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.8000001907000005,"address":"4519 W. Pine Street","category":"German Lager","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","ibu":35,"name":"Duck-Rabbit Schwarzbier","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":8.3000001907,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\n\n\nObliteration II is yet another dynamic Double IPA. Its aroma is intense with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration II finishes with poignant bitterness.","ibu":79,"name":"Obliteration II","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":13.829876817669053,"address":"2109 Hickory Street","category":"North American Lager","city":"Cross Plains","coordinates":[43.1147,-89.6531],"country":"United States","description":"German Style Lager","ibu":109,"name":"Esser's Best","state":"Wisconsin","website":"http://www.essersbest.com/"},{"abv":5.766134621052736,"address":"1714 Camus Lane","category":"North American Lager","city":"Madison","coordinates":[43.0844,-89.4761],"country":"United States","description":"Actually a Dortmunder/Export style","ibu":88,"name":"Fauerbach Export","state":"Wisconsin","website":"http://www.fauerbachbrewery.com/"},{"abv":9.1999998093,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","description":"In celebration of the hop,,,,, This is a \"Hop\" tribute, worthy of a Kings Imperial Court! Enjoy the blast of fresh Tomahawk, Chinook and Anthanum Hops as they stimulate the taste buds in a truly Imperial Fashion. Pucker up!","ibu":30,"name":"Moylans Hopsickle Imperial Ale","state":"California","website":"http://www.moylans.com/"},{"abv":5.5,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Dunkel Weisse fills a glass like few beers can. The pour releases banana and clove aromas. Roasted malt flavor is complemented by caramel and chocolate undertones. Then a crisp finish refreshes the palate. Undeniable proof that brewing is truly an art.","ibu":66,"name":"Michelob Dunkel Weisse","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":6.1999998093,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Alpha, the first entry in our one-off, brewer's choice series is a Belgian-style Pale Ale at 6.2% ABV. Brewed with Pale, Carahell and Wheat malts, Amarillo and Cascade hops. This medium bodied beer is crisp on the palate with a smooth, not overly bitter hops flavor coupled with the fruity esters from the Belgian Abby yeast strain we used. Its bottle and keg conditioned, so expect a tall, fluffy head, and perhaps small amount of sediment. Just one batch was brewed in April 2008, kegs released in late May, and only 20 cases of bottles for sale only at the brewery at the special debut night event of June 13, 2008, from 5 to 8 pm. Recipe by Jeff Musselman, assistant brewer.","ibu":59,"name":"Alpha","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":2.858685324761445,"address":"1221 East Pike Street","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":118,"name":"Bête Blanche","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":39,"name":"Premium Pils Edelherb","state":"Bayern"},{"abv":5.0999999046,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"This beer is an amalgamation of styles; brown/porter/apa. Five distinct malts, including two from Belgium, give this beer added complexity and depth. We also add oatmeal to this beer to give it a smooth texture not usually associated with this type of beer. We add large amounts of American finishing hops to give Bender a citrus hop aroma because... we like hops. This is a session beer weighing in around 5% alcohol and 25 IBUs. Grab one today, we think you will want another!","ibu":54,"name":"Bender Beer","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":2.548455720910634,"address":"313 Dousman Street","category":"Other Style","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":106,"name":"Framboise","state":"Wisconsin"},{"abv":8.776663438611504,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":37,"name":"IPA","state":"Wisconsin"},{"abv":0.26075856954990595,"address":"1 Fairmount Road","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":39,"name":"ESB","state":"New Jersey"},{"abv":11.225277580114643,"address":"1401 Miner Street","category":"North American Ale","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Pick Axe Pale Ale is a classic American Pale Ale which uses premium hops and barley to impart a full bodied characteristic that dances on your tongue and titillates your palate.","ibu":61,"name":"Pick Axe Pale Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":11.386442400216199,"address":"Obere Knigsstrae 10","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":46,"name":"Rauchbier Märzen","state":"Bayern"},{"abv":5,"address":"Rijksweg 33","city":"Bavikhove","coordinates":[50.8628,3.2992],"country":"Belgium","ibu":28,"name":"Wittekerke","state":"West-Vlaanderen"},{"abv":0.9356191746636777,"address":"1245 Puerta del Sol","category":"North American Ale","city":"San Clemente","coordinates":[33.4577,-117.589],"country":"United States","ibu":14,"name":"Pale","state":"California"},{"abv":8,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A deep, mahogany ale brewed with beet sugar, green raisins, and Belgian-style yeast. As complex as a fine, red wine. Voted \"American Beer of the Year\" in January 2000 by Malt Advocate Magazine.","ibu":49,"name":"Raison D'Etre","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.5,"address":"23 Commerce Street","category":"British Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","description":"To quote Dr. John Harrison, a great influence on my brewing, \"Mild ale is the only beer with an uninterrupted history from medieval times to the present day.\" The \"mild\" means low hop bitterness, \"...which is the only essential feature of a mild ale.\" They can be light or dark in color, high or low in alcohol, dry or sweet. This is difficult for modern style wiennies to grasp. How can one style be so many things? How can I judge it good or bad?. The current Brewery Creek Dark Mild is medium brown, soft hops and about 3.5% abv. It could be a bit more estery. It is a lovely style.","ibu":13,"name":"Dark Mild","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":4.5,"address":"217 North Main Street","category":"North American Ale","city":"Greenville","coordinates":[34.8531,-82.3983],"country":"United States","description":"A classic American pale ale with a taste not unlike fresh citrus follwed by a crisp and spicy bitterness.","ibu":6,"name":"Colonel Paris Pale Ale","state":"South Carolina","website":"http://www.blueridgebrewing.com/"},{"abv":5.6999998093,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":96,"name":"Sockeye Red IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":7.873543519985631,"address":"1 Jefferson Avenue","category":"North American Ale","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":107,"name":"Auburn Ale","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.992902219686274,"address":"4607 Wedgewood Boulevard","city":"Frederick","coordinates":[39.3628,-77.4265],"country":"United States","ibu":24,"name":"Hempen Ale","state":"Maryland"},{"abv":13.819465945101323,"city":"Beloit","coordinates":[42.5083,-89.0318],"country":"United States","ibu":6,"name":"McLennium","state":"Wisconsin"},{"abv":17,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":119,"name":"Samuel Adams Triplebock 1994","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":11.611537710142489,"address":"21A Oak Road","city":"Wallsend","coordinates":[55.0167,-1.4925000000000002],"country":"United Kingdom","ibu":83,"name":"Radgie Gadgie","state":"Tyne and Wear"},{"abv":7.5,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Chestnut in color with a nutty malt profile from its signature Munich malt. A muted hop presence and smooth caramelized body culminate in a clean, dry finish. Excellent choice for hearty meals with dark flavors and sauces. Grilled meats, musty cheeses or pecan pie.","ibu":106,"name":"Blue Goat","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":4.4000000954,"category":"North American Lager","country":"Korea, Republic of","description":"OB Lager is a pale lager available in cans and bottles, and served on draft in Korea.","ibu":101,"name":"OB Lager"},{"abv":12,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Heady with a aromatic fruity start and taste, this amber ale features hints of pear and apricot in its well-nuanced flavor. The initial impression of fruitiness concludes in a refreshing dryness that begs you to sip again. Be fore- warned, this ale is immense as it registers 12% abv.","ibu":102,"name":"V-12","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":7.74242928973904,"address":"2400 State Highway 69","category":"North American Lager","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","description":"Our little village brewery in New Glarus, Wisconsin is proud to offer to you Edel-Pils. This \"Noble-Pilsner\" is the creation of our brewmaster. He brought special yeast from Bavaria, combined it with Wisconsin barley and the finest Bavarian and American hops. Then employing traditional brewing methods, this Pilsner is finished with a long cold rest in our cellars. \n\n\nExpect this bier to be creamy and full-bodied with a smooth finish. It will complement any fine meal or friendly gathering. We took our time in brewing so that you might take your time enjoying.","ibu":9,"name":"Edel-Pils","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.78240999768343,"address":"661 Howard Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":110,"name":"Thirsty IPA","state":"California"},{"abv":4.490339815039432,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":18,"name":"HighFalls Indiaman Trader India Pale Export Ale","state":"New York"},{"abv":0.2607569834099932,"address":"1933 Davis Street #177","category":"North American Ale","city":"San Leandro","coordinates":[37.7176,-122.182],"country":"United States","ibu":70,"name":"Sir Francis Stout","state":"California","website":"http://drinkdrakes.com/"},{"abv":12.2029171935511,"address":"Ogorodnyj Pr. 20","category":"North American Lager","city":"Moskva","coordinates":[55.7558,37.6176],"country":"Russia","ibu":29,"name":"Beer","state":"Moskva"},{"abv":8,"address":"5763 Arapahoe Avenue","category":"British Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"A winter strong ale with mahogany hue, a hint of hazelnuts and a finish reminiscent of mocha and toffee. No spices, just a perfect blend of five specialty malts.","ibu":30,"name":"Old Jubilation Ale","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":2.7577885444218584,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":103,"name":"IPA Series (Simcoe)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":8.25,"address":"1207 N. FM 3083 E.","category":"North American Ale","city":"Conroe","coordinates":[30.3489,-95.4427],"country":"United States","description":"Jet-black in color, this monster smells of coffee and chocolate. The taste is much of the same, with hints of creamy toffee and roasted malt. Smooth and delicious, this medium bodied ale is all about the malts, but has enough hop bitterness to be balanced.","ibu":113,"name":"Buried Hatchet Stout","state":"Texas","website":"http://www.southernstarbrewery.com/"},{"abv":9.5,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":108,"name":"Port Panzer Imperial Pilsner","state":"California","website":"http://www.portbrewing.com/"},{"abv":5.0999999046,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":48,"name":"Piketown Pils","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":7.804500943736699,"address":"1150 Filbert Street","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":78,"name":"Belgian Singel","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":4.2685113565211665,"address":"1415 First Avenue","category":"North American Ale","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":43,"name":"Oatmeal Stout","state":"Washington"},{"abv":14.873141652342946,"address":"15133 Highway 10","category":"North American Lager","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":14,"name":"Light Lager","state":"British Columbia"},{"abv":11.012755234993653,"address":"Weinbichl 6","category":"North American Lager","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":42,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":4.6415810542270215,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":85,"name":"Hofgutsbier","state":"Baden-Wrttemberg"},{"abv":5,"address":"Oberdorferstrae 9","category":"North American Ale","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":18,"name":"Stout"},{"abv":10.552351378567073,"address":"Strada Pilastro 35","city":"Torrechiara","coordinates":[44.6601,10.2814],"country":"Italy","ibu":7,"name":"Panil Barriquée"},{"abv":14.195103471914662,"address":"Zornedinger Strae 2","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":57,"name":"Altbairisch Dunkel","state":"Bayern"},{"abv":11.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":58,"name":"Harvest Ale 2005 (Port)","state":"Manchester"},{"abv":4.9000000954,"address":"600 Brea Mall","category":"German Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":63,"name":"Harvest Hefeweizen","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5.5,"address":"765 Center Boulevard","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":90,"name":"Fairfax Coffee Porter","state":"California"},{"abv":5.034123034278481,"address":"Rua Bahia, 5181","city":"Blumenau","coordinates":[-26.8914,-49.1223],"country":"Brazil","ibu":25,"name":"Eisenbahn Defumada","state":"Santa Catarina","website":"http://www.eisenbahn.com.br/"},{"abv":7.5,"address":"461 South Road","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"If fine wine were beer it would no doubt be Coopers Extra Strong Vintage Ale. This strong ale imparts rich full flavours that are suitable for maturation. Brewed with choice malts and an extended top fermentation, Coopers Extra Strong Vintage Ale will improve with age, becoming more interesting and complex in flavour for up to 18 months. The results are well worth the wait!","ibu":11,"name":"Extra Strong Vintage Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5.1999998093,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":53,"name":"Irish Style Ale","state":"Washington"},{"abv":6.544979533713827,"address":"99 Pyrmont Bridge Road","category":"North American Ale","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":92,"name":"James Squire India Pale Ale","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":10,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":3,"name":"La Trappe Quadrupel 2000/2001","website":"http://www.latrappe.nl/"},{"abv":4.145365480497509,"address":"2980 Cahill Main","category":"British Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":18,"name":"Stone of Scone Scotch Ale","state":"Wisconsin"},{"abv":9.990259644541176,"address":"2980 Cahill Main","category":"Irish Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":96,"name":"Black Earth Porter","state":"Wisconsin"},{"abv":2.3889787829893114,"address":"835 48th Avenue","category":"German Lager","city":"Amana","coordinates":[41.7972,-91.8652],"country":"United States","ibu":33,"name":"Maifest","state":"Iowa"},{"abv":5.5,"address":"Am Brunnen 2","category":"North American Lager","city":"Wolnzach","country":"Germany","ibu":81,"name":"Roggenbier","state":"Bayern"},{"abv":5.8000001907000005,"address":"Haid-und-Neu-Strae 18","category":"German Lager","city":"Karlsruhe","coordinates":[49.0125,8.4264],"country":"Germany","ibu":5,"name":"Porter","state":"Baden-Wrttemberg"},{"abv":4.4600000381000005,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":99,"name":"Honey Wheat","state":"Colorado"},{"abv":0.2111159780221894,"address":"9322 State Route 414","category":"German Lager","city":"Lodi","coordinates":[42.5739,-76.8582],"country":"United States","ibu":35,"name":"Sled Dog Doppelbock","state":"New York"},{"abv":8,"address":"Michel Theysstraat 58A","city":"Diest","coordinates":[50.9882,5.0554],"country":"Belgium","ibu":1,"name":"Loterbol","state":"Vlaams Brabant"},{"abv":6.1999998093,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":26,"name":"Farmhouse Saison","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":10.097046013491335,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":113,"name":"India Pale Ale","state":"Oregon"},{"abv":7.964851921027375,"address":"25 North Madison St","category":"North American Lager","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":16,"name":"Calumet Wheat","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":2.7038763582329004,"category":"North American Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":108,"name":"Irish Stout","state":"Wisconsin"},{"abv":3.7899999619,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"Over a century of brewing skill, along with the finest ingredients obtainable, has resulted in a beer unique for its balance of lightness and delicious flavor.","ibu":116,"name":"Piels Light","state":"Texas","website":"http://www.pabst.com/"},{"abv":3.5,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Light Beer is skillfully crafted to deliver a consistently refreshing brew with only 98 calories. Drawing from traditional brewing techniques, our Light Beer is brewed longer to reduce the sugar content and produce fewer calories in each thirst-quenching drink. Its pale golden color is complemented by a light-bodied flavor. Yuengling Light maintains a well balanced character of malt and hops, with slight carbonation for a crisp satisfying finish. We sacrifice nothing to produce a premium light beer that is low in calories and full of flavor. This combination delivers the ultimate refreshment in Yuengling Light Beer.","ibu":57,"name":"Yuengling Premium Light","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":6.892459405795066,"address":"2804 13th Street","category":"North American Lager","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":76,"name":"Old Powerhouse Lager (discontinued)","state":"Nebraska"},{"abv":5.1999998093,"address":"79 North Eleventh Street","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","description":"Brooklyn Lager, the Brewery's flagship label, is New York's \"hometown\" beer, brewed to a pre-Prohibition recipe that dates back to the days when Brooklyn was the brewing capital of the East Coast. Brooklyn Lager has won numerous awards. Wrote Michael Jackson in the Simon & Schuster Pocket Guide to Beer: \"The dry-hopped, fresh, flowery, firm, flavourful, Brooklyn Lager **-*** started well, in 1988, and has gained in character since.\";\"0","ibu":111,"name":"Brooklyn Lager","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":7.5,"address":"St. James's Gate","category":"Irish Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","description":"Foreign Extra Stout is brewed with generous hops and roasted barley for a bittersweet balance & full-flavored, natural bite. Developed over 200 years ago for global export from Ireland, the addition of extra hops ensured this Stout would arrive to its destination in perfect condition. Today, Guinness Foreign Extra Stout is enjoyed by millions of people around the world.","ibu":12,"name":"Foreign Extra Stout","website":"http://www.guinness.com"},{"abv":12.189461792635525,"address":"127 Elm St., Unit C","category":"Irish Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":101,"name":"BackDraft Chocolate Porter","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":6.5,"address":"6648 Reservoir Ln","category":"North American Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"This is what beer is all about. First swallow offers a nice little bite, followed by a blossom of flavors delivered by our handpicked aromatic hops. Flavor carries through the end with a full fisted kick of alcohol content that rocks the Richter scale at 6.5%. A nose of citrus with a floral essence of spice tickles the tongue in this ode to hops. Discover an IPA that encourages how to enjoy what beer is all about.","ibu":0,"name":"Tailgate IPA","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":13.855525563631684,"address":"10983 Hills Road","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"Our Winter Wheat is a rich, brown beer with hints of caramel and citrus creating a warming yet refreshing winter beer. Enjoy with Cajun or spicy cuisine. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.","ibu":51,"name":"Round Barn Winter Wheat","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":7.0999999046,"address":"86 Newbury Street","category":"Irish Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"Imperial Porter is a full bodied, very dark, malty beer with a good roasted character coming from the Crystal, Chocolate and Black Patent Malts used in the mash. Warrior, English Fuggles, and East Kent Goldings Hops balance the malts with a good hop bite. The beer has an OG of 1.070, rounding out after fermentation with just a slight residual sweetness and cutting dry at the finish.","ibu":74,"name":"Pugsley's Signature Series Imperial Porter","state":"Maine","website":"http://www.shipyard.com/"},{"abv":6.6999998093,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Scratch #14-2008 is our interpretation of a farmhouse ale—a once near-extinct winter-brewed (and summer–imbibed) Belgian ale.\n\n\nOur celebratory brew starts with a black pepper and ginger nose. The nicely carbonated brew releases a honey-malt flavor that gives way to a tart crisp finish that masks the elevated ABV.\n\n\nWe use a blended yeast strain (Saison Dupont & Le Chouffe) to create the traditional peppery, spicy earthy flavors of the saison. Slight hints of ginger also come through in the finish.\n\n\nDrink it ‘til the wedding bells chime!","ibu":28,"name":"Scratch #14 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":9,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A Scottish \"90/-\" ale. Brewed only once a year, this ale is rich and full with a dryness that is beautifully balanced with a classic malt sweetness.","ibu":108,"name":"Kilt Tilter","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.8000001907000005,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Brewed from very similar ingredients as the Red, but paler and spiced differently. It is intended only to be drunk at the abbey or at the nearby inn Auberge de Poteaupré which is associated with the abbey. The monks themselves drink this variety rather than the stronger three. The Dorée is not sold commercially and the rare bottles which make their way out are through unofficial sources. Even the brewery's own web site makes no mention of this variety.","ibu":35,"name":"Chimay Dorée","website":"http://www.chimay.com"},{"abv":37,"address":"Steingasse 9","city":"Heidelberg","country":"Germany","ibu":3,"name":"Vetter 33","state":"Baden-Württemberg","website":"http://www.brauhaus-vetter.de"},{"abv":12.238697591931327,"address":"23 Commerce Street","category":"North American Ale","city":"Mineral Point","coordinates":[42.8606,-90.1772],"country":"United States","description":"\"Guinness\" is the prototype of all modern stouts. Many people, however, don't realize that there are different varieties of \"Guinness\" brewed around the world. \"Draught Guinness* and \"Foreign Extra Stout\" are the two primary types brewed in Ireland. Foreign Extra is the one I have emulated. It is closer in style to the London Porters of old than to modern stout. Very dark and rich, not as dry as Draught, about 6% abv and around 60 IBUs (that's hop bitterness). I used \"First Gold\" hops because that's what I could get. Guinness use Nitrogen mixed with carbon dioxide to dispense their stout which adds to the creamy mouth-feel. BTW: The \"Imported\" Guinness you buy here in the US comes from Canada. It could just as well be brewed in the US but the common wisdom in the brewing world is that Americans prefer \"imported\" beers and will pay more for them.","ibu":8,"name":"Irish Stout","state":"Wisconsin","website":"http://www.brewerycreek.com/"},{"abv":0.9673462908028096,"ibu":60,"name":"0"},{"abv":5.3000001907,"address":"569 Main St","category":"German Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"Smooth and malty dark copper German ale common to Duseldorf. Brewed with imported Munich malts, tettnang hops and imported yeast giving this brew a unique flovor.","ibu":54,"name":"Arc Weld Alt","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","ibu":75,"name":"Winter Warmer","website":"http://www.youngs.co.uk"},{"abv":7.292849948354194,"address":"1401 Miner Street","category":"Other Style","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":70,"name":"Tundrabeary Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.469349094244396,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":70,"name":"Flaming Crane Chili Beer","state":"Nebraska"},{"abv":5.4000000954,"address":"17 Court Street","city":"Faversham","coordinates":[51.3169,0.8921],"country":"United Kingdom","ibu":29,"name":"Bishops Finger Kentish Strong Ale","state":"Kent"},{"abv":13.167973976466927,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":9,"name":"Abbot Pennings Trippel","state":"Wisconsin"},{"abv":8.635386627457217,"address":"Schwendener Strae 18","city":"Marktoberdorf","country":"Germany","ibu":35,"name":"Sailerbräu Rauchenfels Steinweizen","state":"Bayern"},{"abv":3.5780943191345385,"city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":96,"name":"1634 Urtyp Hell","website":"http://www.paulaner.com/"},{"abv":0.4806858698337846,"address":"149 Steele Street","category":"North American Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":22,"name":"Lightning Bold Gold","state":"Colorado"},{"abv":13.926297184564673,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":26,"name":"Abana Amber Ale","state":"Illinois"},{"abv":2.5259874651595524,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":112,"name":"Bavarian Helles","state":"Illinois"},{"abv":5.506373359042249,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":42,"name":"Steelhead Extra Stout","state":"California"},{"abv":10.613087258284725,"address":"ul. Browarna 14","city":"Brzesko","coordinates":[49.9622,20.6003],"country":"Poland","ibu":58,"name":"O.K. Beer","website":"http://www.okocim.pl/"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","ibu":47,"name":"EKU Pils","state":"Bayern"},{"abv":11.470810140646654,"address":"102 North Center Street #111","category":"North American Ale","city":"Bloomington","coordinates":[40.4787,-88.9946],"country":"United States","ibu":44,"name":"Amber Plus","state":"Illinois"},{"abv":5.5999999046,"address":"1025 Owen Street","category":"Irish Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"In 1767 a great Sauk leader was born. His name meant \"the black sparrow hawk.\" He came to be known as Black Hawk. Strong beliefs, independent thinking and an unwavering commitment to his family and his people earned him a reputation as a man of integrity and courage. In 1832, along with 1,200 of his people, Black Hawk was driven from his ancestral home during a war that bears his name. We celebrate this Sauk leader and his courage with our BlackHawk Porter, the kind of beer that make you say, Ma-ka-tai-she-kia-kiak!\n\n\nChief BlackHawk Porter is a robust black and sharply bittersweet ale. This style was traditionally the session beer consumed by the porters in London.","ibu":27,"name":"Chief Blackhawk Porter","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":11.990952245344884,"address":"rue Restaumont, 118","city":"Ecaussinnes","coordinates":[50.5593,4.1365],"country":"Belgium","ibu":53,"name":"Ultra Ambrée","state":"Hainaut"},{"abv":7.1999998093,"address":"Sinebrychoffinaukio 1","category":"North American Ale","city":"Kerava","coordinates":[60.381,25.1102],"country":"Finland","ibu":117,"name":"Porter IV"},{"abv":9.909951497146615,"address":"1500 Jackson Street","category":"North American Ale","city":"Minneapolis","coordinates":[45.0039,-93.2502],"country":"United States","ibu":103,"name":"Burly Brown Ale","state":"Minnesota"},{"abv":0.9718022344318344,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":64,"name":"Red Square","state":"California","website":"http://www.portbrewing.com/"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":37,"name":"Old Numbskull 2003","state":"California","website":"http://alesmith.com/"},{"abv":5,"address":"1165 Invicta Drive","category":"North American Ale","city":"Oakville","coordinates":[43.4745,-79.6775],"country":"Canada","ibu":102,"name":"Auburn Ale","state":"Ontario"},{"abv":8,"address":"915 Grand Avenue","category":"British Ale","city":"Grand Lake","coordinates":[40.2518,-105.82],"country":"United States","ibu":105,"name":"Plaid Bastard","state":"Colorado"},{"abv":4.7414725230656725,"address":"220 North Randall Road","category":"North American Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":22,"name":"Celtic Cream Ale","state":"Illinois"},{"abv":1.5384999514286335,"address":"Herrenhuser Strae 83-99","category":"German Ale","city":"Hannover","coordinates":[52.3935,9.6814],"country":"Germany","ibu":90,"name":"Weizen Bier","state":"Niedersachsen"},{"abv":8.561485749054809,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":39,"name":"Raspberry Pilsner","state":"Wisconsin"},{"abv":7.491596407564449,"category":"North American Ale","city":"Oconomowoc","coordinates":[43.1117,-88.4993],"country":"United States","ibu":83,"name":"Alt","state":"Wisconsin"},{"abv":2.77474750752377,"city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":10,"name":"Alt Munich Dark","state":"Bayern"},{"abv":13.884095745790562,"city":"Santa Cruz","coordinates":[36.9741,-122.031],"country":"United States","ibu":104,"name":"Beacon Barleywine","state":"California"},{"abv":7,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"This one is dedicated to everyone who has gotten up at the butt crack of dawn, headed towards the shores and found it 4-6 feet and offshore only to find 30 of your \"buddies\" have already claimed the peak. As you paddle out, a swell arrives from nowhere signaling your turn to go. The surf Gods are shinning on you today. You turn, stroke like mad for the wave. Standing up you are alone and blammo you Wipeout....blowing the only chance of a right hander all to yourself. You know who you are. We've all been there too. It's inside each and every one of us.\n\n\nWelcome to the waters of Wipeout IPA, a massively hopped India Pale Ale with enough substance and body to overcome even the worst and most tragic of on the water spills. We brew Wipeout IPA for everyone- especially those hardy souls who brave the cold winter water and monster sets produced by an amazing northwest swell. \n\n\nOnly a tidal wave of hops can overcome the surging tide of malt that is required to produce a beer of this shape. We invite you to drop in, hang on and kick out the backside. That is, unless you enjoy wiping out and all the glory that goes with it.\n\n\nMalts- Two Row, Wheat, Carapils and English Crystal Malts\n\nHops- Amarillo, Centennial and Simcoe \n\nYeast- White Labs California Ale\n\n\nOriginal Gravity- 1.064\n\nTerminal Gravity- 1.008\n\n7.0% ABV\n\n\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":7,"name":"Wipeout IPA","state":"California","website":"http://www.portbrewing.com/"},{"abv":6.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Menacingly delicious, with the powerful, aromatic punch of whole flower American hops backed up by rich, German malts. HopDevil Ale offers a roller coaster ride of flavor, coasting to a smooth finish that satisfies fully.","ibu":46,"name":"Hop Devil India Pale Ale","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":14.056667219912837,"category":"North American Lager","city":"Salinas","coordinates":[36.6777,-121.656],"country":"United States","ibu":74,"name":"Hefeweizen","state":"California"},{"abv":4.0212755218400265,"address":"50 East Washington Street","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":112,"name":"Golden Eagle","state":"California"},{"abv":6.082898791468421,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":83,"name":"DPA","state":"California"},{"abv":9.987089514989423,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":64,"name":"Amber","state":"North Carolina"},{"abv":3.6224991135176965,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":90,"name":"Ranger Red","state":"Texas"},{"abv":3.343678925799065,"category":"North American Lager","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":96,"name":"Four Sheets Cream Ale","state":"California"},{"abv":4.398135766115598,"category":"North American Ale","city":"Santa Rosa","coordinates":[38.4405,-122.714],"country":"United States","ibu":86,"name":"Independence Ale","state":"California"},{"abv":5.4000000954,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","ibu":23,"name":"Weisse Hefe-Weizen","website":"http://www.schneider-weisse.de"},{"abv":11.199272441532406,"category":"North American Lager","city":"Downers Grove","coordinates":[41.8089,-88.0112],"country":"United States","ibu":72,"name":"Heritage Wheat","state":"Illinois"},{"abv":5.5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Christmas Ale is an American style Brown Ale. It is hopped with Willamette, Cascade, and Columbus hops and has a good hop flavor and aroma.","ibu":38,"name":"Christmas Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":6.8000001907000005,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":113,"name":"Goose Island Midway IPA","state":"Illinois"},{"abv":6.941722877339412,"address":"7734 Terrace Avenue","category":"Other Style","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":34,"name":"Capital Island Wheat","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":9,"address":"3913 Todd Lane #607","category":"British Ale","city":"Austin","coordinates":[30.2131,-97.7358],"country":"United States","description":"Brilliantly golden, Jasperilla is a unique take on an old ale. Biscuity malt flavors meld with subtle plum and berry notes, produced by a special blend of English Old Ale and Chico yeasts. Brewed once a year, and aged for six months prior to release, the Jasperilla is smooth despite its 9% abv.\n\nJasper dressed as Hosehead from Strange Brew\n\n\nWe named this beer after our dog Jasper because he has brought so much joy to our lives. We got Jasper from a local dog rescue group called Mixed Breed Rescue. He has been a constant source of smiles and kept our spirits high through many late nights and long hours at the brewery.\n\n\nJasperilla is so good and smooth that you'll beg like a dog for more, roll over for a belly rub, howl at the moon...you get the picture.","ibu":3,"name":"Jasparilla","state":"Texas","website":"http://www.independencebrewing.com/"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"Belgian and French Ale","city":"Grimstad","country":"Norway","description":"This Belgian Ale is what you could call a wit with an attitude. We are generous with all our ingredients - including both orange peel and coriander. This does not stop this ale from being a good companion with seafood dishes.","ibu":67,"name":"Nøgne Ø Wit","state":"Lunde","website":"http://nogne-o.com/"},{"abv":8.5,"address":"14600 East Eleven Mile Road","category":"Belgian and French Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"Dragonmead's signature product! This is the ultimate Belgian style. The very high gravity of this beer is balanced by the smoothness of its finish. Banana and Clove aromas come from the Belgian yeast strain combining with the generous dose of Belgian Candi Sugar. The Saaz hops help to give this beer a balanced bitterness with no noticeable hop aroma.","ibu":83,"name":"Final Absolution","state":"Michigan"},{"abv":10.800000191,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Night Tripper is an Imperial Stout for a Fat Tuesday release. Dark, mysterious and poetic, Night Tripper's abundance of roasted malts, combined with flaked barley create a rich, roasty beer with deeply intense and lush flavors. Night Tripper's layered, nuanced tones invite intrigue and reward a curious palate.","ibu":6,"name":"Night Tripper","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"This beer is brewed especially for the Grand Hotel located on Mackinaw Island, Michigan.","ibu":24,"name":"Big Porch Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.418292063363353,"address":"24 Kulick Road","category":"North American Lager","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"The East Coast Lager is an easy drinking “golden” lager with a wonderful balance of crisp malt flavors and flowery hop finish. Built specifically with very low bitter aftertaste, the aroma is as clean as the taste.A difficult beer to brew because of the gentleness… this beer is magnificent!","ibu":29,"name":"East Coast lager","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":8,"address":"120 Wilkinson Street","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Dark and robust brewed in the style of a American strong ale, full bodied and screaming with hops.","ibu":77,"name":"Wailing Wench","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":5.5,"address":"32295 State Route 20","category":"Irish Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"A robust porter in style, a dark and full bodied ale with hints of roasted barley and flavors of coffee and bitter sweet chocolate on the palate.","ibu":57,"name":"Peacemaker Porter","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":11.583046357136777,"address":"3939 W. Highland Blvd","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":87,"name":"Olde English 800","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Oktoberfestbier is festive, full-flavoured and ultra delicious, and is brewed specially for the most famous festival in the world. Every year, more than one million liters are served at the Oktoberfest. You can create your own \"beer tent atmosphere\" at home with this golden yellow, mildly hoppy seasonal speciality - but only between July and October.\n\n\nOktoberfest Bier:\n\n13.7% original wort; 6.0% alcohol; 50 kcal/100 ml","ibu":23,"name":"Paulaner Oktoberfest","website":"http://www.paulaner.com/"},{"abv":5.5,"address":"The Eagle Maltings","category":"North American Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":51,"name":"Hobgoblin","state":"Oxford"},{"abv":6,"category":"British Ale","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","description":"Hearty, creamy oatmeal stout has hints of espresso and an elegant dark chocolate sweetness. Flavor and aroma are characteristic of Espresso and Dark Chocolate. It has a rich, silky, full, and complex body with a long, rich, smooth finish.","ibu":17,"name":"Farmer Jon's Oatmeal Stout","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":6,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"An Ale Brewed with Honey\n\nOur inaugural Epic Elixir, Braggot is a most remarkable honey ale, made with specialty malts & wildflower honey from Vermont's Champlain Valley. The honey adds smoothness with subtle hints of chamomile.\n\n\nBraggot is an ale of shining perfection that simply must be experienced to be understood. But hurry ... for Braggot, as with each entry in our Humdinger series, vanishes almost as soon as it arrives. Get a bottle of Braggot today and come to know a new 'Ale of Legend'. \n\n\nWild Flower Honey, primarily Red Clover and Alfalfa from Champlain Valley Apiaries in Middlebury, Vermont. This represents 50% of the total fermentable sugars.\n\n\nChamomile: Whole Chamomile flowers steeped in hot wort.","ibu":68,"name":"Braggot","state":"Vermont","website":"http://www.magichat.net/"},{"abv":1.8403900090376757,"address":"16 North Brown Street","category":"North American Ale","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":29,"name":"Stout","state":"Wisconsin"},{"abv":5.5,"address":"Zornedinger Strae 2","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":6,"name":"Jahrhundert-Bier","state":"Bayern"},{"abv":8.32851944261453,"address":"Hofbräuallee 1","category":"German Lager","city":"München","country":"Germany","ibu":16,"name":"Starkbier","state":"Bayern"},{"abv":13.172122108500172,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":116,"name":"St.Pauli Girl Special Dark","state":"Bremen"},{"abv":0.39473875555209204,"address":"320 Pierce St","category":"North American Ale","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":7,"name":"Imperial Stout","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":4.6999998093,"address":"Beethovenstrae 7","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":96,"name":"Bayrisch Hell","state":"Bayern"},{"abv":5.3000001907,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"A well-balanced, hoppy American style pale ale with a generous usage of Caramel and Crystal malts. This beer is amber in color and is finished\n\nwith fresh Cascade, Columbus and Mt. Hood hops from the Pacific Northwest for a wonderful floral aroma. World Beer Cup Bronze Medal winner and a Perennial favorite here at the Brewery. Also available in bottles to go.","ibu":84,"name":"Krooks Mill","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":7.6999998093,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":49,"name":"St. Sebastiaan Golden","state":"Antwerpen"},{"abv":5.0999999046,"address":"Drren 5","city":"Kilegg","country":"Germany","ibu":78,"name":"Humpis-Original Naturtrub","state":"Baden-Wrttemberg"},{"abv":6,"address":"500 Linden Street","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"La Folie Wood-Aged Biere, is our original wood-conditioned beer, resting in French Oak barrels between one and three years before being bottled. . Peter Bouckaert, came to us from Rodenbach – home of the fabled sour red. Our La Folie emulates the spontaneous fermentation beers of Peter’s beloved Flanders with sour apple notes, a dry effervescence, and earthy undertones. New in 2010, we'll do a single bottling of La Folie for the year. Collect the 22oz unique to 2010 designed bottle and start a yearly wood-aged collection of goodness.","ibu":111,"name":"La Folie","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":4.8000001907000005,"address":"500 Linden Street","category":"German Lager","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Climb on in and grab a paddle. Our first foray into lagered beers, Blue Paddle Pilsener-Lager, is a Czech style pilsener with a refreshing crispness from noble hops and a rich, malty finish. ‘Blue Paddle’ refers to the implement our warehouse manager’s Grandma once used to lovingly paddle his a** when she caught him stealing sips of her beer. With more body than a traditional Belgian pils, Blue Paddle is reflective of Europe’s finest pilseners.","ibu":8,"name":"Blue Paddle Pilsener","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","category":"North American Lager","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","description":"Surviving beer from the Dortmunder Hansa-Brauerei before being acquired by Actien.","ibu":11,"name":"Hansa Imported Dortmunder","state":"Nordrhein-Westfalen"},{"abv":5,"address":"910 Division St","category":"German Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"An authentic example of a Bavarian Hefeweizen.","ibu":13,"name":"Hefeweizen","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":6.8000001907000005,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"IPA brewed with 100% Centennial hops. Big round mouthfeel, very perfumey. Different from our canned IPA. Gotta love the Pacific NW!","ibu":60,"name":"Hopportunity Knocks Ale","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This gruit ale was inspired by the Phish song of the same name. A traditional gruit in style, Bathtub Gin was brewed without hops. Instead Ben spiced his beer with botanicals typically used to flavor gin: juniper berries, orris root, angelica root, grains of paradise, lemon peel, orange peel and coriander. The result is intensely fragrant, flavorful and fabulous.","ibu":59,"name":"Bathtub Gin Gruit Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":9.25,"address":"86 Newbury Street","category":"North American Ale","city":"Portland","coordinates":[43.6619,-70.2489],"country":"United States","description":"XXXX IPA is a non-traditional American IPA with a brilliant copper color and the classic citrus nose of Cascade hops. This beer demonstrates a unique balance of malt-inspired, delicate red grapefruit sweetness and lingering hop dryness. The OG and final ABV provide the structure and body to balance the harmony of distinct flavours. Cascade, Warrior, Summit and Glacier Hops are used for bittering and Cascade Hops are added for dry hopping after fermentation. This hop blend is well balanced with Malted Wheat, Pale Ale, Crystal, and Caramalt Malts. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit. This beer pairs well with Cajun dishes, blackened fish, and BBQ. XXXX draws its name from the British brewing convention of using X’s to denote style. 70 BU’s, 1.092 OG, 9.25% ABV.","ibu":113,"name":"Pugsley's Signature Series XXXX IPA","state":"Maine","website":"http://www.shipyard.com/"},{"abv":5.3000001907,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Unfiltered American amber wheat ale brewed with a blend of imported and domestic hops for a balanced slightly citrus hop aroma and caramel malty taste.","ibu":41,"name":"Michelob Hop Hound Amber Wheat","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"600 Elmira Road","category":"Other Style","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Partly Sunny is hazy-straw colored wheat beer with coriander, and generous amounts of lemon zest. It's a light refreshing beer with a subtle spicy start and a smooth citrus finish.","ibu":76,"name":"Partly Sunny","state":"New York"},{"abv":5.4000000954,"address":"195 Ottley Drive","category":"North American Ale","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","ibu":7,"name":"420 Extra Pale Ale","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":10,"address":"79 North Eleventh Street","category":"North American Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":30,"name":"Black Chocolate Stout","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":6.1999998093,"address":"231 W. Fourth Street","category":"British Ale","city":"Williamsport","coordinates":[41.2404,-77.0057],"country":"United States","description":"A big, burly Oatmeal Stout full of chocolate, caramelized malt and coffee flavors. This stout has a rich mouthfeel and a smooth, roasty finish.","ibu":13,"name":"Susquehanna Oatmeal Stout","state":"Pennsylvania","website":"http://www.bullfrogbrewery.com"},{"abv":4.9000000954,"address":"23 Hayward St.","category":"North American Ale","city":"Ipswich","coordinates":[42.6728,-70.844],"country":"United States","description":"A light-bodied, unfiltered Blonde ale that retains the bold flavors typical of an Ipswich Ale, our Summer Ale is light enough for a hot summer day and can satisfy even the most scorching thirst.","ibu":27,"name":"Ipswich Summer","state":"Massachusetts","website":"http://www.mercurybrewing.com"},{"abv":8.191510341910131,"address":"210 Swanson Avenue","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Full Body Ale Balanced With Assertive Oregon Hops, Deep Amber In Color","ibu":21,"name":"Scorpion Amber Ale","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":0.5879103158635146,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":93,"name":"Artisan Saison","state":"Ohio"},{"abv":5,"address":"Unit 21-24 Batten Road Industrial Estate","category":"North American Lager","city":"Salisbury","country":"United Kingdom","ibu":108,"name":"Thunder Storm","state":"Wiltshire"},{"abv":7,"address":"5945 Prather Road","category":"Irish Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":113,"name":"Lava Rock Porter","state":"Washington"},{"abv":1.2734215155638096,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":4,"name":"Pride of De Pere","state":"Wisconsin"},{"abv":8.280917243774772,"city":"Clackmannan","coordinates":[56.1073,-3.7528],"country":"United Kingdom","ibu":5,"name":"Eighty Shilling Export Ale","state":"Scotland"},{"abv":4.031507584173278,"address":"801 East Second Avenue","city":"Durango","coordinates":[37.2724,-107.88],"country":"United States","ibu":87,"name":"Steam Engine Steam","state":"Colorado"},{"abv":13.04691543881674,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":49,"name":"Chapeau Framboise Lambic","state":"Vlaams Brabant"},{"abv":11.39379359864512,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":19,"name":"Five Springs Oatmeal Stout","state":"Illinois"},{"abv":9.6000003815,"address":"Eggenberg 1","category":"German Lager","city":"Vorchdorf","coordinates":[47.9904,13.9238],"country":"Austria","description":"Schloss Eggenberg Urbock 23° is one of the strongest beers in the world. We keep the Urbock 23° in our Schloss cellars for 9 months until it is dark gold and strongly matured. Urbock 23° has received the highest acknowledgments and honours at international exhibitions and world evaluations. It is brewed exclusively from natural raw ingredients after the purity requirement of 1516. Schloss Eggenberg Urbock is filled in a 0.33 litre designer bottle embossed with Schloss Eggenberg and in barrels for the export (20 and 30 litre).","ibu":63,"name":"Urbock 23°"},{"abv":5.3000001907,"address":"Wilhelm-Schussen-Strae 12","category":"German Lager","city":"Bad Schussenried","coordinates":[48.004,9.6584],"country":"Germany","ibu":1,"name":"Schwarzbier","state":"Baden-Wrttemberg"},{"abv":14.881210769214348,"address":"65 North San Pedro","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":90,"name":"Alpine Gold","state":"California"},{"abv":6.3000001907,"address":"St Peter's Hall","category":"British Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":39,"name":"Winter Ale","state":"Suffolk"},{"abv":4.5,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Milwaukee's Best Light is Miller Brewing Company's lead low-calorie brand in the near-premium segment. Brewed to uncompromising standards using select pale malt, cereal grains and yeast, this is a smooth, highly drinkable beer at an affordable price. Available nationwide, Miller first rolled out Milwaukee's Best Light in 1986 with an ambition to become the beer choice for guys. Our marketing, including sponsorship with the World Series of Poker and award-winning TV spots, takes a humorous approach to reinforce the idea that \"Men should act like men and light beer should taste like beer.\";\"0","ibu":91,"name":"Milwaukee's Best Light","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":2.4441715456331625,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":18,"name":"Honey Weizen","state":"California"},{"abv":4.550243807656505,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":75,"name":"Pale Ale","state":"Oregon"},{"abv":10.422451787232593,"city":"Lexington","coordinates":[38.0317,-84.4951],"country":"United States","ibu":61,"name":"Beer","state":"Kentucky"},{"abv":14.221139621077413,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":116,"name":"Stout","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":8.572908624257236,"address":"5555 76th Avenue SE","category":"Irish Ale","city":"Calgary","coordinates":[50.9847,-113.956],"country":"Canada","ibu":73,"name":"Cold Cock Porter (discontinued)","state":"Alberta"},{"abv":10.334211971459016,"address":"45 South Barrington Road","category":"North American Lager","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":9,"name":"Wheat Honey Ale","state":"Illinois"},{"abv":12.836416970610664,"address":"137 High Street","city":"Burton-upon-Trent","coordinates":[52.8046,-1.628099999999999],"country":"United Kingdom","ibu":3,"name":"Ale","state":"Staffordshire"},{"abv":5.5999999046,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A brilliant, dry pale ale with an aggressive hop character balanced with a smooth finish. A bold beer best consumed with a stiff upper lip.\n\n\nIBU: 60\n\nAlcohol Content: 5.6% by volume\n\nHops: Stryian Goldings, Mt. Hood, Fuggles, Magnum, Willamette\n\n\n*Contains Wheat\n\n\nCalories per 12 oz 190.85\n\nCarbs per 12 oz 16.82","ibu":96,"name":"Kashmir IPA","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":11.83399558169575,"address":"920 Twelfth Street","category":"British Ale","city":"Golden","coordinates":[39.7546,-105.224],"country":"United States","ibu":2,"name":"Brain Damage","state":"Colorado"},{"abv":11.439755292343618,"address":"105 South Second Street","category":"North American Ale","city":"Mount Horeb","coordinates":[43.0081,-89.7383],"country":"United States","ibu":98,"name":"Liberty Pale Ale","state":"Wisconsin"},{"abv":1.9038661317744188,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":119,"name":"Old Knucklehead 1997","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":6.642016923100925,"address":"2201 Sherman Street","category":"North American Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":33,"name":"Lichthouse Lager","state":"Wisconsin"},{"abv":9,"address":"66 East Eighth Street","category":"Belgian and French Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Golden in color with a slightly sweet body. Its ester-laden character reveals an enigmatic dance between Belgian ale yeast and candy sugar complimented by a pleasing dry finish. Black Tulip is a versatile beer for food. Enjoyable pairings include mild bleu cheeses, berries and other light desserts.","ibu":85,"name":"Black Tulip","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.6999998093,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs E.S.B. \"extra special bitter\" is dry hopped in the old world traditions. It has a full bodied caramel malt flavor an spicy hop aroma. A generous amount of Golding hops are added before fermentation to impart a pleasant \"bouquet nose\" and balanced with pronounced caramel malts to create a complex, malty, aromatic amber ale.","ibu":81,"name":"ESB","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5.6934957729496,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":37,"name":"Samuel Adams Golden Pilsner","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.609842229771839,"address":"25 North Madison St","category":"Irish Ale","city":"Chilton","coordinates":[44.0291,-88.1629],"country":"United States","ibu":75,"name":"Calumet Dark","state":"Wisconsin","website":"http://rowlandsbrewery.com/"},{"abv":11.299468885467242,"address":"208 East River Drive","category":"North American Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":83,"name":"Bucktown Stout","state":"Iowa"},{"abv":9,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"An unfiltered and 100% bottle-conditioned version of 90 Minute IPA that's dry-hopped with Palisade, Amarillo, Simcoe, Cascade, CTZ, and Willamette hops. Brewed to honor the Rogue Gallery in Portland, Maine, who will also be releasing a DFH designed clothing line in the summer of '09.","ibu":51,"name":"Squall IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":6,"address":"407 Radam, F200","category":"German Ale","city":"Austin","coordinates":[30.2234,-97.7697],"country":"United States","description":"(512) ALT is a German-style amber ale that is fermented cooler than typical ales and cold conditioned like a lager. ALT means “old” in German and refers to a beer style made using ale yeast after many German brewers had switched to newly discovered lager yeast. This ale has a very smooth, yet pronounced, hop bitterness with a malty backbone and a characteristic German yeast character. Made with 98% Organic 2-row and Munch malts and US noble hops.","ibu":5,"name":"(512) ALT","state":"Texas","website":"http://512brewing.com/"},{"abv":5,"address":"1213 Veshecco Drive","category":"Other Style","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Brewery folklore tells a story about a train engineer with a passion for the taste of Railbender Ale. With every stop he made in Erie came an equal number of stops at our brewery. One extended visit to our fermenter left the engineer in a rather befuddled state of mind. On his fateful trip out of Erie that evening, his train mysteriously derailed. The engineer swears that a huge black cherry tree had fallen across the tracks as the culprit. No such tree was ever found, but the front of the locomotive was spattered with hundreds of red sports. In tribute to this folklore our expert brewers introduce Derailed Black Cherry Ale – brewed with fresh sweet black cherries and the finest malted barley to create a truly cherrylicious ale. Please enjoy responsibly, as we would never want you to get derailed!","ibu":52,"name":"Derailed Black Cherry Ale","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":6.5999999046,"address":"6648 Reservoir Ln","category":"British Ale","city":"San Diego","coordinates":[32.7732,-117.055],"country":"United States","description":"Bronze medal award winner - Sweet Stout Category – California State Fair 2008 Commercial Craft Brew Competition\n\n\nDon’t be afraid of the dark. This Sweet Stout is a surprisingly charming, and yet extremely robust ale that spills a soothing bouquet of caramel, chocolate and lightly roasted oats. As a truly unique foray into the world of stout ales, this sweet stout drinks so light you might be surprised at how apt you are to enjoy the darkest of TailGate Beer’s. The flavors are so rich and smooth that this TGB Sweet Stout can cool you on the hottest of days and warm you in the worst that winter can bring. Here is heaven in a bottle. If it weren't so wrong, this is what you wish mom could have given you in your baby bottle. Treat yourself right and enjoy an experience that is the best dessert to pass through your lips since mom last made her best fruit pie for you.","ibu":6,"name":"Tailgate Sweet Stout","state":"California","website":"http://www.tailgatebeer.com/indexmain.php"},{"abv":5,"address":"420 Harrison Drive","category":"Belgian and French Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"A smoked wit, you say? \n\nYup. \n\n\nResearching smoked beers led me to a world of smoked wheat beers, particularly a smoked wheat beer popular in Poland about 100 years ago. (I'll list that one as one of the Blind Bat beers when I'm happy with the test batches and am ready to offer it to the public.) I didn't find anything about smoked wit beers, but decided to experiment a bit (a wit is a wheat beer). I like it, and hope you will too. \n\n\nPictured on the label is Long Island's old Walt Whitman, enjoying a smoke and a book in what is purported to be his favorite spot in his native West Hills. Long Island's springtime is awakening all around him.","ibu":46,"name":"Old Walt Smoked Wit","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":7.5,"address":"237 Joseph Campau Street","category":"German Lager","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"A traditional german helles bock, golden in color and brewed with only the finest imported malt and hops. The distinct malty sweetness is balanced by a pronounced hop finish. Brewed to Welcome the Spring Season.","ibu":113,"name":"MAI-BOCK","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":8,"address":"2051A Stoneman Circle","category":"German Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":53,"name":"Heavy Weizen Imperial Unfiltered Wheat Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":11.95997505340709,"address":"375 Water Street","category":"British Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"There are some things in life that require a certain sense of bravado: these might include ordering a quadruple espresso, deciding to sleep without a nightlight, or choosing to live in a region of the continent that is gradually sinking into the Pacific Ocean. If you're no longer scared of the dark, then there's no reason to be afraid of our stout. A generous portion of rolled oats and lots of black roasted barley give this beer a warm, roasted nose, and a distinct dryness that succumbs to waves of lingering satisfaction.","ibu":51,"name":"Heroica Oatmeal Stout","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.1999998093,"address":"26 Osiers Road","category":"British Ale","city":"London","coordinates":[51.4611,-0.1966],"country":"England","description":"A rich, creamy stout with roasted chocolate flavors. A perfect dessert beer.","ibu":52,"name":"Double Chocolate Stout","website":"http://www.youngs.co.uk"},{"abv":5,"category":"German Lager","city":"Sopron","country":"Hungary","ibu":23,"name":"Soproni","website":"http://www.heinekenhungaria.hu/"},{"abv":5.8000001907000005,"address":"7160 Oliver Street","category":"North American Ale","city":"Mission","coordinates":[49.1323,-122.343],"country":"Canada","ibu":10,"name":"India Pale Ale","state":"British Columbia"},{"abv":7.126291330303562,"address":"202 - 13018 80th Avenue","category":"North American Ale","city":"Surrey","country":"Canada","ibu":72,"name":"Pale Ale","state":"British Columbia"},{"abv":4.8000001907000005,"address":"Friedhofstrae 20-36","city":"Ravensburg","coordinates":[47.7818,9.6215],"country":"Germany","ibu":52,"name":"Edel-Pils","state":"Baden-Wrttemberg"},{"abv":6.477717251933106,"address":"11337 Davenport St.","category":"North American Ale","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":9,"name":"Harvest Brown","state":"Nebraska"},{"abv":9,"address":"Val Dieu 225","city":"Aubel","coordinates":[50.7046,5.822],"country":"Belgium","ibu":42,"name":"Triple","state":"Lige"},{"abv":4.5999999046,"address":"800 East Lincoln Avenue","category":"Other Style","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"Light and refreshing, Easy Street Wheat is an unfiltered American-style wheat beer. Leaving in the yeast gives the beer a nice, smooth finish and a slightly citrusy flavor. Easy Street Wheat gets its name by brewers \"taking it easy\" and not filtering the beer. However, for ultimate enjoyment, we encourage you to work just a little harder in pouring it: just pour 2/3 of the beer into a glass, swirl what's left to stir up the yeast, then pour the rest and enjoy.","ibu":6,"name":"Easy Street Wheat","state":"Colorado"},{"abv":11.260000229,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":83,"name":"Old Guardian Barley Wine 2007","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.954174919167784,"address":"The Eagle Maltings","category":"North American Ale","city":"Witney","coordinates":[51.7523,-1.2558],"country":"United Kingdom","ibu":70,"name":"Black Wych Stout","state":"Oxford"},{"abv":4.5227829178946095,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":52,"name":"Lil Devil","state":"California","website":"http://alesmith.com/"},{"abv":9.617759695521293,"address":"170 Orange Avenue","category":"Irish Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"A robust porter, very dark in color and a roasted malt flavor from chocolate malts. Its slight bitterness is rightfully balanced with a sweet smooth finish. A full-bodied beer with medium hop bitterness and aroma.","ibu":108,"name":"Point Loma Porter","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":14.309366695935395,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":65,"name":"Sunny Summer Ale","state":"Minnesota"},{"abv":8.3000001907,"address":"102 South State Street","category":"German Lager","city":"Ukiah","coordinates":[39.1498,-123.208],"country":"United States","ibu":29,"name":"Emancipator","state":"California"},{"abv":6.7198354619776355,"category":"German Lager","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":9,"name":"Winterfest Lager","state":"Delaware"},{"abv":11.876698879843419,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":98,"name":"Davie Poplar IPA","state":"North Carolina"},{"abv":3.73667367557462,"category":"North American Ale","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":69,"name":"Big Black Stout","state":"Texas"},{"abv":5.3000001907,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A beautiful, deep copper brown ale. It has a full, malty body with hints of chocolate, a touch of sweetness and a light hop flavor. A complex malt character is created by combining five different types of malts. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \n\n\nSaint Arnold Brown Ale is best consumed at 45-50° Fahrenheit.","ibu":47,"name":"Saint Arnold Brown Ale","state":"Texas","website":"http://www.saintarnold.com"},{"abv":12.904948083271355,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":85,"name":"Irish Ale","state":"Wisconsin"},{"abv":8,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Enjoyed alone as a winter-warmer or as the perfect finish to any fine meal, our Raspberry Imperial Stout is a wonderfully full-flavored beer with just a \"kiss\" of raspberry flavor. \n\nWhen we brew this beer we add just a touch of real raspberries during the fermentation process. The result is a modest fruit flavor which enhances--- without dominating the rich, malty, stout taste.\n\n\nOur Raspberry Imperial Stout (8.0% ABV) is great alone or as an after-dinner accompaniment. It's especially good with chocolate desserts. We brew it only during the winter months, so check out the Brewing Schedule on the \"What's New\" page for the next time it will be coming to a beer store near you.","ibu":88,"name":"Raspberry Imperial Stout","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.825006119977795,"address":"2804 13th Street","category":"Irish Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":75,"name":"Irish Porter (discontinued)","state":"Nebraska"},{"abv":1.9076650386578398,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":26,"name":"Gold Nectar","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":10.218683349305488,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":46,"name":"Best Brown","state":"California"},{"abv":12.78994717404175,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":30,"name":"Boulder Creek Pale Ale","state":"California"},{"abv":5.5999999046,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":112,"name":"DSB / Dusters Special Bitter","state":"Nebraska"},{"abv":0.8313936357873541,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":107,"name":"Bourbon Barrel Stout","state":"Washington"},{"abv":7.5,"address":"515 Jefferson Street SE","category":"North American Ale","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":22,"name":"WinterFish Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.8000001907000005,"address":"1524 West Marine View Drive","category":"Irish Ale","city":"Everett","coordinates":[47.9975,-122.214],"country":"United States","ibu":28,"name":"Porter","state":"Washington"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":60,"name":"English Bay Pale Ale","state":"British Columbia"},{"abv":0.6497710991998606,"address":"202 - 13018 80th Avenue","category":"North American Lager","city":"Surrey","country":"Canada","ibu":104,"name":"Special Lager","state":"British Columbia"},{"abv":6.5,"address":"13450 - 102 Avenue","category":"North American Ale","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":71,"name":"Red Racer India Pale Ale","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":8.6000003815,"address":"1265 Boston Avenue","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":46,"name":"Snow Bound Winter Ale","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":8.58720439831023,"category":"German Lager","city":"Mnchen","coordinates":[48.1391,11.5802],"country":"Germany","ibu":24,"name":"Original Oktoberfest","state":"Bayern"},{"abv":8,"address":"Lindenlaan 25","category":"Belgian and French Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":53,"name":"Bornem Double","state":"Oost-Vlaanderen"},{"abv":4.50538700560768,"address":"300 North Main Street","category":"German Lager","city":"Corona","coordinates":[33.8835,-117.565],"country":"United States","ibu":25,"name":"Mesa Cerveza Schnorzenboomer","state":"California"},{"abv":5,"address":"1777 Alamar Way","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":57,"name":"Climax California Classic","state":"California","website":"http://eelriverbrewing.com/"},{"abv":6.96294940506637,"address":"3301-B East Fifth Street","category":"North American Lager","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"\"Smooth\" is the first word from your mouth after a taste of Big Bark Amber. This Vienna-style lager has a reddish-amber color with a smooth, malty flavor and low hop bitterness. It is made from Czech and German malts and German hops. \"All Bark, No Bite.\" Everyone likes this beer.","ibu":62,"name":"Big Bark Amber Lager","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":1.494810543401336,"address":"412 North Milwaukee Avenue","category":"North American Ale","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":94,"name":"Imperial Delusion","state":"Illinois"},{"abv":3.582925607828332,"category":"British Ale","city":"Fort Wayne","coordinates":[41.1475,-85.1168],"country":"United States","ibu":14,"name":"Stock Ale #2","state":"Indiana"},{"abv":13.217783509197767,"address":"Bridge Street","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":67,"name":"Thomas Sykes Barleywine","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":5.3000001907,"address":"Schillerstrae 14","category":"German Ale","city":"Nrnberg","coordinates":[49.4643,11.0847],"country":"Germany","ibu":0,"name":"Helles Hefe Weizen","state":"Bayern"},{"abv":4.065485400260328,"address":"100 Main Street","category":"North American Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":58,"name":"IPA","state":"Wisconsin"},{"abv":5.5,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":62,"name":"Anvil Ale","state":"California","website":"http://alesmith.com/"},{"abv":6,"address":"Obere Knigsstrae 19-21","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":101,"name":"Zwergla","state":"Bayern"},{"abv":5.375268780783604,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":76,"name":"Cuvée René Grand Cru Gueuze Lambic","state":"Vlaams Brabant"},{"abv":9.901091531138121,"address":"357 East Taylor Street","category":"German Lager","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":32,"name":"Maibock","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":5.5,"address":"24 Kulick Road","category":"British Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"A tasty, moderately hoppy, easy to drink beer with an orange marmalade hue with a frothy, off-white head. An herbal hop aroma with a hint of lemon and pine. This beer is not overly bitter, with orangy citrus and pine hop with slight earthy notes! There is a malty biscuit flavor that balances the hops. Makes me wish I had some Fish & Chips!!","ibu":31,"name":"Colonel Blide's Cask Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":9.391689736291596,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety.","ibu":72,"name":"IPA Series (Horizon)","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":6,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"A deep copper coloured traditional Irish Ale with highly developed and complex flavours. St Patrick’s Ale/Dark is brewed with four malts and two hops, carefully married together to complement eachother producing a satisfying full flavour, ending with a Styrian late hop for a truly brilliant finish.","ibu":62,"name":"St Patrick's Ale","state":"County Down","website":"http://slbc.ie/"},{"abv":12,"address":"715 Dunn Way","category":"Belgian and French Ale","city":"Placentia","coordinates":[33.8614,-117.88],"country":"United States","description":"Our holiday beer is a Belgian-style Dark Strong Ale, brewed with our brewery-made dark candi sugar, Munich and Vienna malts. Dark brown in color, fruity and complex with a rich malt backbone. This is a simple yet immensely complex beer meant to be savored and shared with friends and family.","ibu":50,"name":"Partridge In A Pear Tree","state":"California","website":"http://www.thebruery.com/"},{"abv":5.75,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Named for mug club member and local jewelry maker, Angie Caldwell. English Maris Otter pale malt, English Crystal malt, and a blend of English and North American hops create this amber, hoppy IPA with just the right balance.","ibu":8,"name":"Hoppy Chick","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.4000000954,"address":"2501 Southwest Boulevard","category":"Belgian and French Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Boulevard’s summer seasonal is our interpretation of a classic Belgian witbier. ZÅŒN (Flemish for “sun”) combines the subtle flavors of coriander and orange peel with other traditional ingredients to create a delightful, refreshing summertime brew. Available from May through August, in bottles and draught.","ibu":97,"name":"Bouldevard ZÅŒN","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4,"address":"1950 W. Fremont St.","category":"Other Style","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Valley Berry Wheat is a fruit beer produced using pure fruit extracts of Raspberry, Wildberry, Cherry and Blueberry. The beer has a wonderful fruity nose and a smooth clean finish.","ibu":43,"name":"Valley Berry Wheat","state":"California","website":"http://www.valleybrew.com/"},{"abv":10.300000191,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams® Imperial White is a new perspective on the classic witbier style. Witbiers are normally light and refreshing with a fruity finish and we wanted to see how these characteristics would stand up when we amped up the recipe. We were totally blown away by the flavors that were created by this beer.\n\n\nThis is not just a more intense version of our spring seasonal Samuel Adams® White Ale. Imperial White is a new recipe that stands on it own merits. In fact, it is more of a wine substitute than just another refreshing witbier. This is a beer that should be sipped and savored and you","ibu":71,"name":"Samuel Adams Imperial White","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6.8000001907000005,"address":"856 10th Street","category":"North American Ale","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":66,"name":"Nectar IPA","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":12,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Palo Santo Marron (Holy Tree Brown)\n\n\nAn unfiltered, unfettered, unprecedented brown ale aged in handmade wooden brewing vessels. The caramel and vanilla complexity unique to this beer comes from the exotic Paraguayan Palo Santo wood from which these tanks were crafted. Palo Santo means \"holy tree\" and it's wood has been used in South American wine-making communities. \n\n\nThis beer is a 12% abv, highly roasty, and malty brown ale aged on the Palo Santo wood. It was a huge hit at our Rehoboth Beach brewpub when first released in November of 2006, so it's coming back... into full production!\n\n\n At 10,000 gallons each, these are the largest wooden brewing vessels built in America since before Prohibition.\n\n\nClick below to watch \"Take Time,\" the short film we released with the first full-production batch of Palo Santo Marron in February 2008.\n\n\nIt's all very exciting. We have wood. Now you do too.","ibu":31,"name":"Palo Santo Marron","state":"Delaware","website":"http://www.dogfish.com"},{"abv":4.5,"country":"Egypt","description":"Stella is the most famous brand of beer in Egypt. It has been manufactured in Egypt since the 19th century and so many Egyptian, and actually many experienced travelers, prefer it to any other kind of beer. One will not find a single bar in Egypt that doesn’t sell Stella or even have the Stella logo on the bar or shop. Stella can even be found in many bars in Europe","ibu":35,"name":"stella"},{"abv":5,"address":"8938 Krum Ave.","category":"North American Lager","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"As refreshingly crisp as a morning swim in a Great Lake, this brew is crafted with Pils and Munich malts. The pronounced hop character of this golden lager sparks thoughts of sandy beaches and rocky islands.","ibu":114,"name":"Lager Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This recipe is the actual oldest-known fermented beverage in the world! Our recipe showcases the known ingredients of barley, white Muscat grapes, honey & saffron found in the drinking vessels in King Midas' tomb! Somewhere between a beer, wine and mead, this smooth, dry ale will please with Chardonnay or I.P.A. drinker alike.","ibu":28,"name":"Midas Touch Golden Elixir","state":"Delaware","website":"http://www.dogfish.com"},{"abv":11.30040496256316,"address":"2840 Shawano Avenue","category":"North American Lager","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":61,"name":"Wheat","state":"Wisconsin"},{"abv":13.780804053811377,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":14,"name":"Framboise","state":"Vlaams Brabant"},{"abv":12.687746322576517,"address":"3832 Hillside Drive","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":25,"name":"Old #27 Barleywine","state":"Wisconsin"},{"abv":6,"address":"540 Clover Lane","category":"Irish Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A smooth, creamy, chocolate laden porter.","ibu":61,"name":"Pilot Rock Porter","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":13.199999809,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Arctic Devil Barley Wine, aptly named after the ferocious wolverine of the north, is an English-style (meaning malt-inclined) barley wine. Though the recipe and process for Arctic Devil have evolved over the years, it is typically brewed in January then aged in oak barrels for several months before the entire batch is blended, bottled and released on the Friday after Thanksgiving. \n\n\nIn its youth, Arctic Devil gnarls and snarls its way across the palate. Containing this beast of a beer for long periods in oak barrels--some having previously aged port, wine or whiskey--tames the unleashed malt and fierce hop flavors, melding and mellowing this powerful liquid into an incredible elixir worthy of a brewer's table. \n\n\nEach annual batch of Arctic Devil Barley Wine represents the brewers' resolve to create an intriguing and sought-after barley wine by precisely brewing to well-designed specifications, carefully selecting the type and combination of barrels to use for aging, and meticulously checking the beer as it ages. Distinct nuance and complexity are contributed by the wood's previous tenants, resulting in unique flavor profiles in each batch that continue to change over time. We invite you to savor Arctic Devil Barley Wine upon its release then cellar some for future enjoyment. \n\n\nMidnight Sun's elusive Arctic Devil Barley Wine is Alaska's most awarded barley wine.","ibu":60,"name":"Arctic Devil Barley Wine","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":3.2000000477,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","ibu":76,"name":"Nut Brown Ale","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":10.5,"address":"155 Mata Way Suite 104","category":"British Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"\"Not your Dad's Wimpy 30 Weight is how our original label used to describe this massive chewy and thick beer. Code named by our brewers-\"The Big Black Nasty,\" this is monstrous dark ale is brewed to no particular style. Thick and sludgy like oil from the crankcase of a wheat threshing combine, Old Viscosity blurs the boundaries of Porter, Stout, Old Ale and Barleywines.\n\n\nA blended beer that mixes old and new brewing traditions into one finished beer, Old Viscosity starts out with 80% of the packaged beer produced from a stainless steel fermentation. It then joins another 20% Barrel Aged Old Viscosity (from a previous batch) that has been aging in bourbon barrels. The blend of the two beers yields an incredibly rich and luscious ale that reveals chocolate and cocoa notes melded to silky body of burnt wood, vanilla and ash.\n\n\nMalts- Two Row, Wheat, Domestic and English Crystal, Carafa III and Chocolate Malts\n\nHops- German Magnum \n\nYeast- White Labs California Ale and Proprietary Yeast Strains\n\n\nOriginal Gravity- 1.092\n\nTerminal Gravity- 1.014\n\n10.5 % ABV\n\n\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":99,"name":"Old Viscosity","state":"California","website":"http://www.portbrewing.com/"},{"abv":9.473572942006545,"category":"North American Ale","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":67,"name":"Sod House Altbier","state":"Nebraska"},{"abv":4.3000001907,"address":"1 Kendall Square #100","category":"North American Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Well balanced, medium-bodied, with a deep amber-red color, this beer's complex palate covers all the bases. A malty caramel sweetness is followed by notes of chocolate and a dry, slightly roasty finish, complemented by a touch of fruity, spicy hops.","ibu":94,"name":"Cambridge Amber","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":10.192093659817388,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":61,"name":"Rye","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.839733698781092,"category":"North American Lager","city":"San Antonio","coordinates":[29.4241,-98.4936],"country":"United States","ibu":113,"name":"Amber","state":"Texas"},{"abv":9.917655036254114,"category":"North American Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":68,"name":"Irish Red","state":"California"},{"abv":10.479602648292328,"address":"1800 West Fulton Street","category":"North American Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":64,"name":"Baderbräu Pilsener","state":"Illinois"},{"abv":1.338800915349374,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":11,"name":"Red Rocket Amber Ale","state":"Iowa"},{"abv":11.187256499582167,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":106,"name":"The \\\"400\\\" Honey Ale","state":"Wisconsin"},{"abv":13.975459029830489,"address":"309 Court Avenue","category":"North American Ale","city":"Des Moines","coordinates":[41.5855,-93.621],"country":"United States","ibu":56,"name":"Topping Pale Ale","state":"Iowa"},{"abv":5.1999998093,"address":"66 East Eighth Street","category":"North American Ale","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"Ichabod combines malted barley and real pumpkin with cinnamon and nutmeg in a delicious and inviting brew. A rewarding complement to many dishes, Ichabod pairs well with autumnal foods such as poultry and root vegetables. After dinner, try it with your favorite dessert!","ibu":86,"name":"Ichabod","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":5.1999998093,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"All the good stuff and just a little bit more. Michigan Brewing Company is proud to offer this thick and creamy stout with all the roasted, coffee-like flavor you can handle. Need we say more?","ibu":20,"name":"Superior Stout","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":3.5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"Our lightest beer in body and color, Humbles has proven to be our most popular offering.","ibu":51,"name":"Humbles Blond Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":0.3499927187556906,"address":"161 River Avenue","category":"North American Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"An extremely complex version of the classic Russian beer style. Roasted, black, and chocolate malts deliver multi-layered coffee and sherry notes in a surprisingly smooth package. The beer is then matured with just a kiss of real sour red cherries.","ibu":55,"name":"Sour Cherry Imperial Stout","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":6.4000000954,"address":"21 W. Bay St.","category":"Belgian and French Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","ibu":32,"name":"Georgi-Belgique","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":8.2600002289,"address":"491 Ontario Street","category":"British Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Our true English style IPA. Bready English Malt gives this beer a firm backbone to hang truckloads of East Kent Golding Hops on. Available on draft at the brewery and select “Beer Geek Bars” Feb. March April (if it lasts that long).","ibu":0,"name":"Bird of Prey IPA","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":3.71710031971399,"address":"3301-B East Fifth Street","category":"German Ale","city":"Austin","coordinates":[30.2541,-97.7055],"country":"United States","description":"Modeled after the classic wheat beers of Bavaria, our HefeWeizen has a cloudy, straw-colored appearance with a thick, creamy head. It is fermented with an authentic Weizenbier yeast strain which imparts delicate notes of clove, vanilla and banana which harmonize perfectly with its mild refreshing tartness. Together these flavors create the perfect thirst quencher to beat the Texas heat. Available April - August","ibu":10,"name":"Live Oak Hefeweizen","state":"Texas","website":"http://www.liveoakbrewing.com/"},{"abv":4.7607854699539045,"ibu":42},{"abv":10,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Brewed for our 10th Anniversary, the Barleywine is a bottle conditioned ale that's meant to be laid down and enjoyed for years to come. Up front it has a hop nose and hop flavor on the tongue that fades into malty overtones with flavors of vanilla that go into chocolate. As it has aged, we've noticed flavors of dates and raisins as well.","ibu":36,"name":"Climax Barleywine-Style Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":7.827619568154841,"address":"100 West Main Street PO Box 432","category":"British Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Named for the spectacular and complete double rainbow that appeared in the northwest sky just outside the brewhouse during the inaugural mash in. With a foot in both the new and old worlds, this IPA is generously dry-hopped with English Fuggles, resulting in a strong, deep golden, very fresh, and fruity English flavor and aroma.","ibu":112,"name":"Double Rainbow IPA","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":13.36547815310577,"address":"9832 14th Avenue SW","category":"Irish Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":30,"name":"Blacktop Porter","state":"Washington"},{"abv":4.9253866140348,"address":"11337 Davenport St.","category":"North American Ale","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":47,"name":"Heater","state":"Nebraska"},{"abv":6.0999999046,"address":"390 Capistrano Road","category":"North American Ale","city":"Princeton by the Sea","coordinates":[37.4903,-122.435],"country":"United States","ibu":31,"name":"Old Princeton Landing IPA","state":"California"},{"abv":5.3000001907,"address":"Hofgasse 6-11","city":"Traunstein","coordinates":[47.8691,12.650500000000001],"country":"Germany","ibu":56,"name":"Export-Hell","state":"Bayern"},{"abv":4.947287810814962,"address":"660 Main Road","city":"Nelson","coordinates":[40.1989,-98.0673],"country":"New Zealand","ibu":113,"name":"Malt Mac Winter Ale"},{"abv":11.203595081171695,"address":"Zornedinger Strae 2","category":"German Lager","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":70,"name":"Oktober Fest - Märzen","state":"Bayern"},{"abv":6.1500000954,"address":"7803 Ralston Road","category":"North American Ale","city":"Arvada","coordinates":[39.8023,-105.084],"country":"United States","ibu":55,"name":"Black Cat Stout","state":"Colorado"},{"abv":0.9730798866189128,"address":"4500 East Sunset Road #30","category":"German Lager","city":"Henderson","coordinates":[36.0721,-115.075],"country":"United States","ibu":99,"name":"Sublimator Doppelbock","state":"Nevada"},{"abv":4.3000001907,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"Augustiner is a premium amber lager with a smooth, full-bodied flavor. From the rich copper color to the subtle caramel taste and clean finish, it’s brewed to please the beer drinker who appreciates the best. This distinctive, well-balanced brew is quickly becoming Pittsburgh’s most talked-about beer. Upgrade to Augustiner!","ibu":116,"name":"Augustiner","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":4.8000001907000005,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Long toasty days, cool breezy nights and a splash of magic provide the inspiration for the Troegs brothers’ dreamiest Single Batch creation—Dreamweaver Wheat. Combining four wheat types with Munich and Pils malts, noble Saaz hops, and a yeast strain that imparts a spicy, peppery, clove taste with a slight hint of bananas, Dreamweaver Wheat is an unfiltered blast of spicy, mouthwatering joy.","ibu":37,"name":"Dreamweaver","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"BP 597","category":"North American Lager","city":"Tahiti","coordinates":[-17.6797,-149.407],"country":"French Polynesia","ibu":57,"name":"Hinano"},{"abv":9.042608722242843,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":82,"name":"Bohemia Clásica","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":0.2217073713304496,"address":"460 West Franklin Street","category":"North American Lager","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":17,"name":"Lager","state":"North Carolina"},{"abv":5.90598771929888,"category":"North American Ale","city":"Durham","coordinates":[35.994,-78.8986],"country":"United States","ibu":104,"name":"Satin Stout","state":"North Carolina"},{"abv":2.5911026091775593,"address":"6863 Lundy's Lane","category":"Other Style","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":98,"name":"Kriek","state":"Ontario"},{"abv":2.2965448675412325,"address":"7050 Monterey Street","city":"Gilroy","coordinates":[37.0013,-121.566],"country":"United States","ibu":113,"name":"Barleywine","state":"California"},{"abv":5.622374189552444,"address":"45 South Barrington Road","category":"North American Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":113,"name":"Country Ale","state":"Illinois"},{"abv":6,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This 6% trans-atlantic fusion IPA is light golden in colour with tropical fruits and light caramel on the nose. The palate soon becomes assertive and resinous with the New Zealand hops balanced by the biscuit malt. The finish is aggressive and dry with the hops emerging over the warming alcohol.\n\n\nThis fresh, full flavour natural beer is our tribute to the classic IPAs of yester-year. The post modern twist is the addition of amazing fruity hops giving an explosion of tropical fruit flavours and a sharp bitter finish.","ibu":38,"name":"Punk IPA","website":"http://brewdog.com/"},{"abv":10,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"This beer is an Imperial version of our Black Strap Stout, this time brewed with MORE blackstrap molasses and MORE brown sugar, plus a whole lot more malt and hops too. Part of our FESTIVAL OF DARKNESS, this one clocks in at over 10%ABV, and is the thickest beer we've ever brewed here.","ibu":61,"name":"Toaster Imperial Stout","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":5.0999999046,"address":"717 W. 3rd Ave","category":"British Ale","city":"Anchorage","coordinates":[61.2196,-149.896],"country":"United States","description":"This tasty English pale ale gets its charm from Imported Maris Otter Pale Malt, East Kent goldings and a few secret ingredients to keep our competitiors guessing. Styled after a classic English Bitter, Urban Wilderness is supremely balanced, smooth and easy to drink.","ibu":29,"name":"Urban Wilderness English Pale","state":"Alaska","website":"http://www.alaskabeers.com/"},{"abv":6.4885695468276285,"category":"German Ale","city":"Mnchengladbach","coordinates":[51.1913,6.4421],"country":"Germany","description":"Classic German Alt","ibu":33,"name":"Hannen Alt","state":"Nordrhein-Westfalen"},{"abv":5.8000001907000005,"address":"6923 Susquehanna St.","category":"North American Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","ibu":4,"name":"Big Hop IPA","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":4.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Guaranteed to turn heads, this is the beer that inspired a new generation of ale drinkers. With its fruity character, and robust flavour, Coopers Pale Ale is perfect for every occasion. \n\n\nNaturally fermented in the 'Burton-on-Trent' style, a secondary fermentation creates the trademark sediment that gives 'Pale' its fine cloudy appearance. This cloudy residue can be stirred through the beer by tipping or rolling the bottle before drinking. \n\n\nPale Ale has no additives or preservatives.","ibu":58,"name":"Coopers Original Pale Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":5.6999998093,"address":"281 Heinlein Strasse","category":"North American Lager","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"The name says it all, you want German this is it.","ibu":9,"name":"Marzen","state":"Michigan"},{"abv":10,"address":"6 Cannery Village Center","category":"Other Style","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A belgian-style Strong ale fermented with blackberries and blueberries.","ibu":29,"name":"Black & Blue","state":"Delaware","website":"http://www.dogfish.com"},{"abv":3.6364660328840026,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","ibu":24,"name":"Cider Jack","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":4.6500000954,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"The National Beer of Texas\n\n\"Lone Star beer uses the finest hops from the Pacific Northwest with hearty grains from the Central and Northern Plains. The GABF recognized Lone Star as a high quality American Cream Lager by awarding it with a silver medal. Malted barley and corn extract combine to provide Lone Star with nature's finest ingredients for brewing. Lone Star's ingredients give this beer its full natural flavor. The choicest hops lend complexity and aroma to this beer, and its proprietary mashing regimen creates the perfect balance of alcohol, body, and character.","ibu":2,"name":"Lone Star","state":"Texas","website":"http://www.pabst.com/"},{"abv":4.9000000954,"address":"1 Jefferson Avenue","category":"North American Lager","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"Select Pale and Wheat Malt, Cluster hops and a hint of Wisconsin honey give this unique refresher a clean, crisp, slightly sweet taste.","ibu":14,"name":"Leinenkugel's Honey Weiss","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":5.5999999046,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":7,"name":"Seamus Irish Red","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":11.5,"address":"Krommekeerstraat 21","city":"Ruiselede","coordinates":[51.0811,3.3699],"country":"Belgium","ibu":28,"name":"Urthel Samaranth Quadrium Ale","state":"West-Vlaanderen"},{"abv":14.37461413562706,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":19,"name":"Navidad","state":"Washington"},{"abv":10.345900868777559,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":42,"name":"Bräustatt Pils","state":"Bayern"},{"abv":7.5,"address":"Rue de l'Abbaye 8","category":"North American Ale","city":"Rochefort","coordinates":[50.1999,5.2277000000000005],"country":"Belgium","description":"eddish colour, almost like autumn leaves, very consistent texture with a slightly spicy aroma and an intense taste of caramel, fruit, and hints of raisins. It is only brewed about once per year, representing approximately 1% of total beer production, thus is quite difficult to obtain.","ibu":13,"name":"Rochefort 6","state":"Namur"},{"abv":4.9000000954,"address":"Wunderburg 10","category":"German Ale","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":34,"name":"Weisse","state":"Bayern"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":85,"name":"Bigfoot 2006","state":"California","website":"http://www.sierranevada.com/"},{"abv":6.4000000954,"address":"600 Brea Mall","category":"Irish Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":87,"name":"P.M. Porter","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":6.6999998093,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This name became a reference. This beer is mostly pointed out with its product name: “a Paterke”. \n\n\nThis “Paterke” is a chestnut coloured dark beer with a high fermentation (6.7 alcohol content) and a full taste.","ibu":48,"name":"Pater 6","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":11.330558153061737,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":92,"name":"La Bière des Collines van de Saisis","state":"Hainaut"},{"abv":5,"address":"Lindenlaan 25","category":"North American Ale","city":"Ertvelde","coordinates":[51.1766,3.7462],"country":"Belgium","ibu":38,"name":"Tikka Gold","state":"Oost-Vlaanderen"},{"abv":6.1999998093,"address":"1520 SE Seventh Avenue","category":"North American Ale","city":"Portland","coordinates":[45.5118,-122.659],"country":"United States","ibu":73,"name":"Woody Organic IPA","state":"Oregon"},{"abv":4.900184915579478,"address":"500 Linden Street","category":"Irish Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":94,"name":"Big Shot Seasonal Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":1.1873551102921742,"address":"Victor Nonnemansstraat 40a","category":"North American Ale","city":"Sint-Pieters-Leeuw","coordinates":[50.7853,4.2437],"country":"Belgium","ibu":43,"name":"Zinnebir","state":"Vlaams Brabant"},{"abv":7,"address":"7665 US Highway 2","city":"Iron River","coordinates":[47.3812,-94.6669],"country":"United States","ibu":87,"name":"Traditional Brackett","state":"Wisconsin"},{"abv":8.512931344649493,"address":"Walplein 26","city":"Brugge","coordinates":[51.2026,3.2242],"country":"Belgium","ibu":49,"name":"Straffe Hendrik Bruin","state":"West-Vlaanderen","website":"http://www.halvemaan.be/"},{"abv":10.711932716614776,"address":"200 Aalststraat","city":"Oudenaarde","coordinates":[50.8439,3.617],"country":"Belgium","ibu":97,"name":"Goudenband 1999","state":"Oost-Vlaanderen","website":"http://www.liefmans.be/"},{"abv":5.4000000954,"address":"Mrstagatan 10-12","city":"Uppsala","coordinates":[59.8544,17.6627],"country":"Sweden","ibu":55,"name":"Vrak"},{"abv":2.4687274699944783,"address":"220 North Randall Road","category":"North American Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":19,"name":"Shamrock Stout","state":"Illinois"},{"abv":3.9686823896413994,"address":"114 North Main Street","category":"German Ale","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":48,"name":"Hefeweizen","state":"Michigan"},{"abv":4,"category":"North American Lager","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":100,"name":"Bartles and Lager","state":"Iowa"},{"abv":4.97037278882757,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":52,"name":"Fatøl"},{"abv":2.7948991860127173,"category":"North American Lager","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":68,"name":"Wheat","state":"Wisconsin"},{"abv":11.399999619,"address":"455 North Main Street","category":"British Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":26,"name":"Old Stock Ale 2002","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":8.434018392402944,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":32,"name":"Eastside Dark","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":8,"address":"Donkerstraat 12","category":"Belgian and French Ale","city":"Westvleteren","coordinates":[50.8961,2.7222],"country":"Belgium","ibu":35,"name":"Trappist Westvleteren 8","state":"West-Vlaanderen"},{"abv":11,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"Important: let this beer warm to at least 50° before enjoying. This beer is black with some ruby highlights. The nose is full of pumpkin pie spices and some alcohol. There are notes of nutmeg, caraway and vanilla. The taste starts with chocolate malt with a hint of spice and rolls into a warm spicy alcohol taste which has the effect of creating the balance that usually comes from the hop bitter. There is some hop bitter on the finish, but not much. Overall, this beer finishes relatively dry for such a big beer. As it warms, the spices move forward in the taste and the chocolate moves to the finish. The pumpkin provides a pleasant undertone and a nice mouthfeel. The spices will probably fade some over time; they mellowed considerably while still in the fermenter.","ibu":114,"name":"Divine Reserve 9","state":"Texas","website":"http://www.saintarnold.com"},{"abv":5.5,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","ibu":68,"name":"Scratch #22 2009","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"city":"Utica","coordinates":[40.687,-73.708],"country":"United States","description":"A-It's got a nice dark tan texture to it. The description on the bottle says it all.\n\n\nS-It's got a coffee like smell to it. It smells pretty good.\n\n\nT- It tastes a tad like Bass with a hint of coffee to it. At least to me it had a coffee taste. It's got a nice even taste. It's not too strong and not too weak. It's a happy medium.\n\n\nM-It feels good when swallowing. It leaves a mild aftertaste but it's a good aftertaste.\n\n\nD-Well I drank the whole jug w/ no problem and enjoyed myself so that spoke for itself.\n\n\nOverall, I recommend this beer. If you find it, it's worth having. It goes well when watching a movie too.\n\n\nServing type: bottle","ibu":104,"name":"Mississippi Mud Black & Tan","state":"New York"},{"abv":7.6999998093,"address":"River Street, P.O. Box 276","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Pride of Milford\" is a very special ale with a tapestry of complex flavors and aromas. It is brewed with five malts and fermented with the Ringwood yeast at a higher temperature which gives this beer a uniqueness all its own. \"Pride\" has a distinctive reddish copper color. It is strong and rich beer. When \"Pride\" was first brewed in December 1999, many thought the flavor and aromas of this beer had fruit overtones. No fruit or adjunct flavoring is added to this beer. The unique flavor comes from our special brewing process.","ibu":20,"name":"Pride of Milford Special Ale","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":4.8499999046,"address":"105 East State Street","category":"North American Ale","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A clean crisp ale with a beautiful reddish caramel color and a superb balance of hops and malts.","ibu":95,"name":"Amber Waves","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":6.1999998093,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Oktoberfest is typically available from August to November and has toasty caramel and malty flavor. It is made from German Noble Hops and massive amounts of Münich Malt, which give it an orange color.","ibu":30,"name":"Climax Oktoberfest","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":4.5,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Seven varieties of malted barley are combined to give this English-style ale its complex flavor and deep, brown color. A select British yeast culture adds a subtle fruitiness and a blend of choice hops gives this non-bitter ale a soft finish.","ibu":101,"name":"Sprecher Pub Ale","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"In tribute to its namesake god of agriculture, SATURN celebrates a bountiful Pacific Northwest hop harvest. Ample malt sets the stage for this end-of-season party. Fresh Cascade and Centennial hops from Yakima Valley mingle with Belgian yeasts to impart abundant spice and earthiness.","ibu":19,"name":"Saturn - Belgian-style Fresh Hop IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.4000000954,"address":"1075 East 20th Street","category":"German Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"As winter begins its slide toward the sunny days of spring, we bring you Glissade Golden Bock to help you enjoy the ride. Glissade is a remarkably mellow take on the traditional spring bock. With restrained sweetness, we emphasize subtle malt flavor, balanced against delicate aromas of spicy and floral European hops. This complex balance helps Glissade slide across the palate—bracing us against the last cold nights of winter, while its bright golden color turns our thoughts toward spring.","ibu":49,"name":"Glissade Golden Bock","state":"California","website":"http://www.sierranevada.com/"},{"abv":2.8379357177015296,"address":"13300 Bothell-Everett Highway #304","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":115,"name":"Nebraska Bitter","state":"Washington"},{"abv":3.5,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":50,"name":"1916 Irish Stout","state":"Nebraska"},{"abv":11.270359514177413,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":55,"name":"Traditional India Pale Ale","state":"British Columbia"},{"abv":5.20886738367706,"address":"Hohenzornstrasse 2","category":"German Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":44,"name":"Oktoberfest"},{"abv":4.9000000954,"address":"Lichtenfelser Strae 9","category":"German Lager","city":"Kulmbach","coordinates":[50.106,11.4442],"country":"Germany","description":"Schwarzbier means \"black beer\" in German. It is a medium-bodied, malt-accented dark brew, very opaque and deep-sepia in color, with a chewy texture and a firm, creamy, long-lasting head. In spite of its dark color, it comes across as a soft and elegant brew that is rich, mild, and surprisingly balanced. It never tastes harsh, toasty or acrid. The beer is often referred to as a Schwarzpils, a \"black Pils,\" but, unlike a blond Pils, which can be assertively bitter, the hop bitterness in Schwarzbier is always gentle and subdued.\n\n\nIn a glass, Schwarzbier looks much like a British dark ale, but looks can be deceiving. Schwarzbier, unlike a British ale, has a clean lager taste that leaves next to no perception of fruitiness on the palate. Instead, Schwarzbier produces very mild, almost bittersweet, notes of chocolate, coffee, and vanilla. Like most traditional German lagers, Schwarzbier has a malty middle, but the sweetness is never cloying or overpowering. The beer is moderately to well attenuated and the finish tends to be dry. Its alcohol level by volume is in the range of 4.5 to 5%, rarely higher. To accentuate the Schwarzbier's dark elegance and appealing head, always serve it in a tall, fluted or tulip-shaped glass.","ibu":83,"name":"Mönchshof Premium Schwarzbier","state":"Bayern"},{"abv":7,"address":"Glazentorenweg 11","city":"Erpe-Mere","coordinates":[50.9193,3.9666],"country":"Belgium","ibu":26,"name":"Jan de Lichte","state":"Oost-Vlaanderen"},{"abv":9.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":82,"name":"Grand Cru","state":"Hainaut"},{"abv":0.9379489297198151,"category":"North American Lager","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":82,"name":"Summer Wheat","state":"Wisconsin"},{"abv":4.835519044191444,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":58,"name":"Capital Dark Doppelbock","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":8.069247146013286,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":94,"name":"Smokey the Beer","state":"Wisconsin"},{"abv":6.78493439179539,"address":"233 North Water Street","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":96,"name":"Belgian Wit","state":"Wisconsin"},{"abv":10.607429142157581,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":68,"name":"Belgian Trippel","state":"Wisconsin"},{"abv":0.5867150017874556,"category":"Other Style","city":"Kenosha","coordinates":[42.5847,-87.8212],"country":"United States","ibu":52,"name":"Cherry Ice","state":"Wisconsin"},{"abv":1.0625845614561702,"address":"233 North Water Street","city":"Milwaukee","coordinates":[43.0334,-87.9093],"country":"United States","ibu":31,"name":"Dark Belgian Wit","state":"Wisconsin"},{"abv":6.848781649275114,"address":"1035 Sterling Avenue","category":"Other Style","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":20,"name":"Chessie Cherry","state":"Illinois"},{"abv":5.5,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Golden pale ale, slightly hoppy. Brewed each May for the upcoming graduates. It took you four hard years to graduate so we made this one easy to drink. Congratulations!","ibu":116,"name":"Graduation Ale","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":5,"address":"100 Industrial Way","category":"Belgian and French Ale","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","description":"Our interpretation of a traditional Belgian wheat beer, Allagash White is unique and truly refreshing. Brewed with a generous portion of wheat and our own special blend of spices, this beer is light and slightly cloudy in appearance, with a spicy aroma. Overall, it is a beer that is very drinkable and smooth any time of the year.\n\n\n\n\nAvailable in: 12 oz and 750 ml bottles, 15.5 and 5.17 gal kegs\n\nABV: 5.0%\n\nOriginal Gravity: 1048\n\nRecommended Serving Temp: 34°F to 50°F","ibu":29,"name":"Allagash White","state":"Maine","website":"http://www.allagash.com/"},{"abv":5,"address":"2320 SE OSU Drive","category":"North American Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"In 1998 the McAleese Brothers, owners of Kells Irish Pubs in Portland, OR, Seattle, WA, and San Francisco, CA, wanted to make an American beer that would float Guinness. \n\n\nGerard and Patrick McAleese asked John Maier to create a beer with a green apple bite flavor profile. It took four batches to get it just right. John used acidulated malts imported from Europe to get the crisp, lemony/apple flavor the McAleese Brothers wanted. The bottle label reflects the McAleese family heritage, puctures the Kells Irish Pub logo, and a traditional Irish flutist. \n\n\nThe first Kells Irish Pub opened in Seattle in October 1983 in Post Alley, above the historic Pike Place Market. The restaurant will remind you of the Old Country with its warm, cozy atmosphere and traditional surroundings. Theres also a patio outside thats a great place to feel the breeze from the Puget Sound and the buzz from the Market. Kells has Seattles largest selection of Single Malt Scotch. \n\n\nThe Kells Irish Pub in Portland is a local landmark and has been named the #1 Irish Entertainment venue in America. Sit by the fire, belly up to the bar, check out the cigar room, and dont miss the St. Patricks Day Festival, the largest Irish Fest in Oregon. \n\n\nThe Pub in San Francisco is next to the historic North Beach neighborhood and reflects the Old World charm and hospitality the McAleese family brought with them from Ireland. \n\n\nKells Irish Lager has won world-wide acclaim by winning 8 medals from the World Beer Championship and a Gold Medal at the Australian International Beer Awards. \n\n\nKells Irish Lager is brewed with 7 ingredients: Great Western Pale, Crystal, Wheat and Acidulated Malts; Sterling Hops; Free Range COastal Water and Czech Pilsner Yeast.","ibu":44,"name":"Kells Irish Style Lager","state":"Oregon","website":"http://www.rogue.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Rich brown ale perfect for the fall and winter. Plenty of malt character and smooth sweet finish give this brown ale its distinct character.","ibu":60,"name":"Best Brown Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.5,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"This dog enjoys his days in the sun... Old Scratch Amber Lager is a malty, mellow beer that is fermented at medium temperatures to develop both ale and lager characteristics. \"Gold Scratch\" raises the standard in the amber lager category.","ibu":17,"name":"Old Scratch Lager","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":5.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A deep golden IPA with a firm malt body, finishing with a big hop aroma.","ibu":53,"name":"Lucky Kat","state":"Vermont","website":"http://www.magichat.net/"},{"abv":3.910500547144249,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":42,"name":"Steam Lager","state":"Wisconsin"},{"abv":10.78582279726987,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":83,"name":"Michelob Pale Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.0669233491937264,"address":"Dubovac 22","city":"Karlovac","coordinates":[45.4956,15.5331],"country":"Croatia","ibu":74,"name":"Crno Pivo"},{"abv":4.799368595345287,"category":"North American Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":48,"name":"El Niño Pale Ale","state":"Hawaii"},{"abv":13.640044342475708,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":9,"name":"Geordie Brown Ale","state":"Illinois"},{"abv":5.11031182268916,"category":"North American Ale","city":"Mnchengladbach","coordinates":[51.1913,6.4421],"country":"Germany","ibu":28,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":6.46464013709468,"address":"208 East River Drive","category":"North American Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":114,"name":"Old Davenport Gold","state":"Iowa"},{"abv":9,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pumking is an ode to Púca, a creature of Celtic folklore, who is both feared and respected by those who believe in it. Púca is said to waylay travelers throughout the night, tossing them on its back, and providing them the ride of their lives, from which they return forever changed. Brewed in the spirit of All Hallows Eve, a time of the year when spirits can make contact with the physical world and when magic is most potent. Pour Pumking into a goblet and allow it’s alluring spirit to overflow. As spicy aromas present themselves, let it’s deep copper color entrance you as your journey into this mystical brew has just begun. As the first drops touch your tongue a magical spell will bewitch your taste buds making it difficult to escape the Pumking.","ibu":22,"name":"Pumking Imperial Pumpkin Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":9.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":83,"name":"Big Red Imperial Red Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5.3000001907,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A Bavarian black beer with distinctive carmel malt sweetness and rich creamy trademark head. Flavorful, yet smooth; it is very drinkable!","ibu":64,"name":"Saranac Black Forest","state":"New York","website":"http://www.saranac.com"},{"abv":5.613157013863069,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":27,"name":"Chaco Canyon Honey Gold","state":"Nebraska"},{"abv":0.9518882329664835,"address":"800 LaSalle Plaza","category":"North American Lager","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":24,"name":"North Star Premium Lager","state":"Minnesota"},{"abv":1.1004251781156371,"address":"15 South Orange Avenue","city":"South Orange","coordinates":[40.7465,-74.2594],"country":"United States","ibu":44,"name":"Bulldog Blonde","state":"New Jersey"},{"abv":10,"address":"Douvieweg 2","city":"Watou","coordinates":[50.8612,2.6615],"country":"Belgium","ibu":84,"name":"Het Kapittel Abt","state":"West-Vlaanderen"},{"abv":5.807502664959866,"address":"2029 Old Peshtigo Road","category":"North American Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":24,"name":"Honey Weiss (discontinued)","state":"Wisconsin"},{"abv":5.75,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"A flavorful blend of dark roasted and sweet caramel malts defines this smooth and robust lager. The rich, nourishing flavors of a full-bodied Munich bock make this Bavarian-style brew perfect for those long winter nights.","ibu":104,"name":"Winter Brew","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":0.2017570520537637,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":46,"name":"Capital Fest Beer","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.739665779416838,"category":"North American Ale","city":"Bonduel","coordinates":[44.7403,-88.4448],"country":"United States","ibu":26,"name":"Old 47 Ale","state":"Wisconsin"},{"abv":12.52203065767338,"address":"1430 Washington Avenue South","category":"North American Lager","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":88,"name":"Smoked Porter","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":2.5732434002199858,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":118,"name":"Wit","state":"Minnesota"},{"abv":2.79544170612727,"address":"323-C Cross Street","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","ibu":35,"name":"Irish Red","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":10.661299814039756,"address":"620 South Madison Street","category":"Irish Ale","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Historically, porter had its heyday in 18th century London, where it was the beer of the working class. It doesn't take much to work up a thirst for this flavorful beer. The distinct roasted and chocolate notes are well balanced by a slight bitterness.","ibu":46,"name":"Pig Iron Porter","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":7.800126316281535,"address":"674 South Whitney Way","category":"Irish Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":119,"name":"Black Diamond Porter","state":"Wisconsin"},{"abv":1.4796588786733844,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":76,"name":"Pumpkin Lager","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":11.011493422700585,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":100,"name":"All Saints Belgian White Ale","state":"West-Vlaanderen"},{"abv":5,"address":"2201 Sherman Street","category":"North American Lager","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":61,"name":"Hefeweizen","state":"Wisconsin"},{"abv":4.511564088026159,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":37,"name":"Nut Brown Ale","state":"Wisconsin"},{"abv":3.4000000954000003,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"True to its American heritage, Yuengling Light Lager is an exceptional brew that appeals to consumers who don't want to sacrifice character for a low-calorie light beer. It has been masterfully developed to maintain the full flavor profile akin to our flagship Lager brand. Skillfully pairing a caramel malt flavor and mild hop character creates a beautifully rich-colored beer with deep amber highlights that finishes smooth and clean. With only 99 calories, Yuengling Light Lager is a uniquely refreshing beer that brings new dimension to the meaning light beer.","ibu":46,"name":"Yuengling Lager Light","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":8.799821557825148,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":8,"name":"Pale Ale","state":"California"},{"abv":5.861125216061087,"address":"1875 South Bascom Avenue #700","category":"North American Ale","city":"Campbell","coordinates":[37.2886,-121.933],"country":"United States","ibu":26,"name":"Stillwater Stout","state":"California"},{"abv":2.975468283840863,"address":"506 Columbia Street","category":"North American Ale","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":21,"name":"Amber Ale","state":"Oregon"},{"abv":3.2619407300226544,"address":"101 East Franklin Street","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":58,"name":"Bitter","state":"North Carolina"},{"abv":4,"address":"State Highway 2","category":"North American Ale","city":"Mangatainoka","country":"New Zealand","ibu":116,"name":"East India Pale Ale"},{"abv":5,"address":"New Alloa Brewery","category":"Other Style","city":"Alloa","coordinates":[56.1163,-3.7954],"country":"United Kingdom","ibu":73,"name":"Grozet Gooseberry and Wheat Ale","state":"Scotland"},{"abv":4,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":55,"name":"Honey and Ginger Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":14.080319963360107,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":16,"name":"Oatmeal Stout","state":"Nebraska"},{"abv":4.924933490472386,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":95,"name":"Flying Aces Ale","state":"Iowa"},{"abv":4.5014463084468606,"address":"Meerdorp 20","city":"Hoogstraten-Meer","coordinates":[51.4439,4.7386],"country":"Belgium","ibu":16,"name":"St. Paul Special","state":"Antwerpen"},{"abv":4.5,"address":"26 Front Street","category":"Other Style","city":"Bangor","coordinates":[44.7974,-68.77],"country":"United States","description":"Sea Dog Raspberry Wheat Ale is a dry, crisp refreshing ale with the added essence of raspberries.","ibu":15,"name":"Sea Dog Raspberry Wheat Ale","state":"Maine","website":"http://www.seadogbrewing.com/"},{"abv":7.8000001907000005,"address":"8111 Dimond Hook Drive","category":"Irish Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"This version is even lovelier than the original. Share with your sweetie.","ibu":71,"name":"Oak-Aged Imperial Chocolate Pumpkin Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"A Czech style Pilsner, Two Guns is golden in color with a soft malt character derived from Bohemian barley and just enough spicy bitterness to make another tasted desirable.","ibu":44,"name":"Two Guns Pilsner","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":6.4000000954,"address":"1605 S 93rd Building E Unit L","category":"German Lager","city":"Seattle","coordinates":[47.5203,-122.312],"country":"United States","description":"The Helles-Bock is similar to a traditional Maibock. Bocks are traditionally brewed in the winter / early spring months and are served during the spring / early summer months. The Helles Bock has a copper golden color with a brilliant white head. The body showcases a clean sweet maltiness that is offset by just enough hops to balance it. Very smooth and easy, drinkable yet deceptive at 6.4%.\n\n\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516.","ibu":16,"name":"Baron Helles Bock","state":"Washington","website":"http://www.baronbeer.com/"},{"abv":4.6999998093,"category":"North American Lager","city":"Jacksonville","coordinates":[30.3617,-81.6966],"country":"United States","ibu":56,"name":"Landshark Lager","state":"Florida","website":"http://www.landsharklager.com/"},{"abv":6,"category":"Belgian and French Ale","city":"Westerlo","coordinates":[51.0873,4.9178],"country":"Belgium","description":"DOUBLE BLONDE 6°\n\nCopper-coloured beer with a honey aroma, a full and smooth flavour and a gently evolving aftertaste","ibu":52,"name":"Tongerlo Dubbel Blond","state":"Antwerp","website":"http://www.tongerlo.be"},{"abv":10.199999809,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"he third time just might be the charm—Scratch #10-2008 is our third triple in the Scratch Beer series.\n\n\nThis grand cru has been lovingly aged since late-February, yet still unleashes the slightest hint of alcohol heat.\n\n\nScratch #10-2008 also has a triple flavor inspiration combining the caramel/toffee notes of dememera sugar and molasses, with citrus and licorice flavors created by the orange peel and star anise; lastly we create a peppery/spicy finish with the same trappist yeast has been used in each Scratch Beer Triple.","ibu":50,"name":"Scratch #10 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"North American Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Just another day at the bank. Very light, mild ale with a subtle hop finish. Brewed once a year in early Spring.","ibu":84,"name":"Bankers Gold","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":8.174655933748662,"ibu":96,"name":"07/22/10 08:00 PM"},{"abv":5.6999998093,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"With its deep, dark brown-black color, thick, full-bodied, velvety-smooth mouth feel, mocha character, and, strong yet subtle hop bite, Barney Flats Oatmeal Stout is one of the thickest, richest, and most complex stouts on the market today. In 1990, it became our first gold medal winner, at the Great American Beer Festival. Barney Flats was judged so superior to the other stouts that no other medals were even awarded in its catagory. Try it and see why Stewart Kallen described it as, \"Slippery, creamy, dark, and sweet as a Pacific May morning,\" in his book, The 50 Greatest Beers in the World\n\n\nBarney Flats Oatmeal Stout Most recently won the Silver Medal at the 2004 World Beer Cup® and the Bronze Medal at the 2004 GABF , as well as several other medals . Click the blue ribbon to see the entire list.\n\n\nAs with all of our products, Barney Flats Oatmeal Stout is never sterile filtered nor heat pasteurized, and should be stored in refrigeration. However, to fully enjoy its rich and complex flavor, it should be served between 40° and 45°F","ibu":23,"name":"Barney Flats Oatmeal Stout","state":"California","website":"http://avbc.com/"},{"abv":5,"address":"Jszbernyi t 7-11","category":"German Lager","city":"Budapest","coordinates":[47.4921,19.1422],"country":"Hungary","ibu":106,"name":"Dreher Classic"},{"abv":10.133027198445076,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":93,"name":"Vertical Epic 06.06.06","state":"California","website":"http://www.stonebrew.com/"},{"abv":5.5999999046,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nOur most popular beer, Sierra Nevada Pale Ale, is a delightful interpretation of a classic style. It has a deep amber color and an exceptionally full-bodied, complex character. Generous quantities of premium Cascade hops give the Pale Ale its fragrant bouquet and spicy flavor. \n\n\n“Sierra Nevada Pale Ale is the flagship beer, the one that made Chico famous. It is a flawless beer that opens with bright, perky high notes of maltiness and orange blossom and segues into a delectable hoppiness.”\n\n\n– Elaine Louie, Premier Beer—A Guide to America's Best Bottled Microbrews\n\n \n\n \n\n \n\nGOLD MEDAL WINNER\n\nGreat American Beer Festival (American Pale Ale: 1995, 1994, 1993; \n\nClassic English Pale Ale: 1992; Pale Ale: 1990, 1989, 1987)","ibu":7,"name":"Sierra Nevada Pale Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":9.051039194073565,"ibu":49,"name":"07/22/10 08:00 PM"},{"abv":4.6999998093,"address":"814 W Hamilton St","category":"German Lager","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Crisp Clean and refreshing Golden Lager brewed with German Malt and Hops for an authentic flavor. Pig Pen Pils is a great introduction into the world of Craft Brewed beer.","ibu":68,"name":"Pig Pen Pilsener","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":7.5,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":73,"name":"La Divine Double Blond","state":"Hainaut"},{"abv":1.2464301525671218,"address":"1221 East Pike Street","category":"North American Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":95,"name":"BiFröst Winter Ale","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":10.830059033010146,"address":"15133 Highway 10","category":"Irish Ale","city":"Surrey","coordinates":[49.1049,-122.69],"country":"Canada","ibu":37,"name":"Old Sullivan Porter","state":"British Columbia"},{"abv":6.650815400121527,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":32,"name":"Dunkel"},{"abv":5,"address":"rue du Castel, 19","city":"Irchonwelz","coordinates":[50.620400000000004,3.7592],"country":"Belgium","ibu":76,"name":"Saison Voisin","state":"Hainaut"},{"abv":1.2125260916222391,"address":"1110 Westloop Center","category":"North American Lager","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":5,"name":"Wildcat Wheat","state":"Kansas"},{"abv":14.435541677240977,"address":"1110 Westloop Center","category":"North American Ale","city":"Manhattan","coordinates":[39.1836,-96.5717],"country":"United States","ibu":106,"name":"XX Black Angus Stout","state":"Kansas"},{"abv":1.790153267406912,"address":"551 Clair Road West","category":"North American Lager","city":"Guelph","coordinates":[43.487,-80.2068],"country":"Canada","ibu":80,"name":"Original Dark","state":"Ontario"},{"abv":5.5,"address":"Westgate Street","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":98,"name":"St. Edmund English Ale","state":"Suffolk"},{"abv":13.838138554375355,"address":"Hofbräuallee 1","category":"German Ale","city":"München","country":"Germany","ibu":90,"name":"Münchner Kindl Weissbier / Münchner Weisse","state":"Bayern"},{"abv":5.167234908854176,"address":"Holstenstrae 224","city":"Hamburg","coordinates":[53.5621,9.9451],"country":"Germany","ibu":60,"name":"Edel","state":"Hamburg"},{"abv":6.948039333701816,"address":"Klnische Strae 94-104","city":"Kassel","coordinates":[51.3175,9.4793],"country":"Germany","ibu":10,"name":"Weissbier Dunkel","state":"Hessen"},{"abv":0.4885354429786348,"category":"British Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":80,"name":"Madelia Mild","state":"Minnesota"},{"abv":14.49959771787026,"address":"2804 13th Street","category":"Belgian and French Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":29,"name":"Double Gueuze (discontinued)","state":"Nebraska"},{"abv":8.303641694210857,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":56,"name":"Cream Ale","state":"Nebraska"},{"abv":0.9584800088477607,"address":"170 Orange Avenue","category":"German Lager","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"This golden colored ale is smooth, light in flavor, crisp and very similar to a European-style pilsner. Our Golden ale is delicately hopped with traditional pilsner style Czech Saaz hops. It is one of our most popular beers and considered our gateway beer.","ibu":111,"name":"Coronado Golden Ale","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":5.5,"category":"German Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":47,"name":"Hazy Daze Hefeweizen","state":"California"},{"abv":6.6999998093,"address":"Trappistenweg 23","category":"North American Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"The latest acquisition “Grottenbier” was created by Master Brewer Pierre Celis. It is an aromatic dark beer with 6.5% alcohol content.\n\n\nIn the marl pits in Kanne ( Belgium) and Valkenburg (the Netherlands), deep under the ground, you can taste the Grottenbier in a constant temperature of 11° Celsius.\n\n\nAs it is the case with Champagne, the bottles are placed in a “pupitre” with results in an additional fermentation. \n\n\nThis beer with a high fermentation with a second fermentation in the bottle has been pointed out as one of the best 10 present-day beers by beer guru Michael Jackson.","ibu":52,"name":"Grotten Brown","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":6.3000001907,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":14,"name":"Farmhouse Reserve","state":"Minnesota"},{"abv":13.094438546933528,"category":"North American Ale","city":"Wilmington","coordinates":[39.7458,-75.5467],"country":"United States","ibu":5,"name":"Pale Ale","state":"Delaware"},{"abv":7.6999998093,"address":"50 N. Cameron St.","category":"Other Style","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","ibu":109,"name":"Batch 666","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":8.6000003815,"address":"196 Alps Road","category":"North American Ale","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"Black as night, this coffee stout is thick, rich and full of real coffee flavor. Brewed with the Terrapin Wake-n-Bake coffee blend created by Terrapin & Jittery Joe’s Coffee.","ibu":43,"name":"Terrapin Coffee Oatmeal Imperial Stout","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":6.5999999046,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"A Belgian Flanders Style Red Ale refermented with a sweet blend of fresh whole Northwest cherries. This beer spent more than six months of lactic fermentation and aging in small French oak wine barrels before being hand-bottled.","ibu":16,"name":"Cascade Kreik Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":7,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"OK, what do you get when we toss pale malted barley, pumpkin and spices into a stainless steel cauldron then stir in some magic? Uh, Trickster! The “magic” is actually mischievous Belgian yeast at play with cardamom, nutmeg and coriander. This spooky cool brew will make your glass glow bright despite the gloominess of the season. \n\n\nDesigned to conjure up a little fun during the darkening days of autumn, Trickster is a frivolous concoction of earthy pumpkin, comforting malt, and lively spices. This makes Trickster the brew to accompany your post-winterizing duties, family fall dinners, ghost stories, U-boast-iT stories, and “supposedly haunted” garage parties. \n\n\nBut the flavor range of Trickster also pairs well with citrusy and spicy cuisine. Try a glowing glass with your favorite dishes that incorporate nutmeg, cardamom or coriander—like Thai curries, Swedish meatballs, gingerbread, roasted pumpkin soup. Add Trickster to soups and sauces, batters and doughs, glasses and mugs.","ibu":14,"name":"Trickster Belgian-style Pumpkin Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.8000001907000005,"address":"45980 Waterview Plaza","category":"British Ale","city":"Sterling","coordinates":[39.0324,-77.4097],"country":"United States","description":"A rich, smooth...long dry-roast finish...ebony","ibu":54,"name":"Black Stallion Oatmeal Stout","state":"Virginia","website":"http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"},{"abv":7.474423812664376,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A double IPA that is sure to make you as all-knowing as Pythia. It’s just a matter of interpretation.","ibu":94,"name":"The Oracle DIPA","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":8,"address":"2516 Market Avenue","category":"German Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":43,"name":"Glockenspiel","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":5.5999999046,"address":"8 Fourth Street","category":"German Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"This special German-style ale is still made faithfully in Dusseldorf, just down the road from Cologne. Our interpretation is light brown in color and cleanly malty, with a crisp hoppy bitterness in the finish. \n\nBrewed with organic Pilsner and Munich malt; Chocolate and wheat malt, and imported Spalt hops.","ibu":96,"name":"Double Mountain Altbier","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Launched in the year 1983, Haywards 5000 is synonymous with strong beer in India. Haywards 5000 is brewed with the choicest of malts and hops lending itself to a unique flavour profile to suit the Indian taste and preference. Haywards 5000 is the hallmark of original and authentic strong beer which other beer brands aspire for. With such credentials, it is not surprising to see men get together over Haywards 5000. It is the language of friendship amongst men who are proud of their masculinity and look forward to a great time with their friends and peers .\n\n\nhttp://www.sabmiller.in/brands_haywards_5000.html","ibu":111,"name":"Haywords 5000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6,"address":"112 Valley Road","category":"North American Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"This American-style, hop-driven beer starts with a citrus flavor, followed by two layers of caramel, and finishes on a hoppy note.","ibu":60,"name":"Climax IPA","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":0.7929795572869602,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"Proof that all dark beers, like trout, are not created equal. Chocolate and caramel malt flavors are at the heart of this very accessible and drinkable brown ale.","ibu":90,"name":"Brookie Brown Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":0.05504678261729401,"address":"1441 Savannah Ave Unit E","category":"Belgian and French Ale","city":"Tarpon Springs","coordinates":[28.1646,-82.7717],"country":"United States","description":"Brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium.\n\n\nA Belgian inspired amber. This beer gets it’s color from the candi sugar, as it is made without dark or crystal malts.","ibu":49,"name":"Lectio Divina","state":"Florida","website":"http://www.saintsomewherebrewing.com/"},{"abv":11.638776829505103,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","description":"Kosmos Spoetzl knew how to brew great beer. Born in Bavaria, Kosmos’ mastery of German brewing carried him as far as Egypt before he found his way to the small Texas town of Shiner. Our proud brewery still carries his name and commitment to excellence in brewing. This full-flavored, hop-jacked lager is every bit as unique as the man himself and our way of saluting the brewmaster who started it all.","ibu":2,"name":"Shiner Kosmos Reserve","state":"Texas","website":"http://www.shiner.com"},{"abv":5.5999999046,"address":"1208 14th Avenue","category":"North American Lager","city":"Monroe","coordinates":[42.6001,-89.6422],"country":"United States","ibu":40,"name":"Berghoff Original Lager Beer","state":"Wisconsin"},{"abv":1.494022746062439,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","ibu":44,"name":"Red Eye Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":5.5999999046,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"At Weyerbacher we've created a Winter Ale that is a must for any malty beer lover. Winner of a Silver Medal in the 1998 World Beer Championships, Weyerbacher Winter Ale is brewed with deep-roasted chocolate malt. The taste predominates with a warm, roasty flavor, balanced out with a slightly dry finish. It's smooth but not cloying, with a warming belt of alcohol (5.6% ABV).\n\n\nAlthough winter ales predate history, they are believed to have their origin in the pagan celebrations of winter solstice. Later, when monasteries produced the local brew, winter ales were made each year to commemorate the birth of Christ. Back then, winter ales were brewed full-bodied as a source of nutrition for the upcoming winter months. Today, winter ales are typified by their seasonality, their rich, malty flavors and by their deep, dark coloration.\n\n\nGenerally available November-March, Weyerbacher Winter Ale is the perfect libation for a winter meal, with good friends, or beside a warm fire fending off a cold winter night.","ibu":21,"name":"Winter Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.4000000954,"address":"50 N. Cameron St.","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This full-bodied dry cousin of the stout has a slight roast flavor and is dark brown in color with a red hue. This is London’s classic beer style named for the baggage carriers that appreciated it so much.\n\nGovernor Pennypacker was one of Pennsylvania’s more notable politicians. He oversaw the construction and held the lavish ceremonies designating the opening of the Commonwealth’s beautiful Capitol Building","ibu":15,"name":"Pennypacker Porter","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":10.57797608618719,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":49,"name":"ESB","state":"California"},{"abv":2.874973316867646,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":12,"name":"Stout","state":"North Carolina"},{"abv":2.187537437397001,"address":"9832 14th Avenue SW","category":"Irish Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":66,"name":"Puget Porter","state":"Washington"},{"abv":6.239948027221182,"address":"180 - 14200 Entertainment Boulevard","category":"North American Ale","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":69,"name":"Pale Ale","state":"British Columbia"},{"abv":9,"address":"Roeselarestraat 12b","category":"Belgian and French Ale","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","description":"An arabier is a pure malt beer 8°vol/alc brewed with flower Nugget-hops from Poperinge. It has the special dry-hopping taste and aroma, so appreciated by beer lovers all over the world. It is one of the two main beers from De Dolle Brouwers throughout the year. Aging time is limited due to the fact that hop bitterness is declining with the time. Store arabier cool and dark and serve cool at 10°C. Cheers!","ibu":22,"name":"Arabier","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":5.5,"address":"2880 Wilderness Place","category":"Irish Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":57,"name":"Planet Porter / Boulder Porter","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":10.595453358906605,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":23,"name":"Classic Gueuze","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":5.5999999046,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Hoppy’s gift to those who like their beers Malty. Dark Caramel and Chocolate Malts lend their deep crimson silkiness, and judicious additions of Nugget and Cascade hops give just enough bitterness for balance. Ask your server’s favorite beer and it’s probably this one.","ibu":48,"name":"Stony Face Red Ale","state":"California","website":"http://www.hoppy.com"},{"abv":5,"address":"1106 N. Charles St.","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"Black, smooth and easy to drink, this is a beer for the people!","ibu":57,"name":"Proletary","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":1.2910325295916913,"address":"68 route d'Oberhausbergen","city":"Strasbourg","coordinates":[48.593,7.7149],"country":"France","ibu":100,"name":"1664"},{"abv":13.952772090318062,"address":"1100 New York Ave, NW","category":"German Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","ibu":35,"name":"St. Adrian's Alt","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":6.945315903706055,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":83,"name":"Big Horn Fort Collins Stout","state":"Wyoming"},{"abv":10.531622293690873,"address":"624 Ludington Street","category":"North American Lager","city":"Escanaba","coordinates":[45.7458,-87.056],"country":"United States","ibu":99,"name":"Lichthaus Lager","state":"Michigan"},{"abv":5.604474439788505,"address":"21290 Center Ridge Road","city":"Rocky River","coordinates":[41.4623,-81.856],"country":"United States","ibu":79,"name":"Golden Eagle Helles","state":"Ohio"},{"abv":12.371391814447799,"address":"99 Pyrmont Bridge Road","category":"Irish Ale","city":"Camperdown","coordinates":[-33.8867,151.174],"country":"Australia","ibu":36,"name":"James Squire Porter","state":"New South Wales","website":"http://www.maltshovel.com.au/"},{"abv":2.113098222502975,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":102,"name":"Schlafly Altbier","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":10.096967340047868,"city":"Fort Mitchell","coordinates":[39.0472,-84.5599],"country":"United States","ibu":111,"name":"Premium Verum","state":"Kentucky"},{"abv":2.6147180034233486,"address":"1028 Johnny Dodds Boulevard","category":"North American Lager","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":94,"name":"Low Country Light Lager","state":"South Carolina"},{"abv":12.987599597033286,"address":"114 North Main Street","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":98,"name":"Kölsch","state":"Michigan"},{"abv":3.3569745537559847,"address":"100 Industrial Way","city":"Portland","coordinates":[43.7028,-70.3166],"country":"United States","ibu":101,"name":"Double Ale","state":"Maine","website":"http://www.allagash.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"True Hefeweizen yeast and malted wheat give this ale its authentic German flavor and aroma. Hints of banana flavor and aroma are present in this medium to full bodied, pale colored cloudy, unfiltered ale.","ibu":82,"name":"Wheatland Wheat","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7,"address":"235 Grandville Avenue SW","category":"Other Style","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"As promised Founders Brewing Company has created something unlike the rest. Amongst this summers over croweded race to cloudy wheat beers, we have decided to embark down a path all our own. Using only fresh rasberries, rubaeus translates into intese flavors combined with a no hesitation malt bill. In fermentation we add fresh rasberries at five separate stages to achieve the ulttimate balance between tartness and sweetness.","ibu":25,"name":"Rubaeus","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":1.6674539516669895,"address":"Chicago IL 60612","category":"North American Lager","city":"Chicago","coordinates":[41.8817,-87.6926],"country":"United States","ibu":118,"name":"Dark Ale","state":"Illinois"},{"abv":6,"address":"Fonteinstraat 65","category":"Belgian and French Ale","city":"Lembeek","coordinates":[50.7123,4.2197],"country":"Belgium","description":"Geuze, a mixture of old and young Lambic. The young Lambic is added to cause a refermentation in the bottle making for a delightfully sparkling and dry beer that has been likened, in all seriousness, to Champagne.","ibu":57,"name":"Geuze Boon","state":"Vlaams Brabant"},{"abv":8.490666082601393,"address":"10450-L Friars Road","category":"Irish Ale","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":35,"name":"Mission Gorge Porter","state":"California"},{"abv":7.0999999046,"address":"Naamsesteenweg 469","city":"Kerkom","coordinates":[50.7763,5.166],"country":"Belgium","ibu":106,"name":"Bloesem Bink","state":"Limburg"},{"abv":13.165834147732365,"address":"451 Wilmington-West Chester Pike","city":"Glen Mills","coordinates":[39.8658,-75.5442],"country":"United States","ibu":14,"name":"Irish Red Ale","state":"Pennsylvania","website":"http://www.mckenziebrewhouse.com"},{"abv":8.947707728324929,"city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":82,"name":"ESB","state":"Washington","website":"http://www.redhook.com/"},{"abv":7.363858586170522,"address":"249 North Redwood Highway","category":"Irish Ale","city":"Cave Junction","coordinates":[42.1707,-123.645],"country":"United States","ibu":100,"name":"Dark","state":"Oregon"},{"abv":10.196318421299658,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":44,"name":"Sweeney Stout","state":"Illinois"},{"abv":5,"city":"Brugge","coordinates":[51.2094,3.2252],"country":"Belgium","ibu":101,"name":"Blanche de Bruges","state":"West-Vlaanderen"},{"abv":6.1999998093,"address":"905 Line Street","category":"Belgian and French Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"Muse, a Farmhouse Ale, is brewed \"somewhat\" in the tradition of the style, but it has Weyerbacher fingerprints all over it! Made with Pale malt, a little carapils, raw wheat and raw oats, this warm weather seasonal is dry and ever so slightly tart on the pallet from the wheat and oats. At 6.2% abv, its a bit higher than your strictly traditional farmhouse, but not out of the realm, really. The wheat and oats makes the mouthfeel silky and light at the same time. They also bring some cloudiness to the brew, but don't be afraid! Hopped with Styrian Goldings and finished with Saaz, this beer has a noticable hoppy dryness which makes it a fine thirst quencher, something the original Farmhouse Ales were intended to be, served to workers out in the fields on hot summer days as a restorative.\n\nFermented with Forbidden Fruit yeast, at a very high temperature (78F), the spiciness developed is entirely from this traditional yeast strain, not from any kettle additions. Unfiltered, to enjoy this natural beauty, and imagine yourself out in the flat fields of Belgium! Cheers!","ibu":52,"name":"Muse Farmhouse Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":4.3000001907,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Bud Select is a new beer offering a bold taste with a full and distinct flavor that finishes clean. Budweiser Select was developed using two-row and roasted specialty malts for a rich color. It offers excellent drinkability and a taste that does not linger.","ibu":76,"name":"Budweiser Select","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.424745035409642,"category":"German Lager","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":22,"name":"Oktoberfest","state":"Texas"},{"abv":4.994225676937644,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":52,"name":"Red Roost Ale","state":"California"},{"abv":3.8762025641813347,"address":"901 Gilman Street","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":60,"name":"Thomas Kemper Belgian White","state":"California"},{"abv":5.0999999046,"address":"901 Gilman Street","category":"Other Style","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":32,"name":"Apricot Wheat","state":"California"},{"abv":4.53714649365033,"address":"674 South Whitney Way","category":"German Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":23,"name":"Heartland Weiss","state":"Wisconsin"},{"abv":9.71088260020999,"address":"30 Germania Street","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":91,"name":"Samuel Adams Spring Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":2.7404646632236,"category":"North American Lager","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":45,"name":"El Rey Cerveza","state":"Colorado"},{"abv":10.199216667325894,"address":"540 Main Street","category":"North American Ale","city":"Longmont","coordinates":[40.1688,-105.102],"country":"United States","ibu":104,"name":"Red Alert Ale","state":"Colorado"},{"abv":9.859870039042395,"category":"North American Ale","city":"Grand Island","coordinates":[40.9222,-98.3581],"country":"United States","ibu":118,"name":"Guinea Pig Amber Ale","state":"Nebraska"},{"abv":7.1999998093,"address":"Innerleithen EH44 6PW","category":"British Ale","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":24,"name":"House Ale","state":"Scotland"},{"abv":7.740943968980027,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":8,"name":"Midnight Stout","state":"Michigan"},{"abv":0.11093034064812435,"address":"8308 Main Street","category":"Irish Ale","city":"Ellicott City","coordinates":[39.2684,-76.7994],"country":"United States","ibu":28,"name":"Alpenhof Baltic Porter","state":"Maryland","website":"http://www.ellicottmillsbrewing.com"},{"abv":4.1999998093,"address":"1 Jefferson Avenue","category":"Other Style","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","description":"Get a taste of the freshest flavor under the sun - Leinenkugel’s Summer Shandy. A shandy is a lemonade flavored beer, a European favorite during the warmer months. And the light, crisp flavor makes it a great summer refresher. Each batch is carefully brewed using the finest wheat, malted barley and just a hint of real Wisconsin honey. Then, our brewmasters mix in fresh lemonade and citrus flavors to create an adventurous taste that’s perfect for those lazy days of summer.","ibu":67,"name":"Leinenkugel's Summer Shandy","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":4.9000000954,"address":"544B W. Liberty St.","category":"North American Ale","city":"Cincinnati","coordinates":[39.1136,-84.526],"country":"United States","description":"In the old days, runners who made it to third base were rewarded with a mug of beer! This is the way the game was meant to be played; pitchers throwing side- armed and a half barrel on the field. Our Red Legg Ale is an American Amber Ale with a rich, malty flavor, slightly sweet on the finish. An All-Star in any line- up!","ibu":58,"name":"RedLegg Ale","state":"Ohio","website":"http://www.barrelhouse.com"},{"abv":5.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A wintry amber ode to the open road. Our wintry amber ramble of sweet carmelized malt and spicy hops is for those who make their own roads. Dry hopped with simcoe hops.","ibu":99,"name":"Roxy Rolles","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Truly a worldly beer. Baltic Thunder represents the Baltic Porter style admirably. Exhibiting the enticing, toffee roast of the British porter that originated the style in the 18th century, and the soothing, subtle fruit nuance of contemporary brews that flourish from Helsinki to Vilnius today, this dark lager honors the Baltic god of thunder. Created by an inspired collaboration of brewers and tempered with a touch of turmoil, Baltic Thunder rolls on to bring you enchanting light as the darkness fades.","ibu":67,"name":"Baltic Thunder","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":3.599999904599999,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Our take on the classic light golden ale, with crisp refreshing flavors.","ibu":23,"name":"Woody's Light","state":"Michigan"},{"abv":8.3000001907,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"You've got to love coffee to truly appreciate this phenomenal brew. Brewed with an abundance of flaked oats, bitter and sweetened imported chocolates, Sumatra and Kona coffee. Breakfast Stout has an intense fresh roasted coffee nose toped with a cinnamon colored frothy head that seems to never fade and makes you wish breakfast could last forever.","ibu":73,"name":"Founders Breakfast Stout","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.193901202519564,"ibu":97,"name":"07/22/10 08:00 PM"},{"abv":5.5999999046,"address":"1284 McD Drive","category":"North American Ale","city":"Dover","coordinates":[39.154,-75.4884],"country":"United States","ibu":76,"name":"Hop Mountain","state":"Delaware","website":"http://www.olddominion.com/"},{"abv":5,"address":"675 Merrimon Avenue","category":"British Ale","city":"Asheville","coordinates":[35.6221,-82.5536],"country":"United States","description":"Cascade hops lend this ale a lively and spirited edge that perfectly complements its effervescent amber maltiness.","ibu":55,"name":"Roland's ESB","state":"North Carolina","website":"http://www.ashevillepizza.com/"},{"abv":9,"address":"4615-B Hollins Ferry Road","category":"German Lager","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"Malt focused, made with five types of grain including Vienna and Munich malts – plus a secret extra malt that we use only in our Prosit! Consider this bomber to be the burly big brother to our Clipper City MarzHon, a three year in a row winner at the Great American Beer Festival. We’ve balanced the sweetness of the malt with three kinds of hops making this one of the boldest marzen style lagers you’ll ever try.\n\n\n5 Kinds of Malt, 3 Kinds of Hops\n\nestimated ABV 9% estimated IBU 25","ibu":79,"name":"Heavy Seas Prosit! Imperial Oktoberfest Lager","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":4.867524216060883,"address":"1446 Garden of the Gods","category":"Belgian and French Ale","city":"Colorado Springs","coordinates":[38.8967,-104.855],"country":"United States","ibu":20,"name":"Sunna Wit","state":"Colorado","website":"http://trinitybrew.com/"},{"abv":7.5,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Haywards 2000 H2K is India's only beer with an ABV of 5.5%, whilst the rest of the beers are either less than 5% or greater than 7.5% - 8%\n\n\nTaste: Rich, smooth and crisp taste \n\nMalts: Indian malts, 6 row barley \n\nHops: Hop extract from Germany and Indian hops palate \n\nColour: Gold \n\nAvailability: Parts of India \n\nFermentation process: Bottom-fermented \n\nServing temperature: 7 - 9 °C \n\nPackaging: 650 ml and 330 ml glass bottle and 330 ml cans \n\n\nhttp://www.sabmiller.in/brands_haywards_2000.html","ibu":63,"name":"Haywards 2000","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"A true North American IPA! All North American malts, Northwest Mt. Hood hops, and American Ale yeast all blend for a perfectly balanced bitter ale.","ibu":110,"name":"555 IPA","state":"Michigan","website":"http://liverybrew.com/"},{"abv":9.1999998093,"address":"30 Germania Street","category":"North American Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Imperial Stout is our take on the stouts brewed by 18th century English brewers for the Russian Imperial Court of Catherine II. The special malted barley in this intense and massive brew delivers rich flavours like dark chocolate, coffee and anise.","ibu":116,"name":"Samuel Adams Imperial Stout","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","description":"The Calico Amber Ale was inspired by the beers of England. In England most of the beer is some kind of \"bitter\". Bitter is a style that became popular in the late 1800's. The most famous examples are brewed in Burton on Trent. This hard water gives these beer a pleasantly dry bitter finish, hence the name \"bitter.\" A brewery usually brews several bitters of various alcohol strengths. The lowest in alcohol (and usually flavor) is called \"bitter\" or \"ordinary bitter.\" A step up in alcohol and hop character gives us \"best bitter\" or \"special bitter.\" Finally a beer is made that is full of hop aroma and flavor, has a maltiness to match, and a generous amount of alcohol is called an \"extra special bitter\" or E.S.B.\n\n\nAlthough inspired by the British Ales Ballast Point Calico Amber Ale uses distinctive American hops, which give not only the crisp bitterness to balance the malt, but also a hint of floral aroma. We brew Calico Amber Ale with 100% malt and use 4 different malts to give it a rich complexity. The blend of crystal malts give it flavors including toffee and caramel. A blend of American Cascade and Centennial hops provide a counterpoint to the malt. Finally our proprietary yeast provides a fruity background and a Madeira like richness that rounds out this gold medal winning ale.","ibu":67,"name":"Calico Amber Ale","state":"California","website":"http://www.ballastpoint.com/"},{"abv":6,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Dark and full-bodied, Mammoth Extra Stout boasts a well-rounded melange of rich flavors, including chocolate, caramel, coffee, nut and date. Huge portions of pale and specialty malts give this mammoth brew a complex yet exceptionally smooth palate. Hops provide balance without overpowering the chewy malt profile.","ibu":119,"name":"Mammoth Extra Stout","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.5,"address":"14600 East Eleven Mile Road","category":"British Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"This fine English style Best Bitter is made with Imported English Pale Ale, Aromatic and Caramel malts. Galena and Willamette Hops add a moderate bittering level to make this a refreshing example of an English Bitter.","ibu":74,"name":"Breath of the Dragon English Bitter","state":"Michigan"},{"abv":5.3000001907,"address":"312 North Lewis Road","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":13,"name":"Burns Scottish Ale","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Ale","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":63,"name":"English Bay Pale Ale","state":"British Columbia"},{"abv":4.6999998093,"address":"Inveralmond Way","city":"Perth","coordinates":[56.4174,-3.4779],"country":"United Kingdom","ibu":31,"name":"Lia Fail Stone of Destiny Ale","state":"Scotland"},{"abv":5.0999999046,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Our first new year-round brand launch since 1996, Lunar Ale is in a category all its own. Brewed using a unique aromatic yeast, this refreshing variety is best described as a cloudy brown ale with a complex, malty aroma and flavor, and a crisp, dry finish.","ibu":65,"name":"Lunar Ale","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.5,"address":"461 South Road","category":"British Ale","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"A dark brew full of promise. Coopers Dark Ale is a journey in taste, starting fresh and creamy, and finishing with a lingering coffee flavour. \n\n\nConditioned and naturally brewed using the top fermentation method, Coopers 'Dark' is made using roasted and chocolate malts, giving it a rich dark colour and unique flavour. \n\n\nCoopers Dark Ale has no additives and no preservatives.","ibu":92,"name":"Dark Ale","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.384109878610653,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":116,"name":"Irish Red","state":"Nebraska"},{"abv":13.117443515986688,"address":"7474 Towne Center Parkway #101","category":"Irish Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":47,"name":"Porter","state":"Nebraska"},{"abv":5.873706612442817,"address":"3945 Second Street South","category":"German Lager","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":49,"name":"Oktoberfest","state":"Minnesota"},{"abv":1.159689640116559,"category":"North American Ale","city":"Dsseldorf","coordinates":[51.2249,6.7757000000000005],"country":"Germany","ibu":1,"name":"Alt","state":"Nordrhein-Westfalen"},{"abv":4.836924161114492,"category":"North American Lager","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":36,"name":"Adler Bräu Eagle Lager","state":"Wisconsin"},{"abv":8.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":28,"name":"Vertical Epic 04.04.04","state":"California","website":"http://www.stonebrew.com/"},{"abv":10.338365016111657,"address":"111 Main Street","category":"North American Lager","city":"Lucan","coordinates":[44.4105,-95.4107],"country":"United States","ibu":36,"name":"Brau Light","state":"Minnesota","website":"http://www.braubrothersbrewing.com/"},{"abv":3.2999999523,"address":"23 South Main Street","category":"British Ale","city":"Waterbury","coordinates":[44.3372,-72.756],"country":"United States","description":"An American mild ale brewed with Horizon hops. The crisp, bitter finish is helpd up by a balanced malt body.","ibu":24,"name":"Shut The Hell Up","state":"Vermont","website":"http://www.alchemistbeer.com/"},{"abv":0.4661656683622939,"address":"618 S. Wheeling Ave","category":"British Ale","city":"Tulsa","coordinates":[36.152,-95.9647],"country":"United States","ibu":64,"name":"McNellie's Pub Ale","state":"Oklahoma","website":"http://marshallbrewing.com"},{"abv":5.6999998093,"address":"357 East Taylor Street","city":"San Jose","coordinates":[37.3526,-121.893],"country":"United States","ibu":48,"name":"Gordon Biersch Marzen","state":"California","website":"http://www.gordonbiersch.com/brewery"},{"abv":7,"address":"529 Grant St. Suite B","category":"Belgian and French Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Orthus was the two-headed hell hound brother of Cerberus, the three-headed dog that guarded the gates of hell. Orthus is a Belgian Dubbel brown in color, 7 grains, 3 hops, Trappist high gravity yeast. Very Drinkable.","ibu":108,"name":"Orthus Belgian Dubbel","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.5999999046,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Tawny amber in color with a coffee aroma and tight head. A delicate roasted malt accent, generous use of hops and a smooth finish. American Amber, originally known as Ashland Amber (created at Rogues original brewpub in Ashland, Oregon which was destroyed by flooding several years ago), is created from Northwest Harrington and Klages, 95-115 and 135-165 Crystal Malts. Kent Golding and Cascade Hops. American Amber is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft.","ibu":106,"name":"American Amber Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.5,"address":"569 Main St","category":"Belgian and French Ale","city":"Bethlehem","coordinates":[40.622,-75.382],"country":"United States","description":"Aged for over a year! This traditional classic Belgisn style lambic is brewed using several varieties of Belgian lambic yeast and a generous amount of black currant concentrate to create a complex tart flavor. This brew is sure to become a Brew Works favorite!","ibu":61,"name":"Cassis Reserve Lambic ‘06","state":"Pennsylvania","website":"http://www.thebrewworks.com/bethlehem-brew-works"},{"abv":8,"address":"Route de Charlemagne 8","category":"Belgian and French Ale","city":"Chimay","coordinates":[50.0355,4.3777],"country":"Belgium","description":"Named Cinq Cents in 75 cl (25.4 fl.oz.) bottles, this beer with its typical golden colour, its slightly hazy appearance and its fine head is especially characterised by its aroma which results from an agreeable combination of fresh hops and yeast. \n\n\nThe beer's flavour, as sensed in the mouth, comes from the smell of hops: above all it is the fruity notes of muscat and raisins that give this beer a particularly attractive aroma. \n\n\nThe aroma complements the touch of bitterness. There is no acidity, but an after-bitterness which melts in the mouth.\n\n\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised.","ibu":4,"name":"Chimay Triple (Chimay White)","website":"http://www.chimay.com"},{"abv":1.8498540218504478,"category":"North American Lager","city":"LaSalle","coordinates":[45.4289,-73.6313],"country":"Canada","ibu":37,"name":"Special Amber Lager","state":"Quebec"},{"abv":1.3914545531514388,"address":"149 Steele Street","category":"North American Lager","city":"Denver","coordinates":[39.7187,-104.95],"country":"United States","ibu":90,"name":"Clearwater Light","state":"Colorado"},{"abv":7.17517012571265,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":72,"name":"Our Special Ale 1994","state":"California"},{"abv":3.4077870264469814,"address":"200 Dousman Street","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":105,"name":"Art Schmidt Pilsner","state":"Wisconsin"},{"abv":0.5258153013804401,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":3,"name":"Trolleycar Stout","state":"Wisconsin"},{"abv":11.278972629710006,"address":"345 Healdsburg Avenue","category":"British Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","ibu":46,"name":"Heritage Scottish Ale","state":"California","website":"http://www.bearrepublic.com/"},{"abv":6,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Pale malt flavors are balanced with a rich hop character and a light fruit bouquet in this seasonal spring lager. Traditional dry-hopping and extended aging give this blonde bock a distinctive flowery aroma and a potent kick.","ibu":3,"name":"Sprecher Maibock","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":6,"address":"pastoor de katerstraat 24","category":"North American Ale","city":"baarle-hertog","coordinates":[51.4421,4.9232],"country":"Belgium","description":"pure malt blond ale with a touch of wheat malt.\n\ngreat hop-aroma due to hop-filtering the hot wort.\n\nbottle-conditioned.","ibu":116,"name":"Noblesse","website":"http://www.dedochtervandekorenaar.be"},{"abv":2.9483842964086735,"address":"375 Water Street","category":"German Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our Pilsner is a true beer drinker's beer inspired by the first golden lagers brewed in the Czech town of Pilsn. This full-bodied lager is hopped with copious amounts of Sterling hops, lending it a refreshing, citrusy finish.","ibu":95,"name":"Pilsner","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.1999998093,"address":"30 Germania Street","category":"Other Style","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"right and citrusy, brewed with mysterious grains of paradise.\n\nSamuel Adams® Summer Ale is an American wheat ale. This summer seasonal uses malted wheat as well as lemon zest and grains of paradise, a rare pepper from Africa first used as a brewing spice in the 13th Century to create a crisp and spicy flavor and body. The ale fermentation imparts a background tropical fruit note reminiscent of mangos and peaches. All of these come together to create a quenching, clean finishing beer perfect for those warm Summer days","ibu":75,"name":"Samuel Adams Summer Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":4.5999999046,"address":"PO Box 1661","category":"North American Lager","city":"San Antonio","coordinates":[29.43,-98.49],"country":"United States","description":"It took “The Beer Drinker’s Beer” to introduce a real draft in a can—and you can still taste that milestone in brewing history today with every can of Piels. Our Draft Style delivers unsurpassed flavor and character like it was drawn straight from the tap!","ibu":35,"name":"Piels Draft","state":"Texas","website":"http://www.pabst.com/"},{"abv":6.8000001907000005,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Oatmeal Stout is our interpretation of the classic dry stout style. Dark and creamy with hints of chocolate and black currants, our Oatmeal Stout includes a healthy dose of Centennial and Chinook hops creating a unique stout perfect for the late Fall and Winter.","ibu":17,"name":"Oatmeal Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":8.1999998093,"address":"800 Paxton Street","category":"German Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"The Troegenator Double Bock, is a dark, strong lager (8.2% abv). It pours into a glass with a bronze to brown color, fluffy white head and bready malt aroma. The Troegenator leaves a rich, warming feeling and subtle spicy flavors. The style, Double Bock, dates back a century or so ago. During periods of fasting without solid foods, the Monastic brewers relied on the double bock; a stronger, richer beer to fulfill their basic nutritional needs. Known to them as \"liquid bread,\" a double bock has a strong malt aroma and chewy rich body. Traditionally these brewers ended the name of their double bock with the suffix \"ator\", ex. Celabrator, Illuminator, Subliminator... In the spirit of the tradition we give you the Troegenator to provide warmth and richness through the early spring months. A double bock of epic proportions, beware,\n\nthe Troegenator is deceiving smooth and delicious.","ibu":29,"name":"Troegenator Double Bock","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":13.483845966385827,"address":"High Street","city":"Tadcaster","coordinates":[53.8834,-1.2625],"country":"United Kingdom","ibu":110,"name":"Winter Welcome 1996-1997","state":"North Yorkshire"},{"abv":14.858997228550892,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":69,"name":"Amber Ale","state":"Massachusetts"},{"abv":0.09224856672815696,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":104,"name":"DPA","state":"California"},{"abv":5.5999999046,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Total Eclipse Black Ale has been described as similar to a light, dry stout. Characterized by its distinctive hop aroma and rich, black color, Total Eclipse redefines the way you think about a dark ale. Brewed at a low temperature to create a refreshingly dry finish, Total Eclipse uses only the finest two row malted barley and hops grown in the great Pacific Northwest. This combination results in a clean, crisp, hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity. \n\nIt’s “totally” out of this world delicious!!!","ibu":114,"name":"Total Eclipse Black Ale","state":"California","website":"http://www.hoppy.com"},{"abv":1.6177327492275895,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":40,"name":"Downtown Brown","state":"Texas"},{"abv":14.864515166131905,"category":"North American Lager","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":62,"name":"Yellow Rose Cream Ale","state":"Texas"},{"abv":1.3549519712621372,"category":"North American Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":117,"name":"Buffalo Ale","state":"Texas"},{"abv":11.489286195714994,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":41,"name":"Eccentric Ale","state":"Nebraska"},{"abv":8,"address":"1257, Kounsosu","category":"North American Ale","city":"Ibaraki","country":"Japan","description":"Dark ale with a tan head. Subtle sake flavor from cask aging.","ibu":69,"name":"Hitachino Nest XH","state":"Kanto"},{"abv":15,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"A barley wine style ale brewed to 15% alc with hints of raisin, chocolate, carmel, sherry, cherry, and alcohol, just to name a few and this beer will only get better with age.","ibu":0,"name":"Three Guy Off The Scale Barley Wine","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":4.5999999046,"address":"River Street, P.O. Box 276","category":"North American Ale","city":"Milford","coordinates":[42.5893,-74.9403],"country":"United States","description":"\"Strike Out\" is brewed with 6 malts including a balanced portion of chocolate and crystal malts. It is also brewed with 5% flaked oats for a velvet-like mouth feel. English pale, Munich and black malt, plus roasted barley round out the malt bill. Considerably lower in alcohol than both Benchwarmer Porter and Old Slugger Pale Ale, \"Strike Out\" is a well-rounded stout, opaque black in color with a roasted palate.","ibu":92,"name":"Strike Out Stout","state":"New York","website":"http://www.cooperstownbrewing.com/"},{"abv":4.5999999046,"address":"1400 Ramada Drive","category":"North American Ale","city":"Paso Robles","coordinates":[35.5953,-120.694],"country":"United States","description":"One of the most award-winning American style pale ales in the country. This is the American beer style that started a revolution in taste. We’ve taken the classic British pale ale and elevated it with a wonderful dose of northwest American hops. A crisp floral hop aroma precedes a medium-bodied clean finishing ale.","ibu":67,"name":"Firestole Pale 31","state":"California","website":"http://www.firestonewalker.com/"},{"abv":3.7199197211883153,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":38,"name":"Timmermans Framboise","website":"http://www.anthonymartin.be/"},{"abv":4.9000000954,"category":"German Lager","city":"Steinberg-Wernesgrün, Germany","country":"Germany","description":"A classic German-style Pils","ibu":35,"name":"Wernesgrüner Pils Legende","website":"http://www.wernesgruener.de/"},{"abv":4.5,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Straight from the heart of the City of Brotherly Love comes a dark and chocolatey seductive little stout dominated by roasted malt flavor. This is one Philly favorite that won't break your heart and will always love you back.","ibu":55,"name":"Yards Love Stout","state":"Pennsylvania"},{"abv":6,"address":"237 Joseph Campau Street","category":"North American Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","description":"Our version of India Pale Ale. Brewed with European malts and Northwest hops and then generously Dry Hopped with Cascade Hops for a nice citrus finish. Truly a Salvation for all Hop Heads.","ibu":36,"name":"Salvation","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":5.5999999046,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":82,"name":"Wilsteraner Altbier","state":"Nebraska"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[34.396,-119.521],"country":"Canada","ibu":57,"name":"Kitsilano Maple Cream Ale","state":"British Columbia"},{"abv":0.7942660634348797,"address":"Ellhofer Strae 2","city":"Simmerberg","coordinates":[47.5814,9.9191],"country":"Germany","ibu":83,"name":"Dunkles Weissbier","state":"Bayern"},{"abv":6.5999999046,"address":"500 Linden Street","category":"British Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Pull on your wool socks and crack open a 2° Below Ale. This tasty winter warmer started life as a small batch beer brewed for the Al Johnson Uphill Downhill – a telemark ski race in Crested Butte, Colorado. The Uphill Downhill celebrates the exploits of Al Johnson, letter carrier extraordinaire, who delivered mail by ski in the late 1800’s. Dry hopping during fermentation creates a floral nose with a hint of pepper and spicy, subtle undertones. 2° Below provides a bright, hoppy palate and a cheery warm afterglow.","ibu":68,"name":"2° Below","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.362094291491667,"address":"1235 Oakmead Parkway","category":"North American Ale","city":"Sunnyvale","coordinates":[37.387,-121.993],"country":"United States","ibu":83,"name":"Stout","state":"California"},{"abv":1.1770411505657719,"address":"519 Seabright Avenue #107","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":38,"name":"Leroy Barleywine","state":"California"},{"abv":6.4000000954,"address":"506 Columbia Street","category":"German Lager","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":81,"name":"LTD 02 Lager","state":"Oregon"},{"abv":4.8000001907000005,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":32,"name":"Mullin Brown","state":"Iowa"},{"abv":12.316871492559628,"category":"North American Lager","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":43,"name":"Wheat","state":"Wisconsin"},{"abv":9.5,"address":"ul. Browarna 88","category":"North American Ale","city":"Zywiec","coordinates":[49.6622,19.1742],"country":"Poland","ibu":21,"name":"Porter","website":"http://www.zywiec.com.pl/"},{"abv":3.713151065261424,"address":"4250 Lone Tree Way","category":"North American Ale","city":"Antioch","coordinates":[37.9669,-121.783],"country":"United States","ibu":62,"name":"IPA","state":"California"},{"abv":14.770950146574704,"address":"104 Village Place","city":"Dillon","coordinates":[39.6282,-106.047],"country":"United States","ibu":95,"name":"Pallavicini Pilsner","state":"Colorado"},{"abv":8.593600714869646,"address":"5049 Sixth Street","category":"British Ale","city":"Carpinteria","country":"United States","ibu":85,"name":"Jubilee Ale","state":"California"},{"abv":7.25,"address":"1106 N. Charles St.","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.3028,-76.6164],"country":"United States","description":"Brewer's Art's answer to the Belgian \"devil\" beers (i.e. Lucifer, Duvel, etc.). Both rich and dry, this beer is all too easy to consume in large quantities. Hopped with Styrian Goldings.","ibu":45,"name":"Ozzy","state":"Maryland","website":"http://www.belgianbeer.com"},{"abv":14.074485270010298,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"A ruby-red raspberry beer with a luscious, pink head\n\n\nOur Frambozen is inspired by the centuries old Belgian tradition of brewing beer with raspberries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Fraser Valley raspberries. The result is a ruby-red fruit beer with a intense raspberry flavour, a nice tart finish and a luscious pink head.","ibu":25,"name":"Frambozen","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":7.989949759740097,"category":"German Lager","city":"Dallas","coordinates":[32.789,-96.7989],"country":"United States","ibu":87,"name":"Oktoberfest","state":"Texas"},{"abv":12.864612998446844,"address":"2004 Capitol Avenue","city":"Sacramento","coordinates":[38.5731,-121.481],"country":"United States","ibu":42,"name":"Blond Barleywine","state":"California"},{"abv":11.756931929441908,"category":"North American Ale","city":"Omaha","coordinates":[41.254,-95.9993],"country":"United States","ibu":113,"name":"Avalanche Amber","state":"Nebraska"},{"abv":5.363500734035621,"address":"610 Main Street","city":"Rapid City","coordinates":[44.0812,-103.227],"country":"United States","ibu":68,"name":"Barely Blond","state":"South Dakota"},{"abv":0.39442984892625654,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":55,"name":"Belgian Ale (discontinued)","state":"Nebraska"},{"abv":8.139609345030296,"address":"128 West Main Street","city":"West Dundee","coordinates":[42.0981,-88.2783],"country":"United States","ibu":114,"name":"German Pilsner","state":"Illinois"},{"abv":9.966368665265433,"address":"61 Brookline Avenue","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":53,"name":"Kenmore Kölsch","state":"Massachusetts"},{"abv":2.8988834332052402,"category":"North American Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":62,"name":"Classic Stout","state":"Massachusetts"},{"abv":4.9000000954,"address":"AB43 8UE","category":"German Lager","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A Lager that actually tastes of something?\n\n\nYou have to be kidding, right?\n\n\n77 lager is made with 100% malt and whole leaf hops.\n\n\nIt contains no preservatives, additives, cheap substitutes or any other junk.\n\n\nMaybe we are crazy. So what?\n\n\nTaste 77 Lager and we are pretty sure you will agree that the fine line between genius and insanity has just become a little more blurred.","ibu":116,"name":"77 Lager","website":"http://brewdog.com/"},{"abv":2.448948695131623,"address":"130 W Gurley St","category":"Other Style","city":"Prescott","coordinates":[34.542,-112.47],"country":"United States","ibu":67,"name":"Willow Wheat","state":"Arizona","website":"http://prescottbrewingcompany.com/"},{"abv":4.8000001907000005,"address":"Steigerstrae 20","category":"German Lager","city":"Dortmund","coordinates":[51.5298,7.4692],"country":"Germany","ibu":5,"name":"Hansa Pils","state":"Nordrhein-Westfalen"},{"abv":7.5,"address":"420 Harrison Drive","category":"German Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Malty and yeasty, with some sweetness along with hints of cloves and banana. (thanks to the yeast!) \n\n\nLow hop bitterness, highly carbonated. Unfiltered, and so a bit cloudy with that magical yeast. \n\n\nPairs well with Thai, Szechuan, Mexican, and Caribbean -- und Deutsche Nahrung! (German Food!)","ibu":35,"name":"Wheatley Hills Weizenbock","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":7,"address":"2713 El Paseo Lane","category":"Belgian and French Ale","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"Belgian IPA, West Coast hops meet belgian yeast. Spicy, fruity and citrusy notes combine for an interesting fusion brew.","ibu":19,"name":"Abbey IPA","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"North American Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"This is our flagship ale. The label for this beer is adorned with the majestic Wapiti (aka elk). Wapiti are abundant in northern Arizona. They are large and beautiful creatures, which is why we chose this animal to represent this beer. Wapiti Amber Ale is hand crafted with mountain pure water, two row malted barley, yeast and Yakima Valley hops. Our brewers use traditional methods to create this full-bodied amber ale with a distinct hoppy aroma. Wapiti Amber Ale should be enjoyed cool, not cold, to best experience the complex character and flowery aroma. Serve at 43-47 deg F.","ibu":46,"name":"Wapiti Amber Ale","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":5.0999999046,"address":"225 Heritage Ave","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"Named in honor of our hometown’s 375th anniversary, Smuttynose Portsmouth Lager is a full-flavored, medium bodied continental-style beer - deep golden in color, featuring a mouth-pleasing maltiness subtly balanced with spicy imported Saaz hops. One taste of this fine lager tells you this is no ordinary beer: From its mellow, velvety body to its lingering, fresh hop finish, Portsmouth Lager is smooth, complex and satisfying.","ibu":28,"name":"Portsmouth Lager","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":5.0999999046,"address":"40 Bowden Square","category":"German Ale","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","description":"Reddish brown coloring. Aroma is slightly sweet, much like flavoring. Very drinkable. Recommended.","ibu":62,"name":"Altbier","state":"New York","website":"http://southamptonbrewery.com"},{"abv":5.5,"address":"Brouwerslaan 1","category":"German Lager","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Speciale Pilsner is a special version of the Grolsch Premium Pilsner. It has a fruitier taste than the Premium Pilsner.","ibu":47,"name":"Grolsch Pilsner Speciale","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":11.89455695428109,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"\"This aint your Dads malt liquor\" - Brewmaster John Maier \n\nAfter the death of his wife, Henry Jackson Smart was left to raise 6 young children alone. His courage, love, selflessness and dedication inspired his daughter, Sonora Smart Dodd, to organize the First Fathers Day on June 19th, 1910. In 1924 President Calvin Coolidge proclaimed the third Sunday in June as Fathers Day. President Nixon, in 1972, established it as a permanent day of national observance. \n\nDads is brewed with Harrington and Klages malts, Flaked Corn, Crystal Hops, Free Range Coastal Water, and Czech Pils Yeast. Available in the spring of 2005 in the classic 22-ounce Rogue micropiece.","ibu":113,"name":"Dad's Little Helper","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Extra Special Bitter Ale. Alaskan ESB is darker and hoppier and is brewed and fermented at different temperatures than our popular Alt-style Amber. It has an exquisite copper color derived from Crystal malt and an aggressive, yet pleasant hop character.\n\n\nMalty with roasted overtones, Alaskan ESB has a crisp finish resulting from the use of premium Northwest hops.\n\n\nAlaskan ESB is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year.","ibu":41,"name":"Alaskan ESB","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.1999998093,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Golden Ale. A blonde, lighter bodied beer with a floral aroma and a crisp, hoppy finish that's not bitter. The hop character of Alaskan Pale is due to dry hopping by hand during the fermentation process.\n\n\nA clean, softly malted body with a hint of citrus overtones, followed by a hop-accented dry, crisp finish.\n\n\nAlaskan Pale is made from glacier-fed water and a generous blend or European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches or rainfall we receive each year.","ibu":2,"name":"Alaskan Pale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.0999999046,"address":"312 North Lewis Road","category":"North American Lager","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","ibu":13,"name":"Featherweight Lager","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":5.9000000954,"address":"17070 Wright Plaza","category":"North American Ale","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":99,"name":"Blackstone Stout","state":"Nebraska"},{"abv":5.5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"This Fresh Hop Pale Ale is all about celebrating the hop harvest in the fall. Fresh picked hops have to be added to the brew immediately and in abundance. Roughly 270 pounds of Crystal hops from Doug Weathers' farm outside Salem, Oregon will be added to the 50 barrel batch in addition to some dry kilned whole flower hops. That adds up to approximately 5.5 pounds of hops per barrel brewed. Another deliciously interesting beer in our Bond Street Series.","ibu":17,"name":"Hop Trip Fresh Hop Pale Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":0.3986414294130469,"address":"65 North San Pedro","category":"North American Lager","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":37,"name":"New World Wheat","state":"California"},{"abv":2.6764934418632844,"address":"120 East Third Street","category":"Irish Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":85,"name":"Nitro Porter","state":"Nebraska"},{"abv":4.794617385813554,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":14,"name":"Cherry Rail","state":"Wisconsin"},{"abv":9.455927692500007,"category":"North American Ale","city":"Uji","country":"Japan","ibu":49,"name":"Busby Stout","state":"Kinki"},{"abv":3.8296062374791218,"city":"Germantown","coordinates":[35.0868,-89.8101],"country":"United States","ibu":109,"name":"Dunkel","state":"Tennessee"},{"abv":9.140886597913804,"address":"14800 San Pedro Avenue","category":"North American Ale","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete's Wicked Ale is an experience out of the ordinary. Our tantalizing ruby-brown ale with distinctive malts and aromatic Brewers Gold hops is sure to stir up an urge to get loose.","ibu":70,"name":"Wicked Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":4.8218854822495825,"address":"Utica NY 13502","category":"North American Lager","city":"Utica","coordinates":[43.1467,-75.1779],"country":"United States","ibu":0,"name":"Ziggy Socky Premium Lager Beer","state":"New York"},{"abv":6.304166254604339,"address":"220 North Randall Road","category":"German Ale","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":55,"name":"Dublin Dunkelweizenbock","state":"Illinois"},{"abv":2.3615398598133064,"category":"North American Lager","city":"Iowa City","coordinates":[41.6611,-91.5302],"country":"United States","ibu":65,"name":"Hawk Rye","state":"Iowa"},{"abv":5,"address":"110 Wisconsin Dells Parkway South","category":"German Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":22,"name":"Weissbier","state":"Wisconsin"},{"abv":13.908032251856616,"address":"Moosstrae 46","city":"Bamberg","coordinates":[49.8928,10.9131],"country":"Germany","ibu":61,"name":"Benediktiner Dunkel","state":"Bayern"},{"abv":4.8000001907000005,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":108,"name":"Edel-Pils","state":"Bayern"},{"abv":14.757684123230966,"address":"103 West Michigan Avenue","category":"North American Ale","city":"Battle Creek","coordinates":[42.322,-85.1851],"country":"United States","ibu":22,"name":"India Pale Ale","state":"Michigan","website":"http://www.arcadiaales.com/"},{"abv":12.022930245650056,"address":"1327 North 14th Street","category":"North American Ale","city":"Sheboygan","coordinates":[43.7594,-87.7228],"country":"United States","ibu":102,"name":"Port Washington Amber Ale","state":"Wisconsin"},{"abv":13.624428853298635,"address":"PO Box 1510","category":"British Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abbey Ale is a strong malty ale brewed in the style of the Trappist Monks. 22oz bottles only","ibu":119,"name":"Abbey Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":9.69282554871591,"address":"Chemin du Croly 52","city":"Quenast","coordinates":[50.6746,4.1509],"country":"Belgium","ibu":75,"name":"Blanche de Bruxelles Mannekin Pis","state":"Brabant Wallon"},{"abv":5.4168191839573145,"category":"German Lager","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":15,"name":"Fest","state":"Ohio"},{"abv":6.455041509824713,"address":"1130 Dublin Road","city":"Columbus","coordinates":[39.9745,-83.049],"country":"United States","ibu":109,"name":"Robert Burns Scottish Ale","state":"Ohio"},{"abv":3.6754578286562145,"category":"North American Ale","city":"Lake Barrington","coordinates":[42.2108,-88.1652],"country":"United States","ibu":82,"name":"Jack Stout","state":"Illinois"},{"abv":9.943721077528162,"address":"740 North Plankinton Avenue","category":"North American Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":56,"name":"Stillwater Stout","state":"Wisconsin"},{"abv":5.112408999667114,"address":"1025 Owen Street","category":"German Lager","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The Finches will get you if you don’t watch out!\" In the early days of southern Wisconsin, falling into the clutches of the \"Fighting Finches\" was the ultimate threat. Moses Finch fathered 21 offspring whose most notable talents were stealing horses and robbing stagecoaches. From their stronghold in the impenetrable marshes west of Lake Mills, the Finches raided the farms of local settlers and held up the early travelers between Madison and Milwaukee.\n\n\nThe Finches are long gone, but their legend lives on. So enjoy a pint of our Fighting Finches Bock… or you better watch out, ‘cause the Finches are gonna get you!","ibu":80,"name":"Fighting Finches Bock","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":2.7675501132961147,"address":"3191 Golf Road","category":"German Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":35,"name":"Bavarian Weiss Beer","state":"Wisconsin"},{"abv":1.847233403214612,"address":"3191 Golf Road","category":"North American Ale","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":117,"name":"Pale Ale","state":"Wisconsin"},{"abv":10.568646213655041,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":114,"name":"Spéciale Noël","state":"Hainaut"},{"abv":0.11743957908280755,"address":"4700 Cherry Creek Drive South","category":"German Lager","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":37,"name":"Fall Fest","state":"Colorado"},{"abv":10.5,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A luxurious, warming barleywine rich with aromatic hops and dark, candied fruit character that hides its epic strength masterfully.","ibu":116,"name":"Old Horizontal","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":13.117798145855712,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":33,"name":"Rainbow Trout Stout","state":"Colorado"},{"abv":0.9062138323337265,"city":"Dorchester","country":"United Kingdom","ibu":38,"name":"Royal Oak Pale Ale","state":"Dorset"},{"abv":7.366335755770844,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":117,"name":"Christmas Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":2.1426693975160047,"address":"2401 Blake St.","category":"North American Ale","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","ibu":95,"name":"Doggie Style Ale","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":11.592314200313739,"category":"North American Ale","city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":11,"name":"India Pale Ale","state":"California"},{"abv":6.5,"address":"512 Latimer Street","category":"North American Ale","city":"Nelson","coordinates":[49.4884,-117.29],"country":"Canada","ibu":33,"name":"Paddywhack IPA","state":"British Columbia"},{"abv":2.583925689596418,"address":"2424 West Court Street","category":"North American Ale","city":"Janesville","coordinates":[42.6793,-89.0498],"country":"United States","ibu":67,"name":"Classic American Pale Ale","state":"Wisconsin"},{"abv":5.3000001907,"address":"2123 1st Avenue North","city":"Billings","coordinates":[45.7861,-108.498],"country":"United States","ibu":5,"name":"Grizzly Wulff Wheat","state":"Montana","website":"http://www.yellowstonevalleybrew.com"},{"abv":4.8000001907000005,"address":"24 Kulick Road","category":"North American Ale","city":"Fairfield","coordinates":[40.8726,-74.2964],"country":"United States","description":"Our Fall release is a harvest Ale with a lighter amber color and a beige head with good retention. There is a good balance of earthy malt and a blend of floral and pine hops in the nose. Biscuit notes mixing with caramel sweetness.do their job to complement the rest of the flavors.This is an enjoyable seasonal for sure!","ibu":63,"name":"Fall Festivus Ale","state":"New Jersey","website":"http://www.crickethillbrewery.com"},{"abv":6.4000000954,"address":"99 Castleton Street","category":"Irish Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"A complex beer, with layers of flavors unfolding as this beer slides down your throat. Before the introduction of indirect-fired malt kilns, all beers had a smoky flavor. Today only a handful of brewers produce beer reminiscent of those of the past. We use imported German smoked malt to add depth and complexity to our Smoked Porter.","ibu":40,"name":"Captin Lawrence Smoked Porter","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":8.5,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"Lupulin Rapture Incarnate! As fervent  devotees of hops, we found ourselves on a quest to create a transcendental IPA capable of quenching our voracious lupulin desires. Our mantra became \"unity of bitterness, hop flavor and aroma.\" Enlightened, duganA IPA was born: A brutally bitter, dank, piney and resinous ale designed for those seeking a divine hop experience.","ibu":91,"name":"DuganA IPA","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":7,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"The name CascaZilla is a play on both the name of our local Cascadilla Gorge and the monster amounts of Cascade hops in this beer. This red ale gets its distinctive color from a healthy portion of caramel malt, which also lends some body and sweetness to the beer. The predominant flavor and aroma of this beer, however, is brought to you by the fresh American hops. If you haven't done so yet, treat yourself to Ithaca Beer's new monstrously hoppy Red Ale.","ibu":71,"name":"Cascazilla","state":"New York"},{"abv":2.0000795436390515,"address":"6 N. Reamstown Road","category":"German Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"Dark Dunkle style lager with an original gravity above 19 degrees Plato. Rich and malty, this is a strong bock with a mellow finish.","ibu":25,"name":"Wobbly Bob Dopplebock","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":5.8000001907000005,"address":"2516 Market Avenue","category":"Irish Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","ibu":24,"name":"Edmund Fitzgerald Porter","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":8,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Fallen Angel Golden Strong Ale, brewed on 6-6-6, is named in the tradition of Belgian golden strong ales--after the devil himself. \n\n\nMidnight Sun's Fallen Angel Golden Strong Ale is a traditional Belgian-style golden ale--beautiful gold in color with tiny, conniving bubbles forming a very thick, meticulous head. Effervescent and crisp, this seriously delicious elixir tempts the palate with apple (oh so Garden of Eden), pear and a little earthy mustiness. Fallen Angel captivates your senses with its lightness and brightness while its 8% ABV strength breathes fire into your soul, warming you from the inside out. \n\n\nAngel-like in appearance, the devil is in its strength. \n\n\nWith its introduction in 2006 and its immediate cult following, Fallen Angel is now brewed and released about once a year.","ibu":68,"name":"Fallen Angel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":18,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"Too extreme to be called beer? Brewed to a colossal 45-degree plato, boiled for a full 2 hours while being continuously hopped with high-alpha American hops, then dry-hopped daily in the fermenter for a month & aged for nother month on whole-leaf hops!!! Our 120 Minute I.P.A. is by far the biggest I.P.A. ever brewed! At 20% abv and 120 ibus you can see why we call this beer THE HOLY GRAIL for hopheads!\n\n\n-changed to be 18% for aging purposes according to Dogfish Head brewery.","ibu":16,"name":"120 Minute IPA","state":"Delaware","website":"http://www.dogfish.com"},{"abv":10.939794550603196,"address":"2980 Cahill Main","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":7,"name":"Verrückte Stadt Pilsner","state":"Wisconsin"},{"abv":2.1803217833155397,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":96,"name":"Alpine Glow Red Ale","state":"New Jersey"},{"abv":4.5999999046,"address":"Wunderburg 5","city":"Bamberg","coordinates":[49.8904,10.9056],"country":"Germany","ibu":108,"name":"Bamberger Herren Pils","state":"Bayern"},{"abv":14.32507557406069,"address":"1927 West North Avenue","category":"German Ale","city":"Chicago","coordinates":[41.9104,-87.6761],"country":"United States","ibu":114,"name":"Top Heavy Hefeweizen","state":"Illinois"},{"abv":13.097289178411303,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":101,"name":"Imperial Stout","state":"Wisconsin"},{"abv":2.0331942174593607,"address":"1080 West San Marcos Boulevard","category":"North American Lager","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":46,"name":"Honey Ale","state":"California"},{"abv":9.570239868532273,"address":"7536 Fay Avenue","city":"La Jolla","coordinates":[32.8409,-117.274],"country":"United States","ibu":66,"name":"Pilsner","state":"California"},{"abv":14.492316412448256,"address":"4765 NE Fremont","category":"Irish Ale","city":"Portland","coordinates":[45.5484,-122.619],"country":"United States","ibu":70,"name":"Irvington Porter","state":"Oregon"},{"abv":8.1999998093,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":45,"name":"Imperial Stout","state":"California","website":"http://www.lagunitas.com/"},{"abv":3.0302631145795433,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":77,"name":"Old Guardian Barley Wine 2005","state":"California","website":"http://www.stonebrew.com/"},{"abv":10,"address":"4509 SE 23rd Avenue","category":"British Ale","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":40,"name":"Adam","state":"Oregon"},{"abv":5.908207204082827,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":91,"name":"Irish Stout","state":"Washington"},{"abv":5.3000001907,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":68,"name":"Eighty-Shilling Scottish Ale (80/-)","state":"Nebraska"},{"abv":6.5717766545217335,"address":"Weinbichl 6","category":"German Ale","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":0,"name":"Hefeweizen","state":"Baden-Wrttemberg"},{"abv":8.1000003815,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":8,"name":"Toil & Trubbel Dubbel","state":"Nebraska"},{"abv":8,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":60,"name":"Tripel","website":"http://www.latrappe.nl/"},{"abv":10.240876981807572,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":82,"name":"Cuvée des Champions 2003-2004","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":6,"address":"4811 Dusharme Drive","category":"North American Ale","city":"Brooklyn Center","coordinates":[45.0429,-93.3246],"country":"United States","description":"Like Hops? You'll like this fire-hued beer. This is the beer I have always dreamed of making. This is the beer that would come to mind while spending the last two years tearing down walls, hanging sheetrock, moving kegs, power washing the ceilings, arguing with various agencies, and cutting the water main. \n\n\nWithout Golden Promise malt, made by family-owned Simpsons Malt, Furious would just be pissed off-ed. From Scotland, this malt is still produced in the tradition of turning over the barley by hand, resulting in a malt that is unsurpassed in its quality. Golden Promise is also used extensively by premium whisky distilleries such as The Macallan. This malt provides the backbone for the intense hop character. Four American hop varieties are used at a rate of over three pounds per barrel. The result is a rich malt sweetness infused with bright hop flavor and aroma from beginning to end. Oh yeah, it's about 6% alcohol and around 100 IBUs.","ibu":112,"name":"Furious Beer","state":"Minnesota","website":"http://www.surlybrewing.com/"},{"abv":4.0999999046,"address":"3525 Liberty Avenue","category":"German Lager","city":"Pittsburgh","coordinates":[40.4624,-79.9645],"country":"United States","description":"This beer is golden in color with a light bubbly effervescence. The light body makes this lager beer appropriate for a business lunch or your evening sipping beer. The light malt flavor also accentuates the hop flavor. From the start, you will notice a fine hop aroma. As you sip the Celestial Gold, the subdued maltiness blends with a slight hop flavor. When this beer finishes, you will notice a pleasant hop bitterness. The bitterness will be mild and quite appropriate. Celestial Gold has been known to induce Celestial bliss.","ibu":41,"name":"Celestial Gold","state":"Pennsylvania","website":"http://churchbrew.com/"},{"abv":4.1999998093,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Light and refreshing on the palate, our session best bitter has a classic Irish malt & traditional hop aroma. Light amber in colour, this smooth beer has hints of caramel with a woody bitterness.","ibu":13,"name":"St. Patrick's Best","state":"County Down","website":"http://slbc.ie/"},{"abv":6.5,"address":"800 Paxton Street","category":"Other Style","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"This mahogany ale packs a lingering, earthy hoppiness. The addition of more than 20% rye to the grain bill gives a creamy mouthfeel and hints of spice that compliment the bitterness of hops. Subtle fruitiness come through from the Bravo hops added during the boil, but the Cluster and Liberty varieties used in dry-hopping this beer are the true flavor drivers in this spicy ale. Dark in color and intense is flavor, Scratch 25-2009 finds true balance in a beer that could have easily gone way over the top. Enjoy.","ibu":88,"name":"Scratch #25 2009 Magical Moustache Rye","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":4.1999998093,"address":"7424 SW Beaverton-Hillsdale Hwy","category":"North American Ale","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"Ring Tail Pale is light in body and straw-gold in color, with a crisp hop finish. This beer is a great choice for domestic lager drinkers.","ibu":60,"name":"Ring Tail Pale Ale","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":6,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"During even the coldest of weather, warm up to the smooth, robust taste of our Winter's Bourbon Cask Ale. Full of rich aromas that you find in the winter months, hints of vanilla and flavorful hops, this is a beer that is great for pouring into a large tulip glass and enjoying with friends around a fireplace.","ibu":88,"name":"Michelob Winter's Bourbon Cask Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.3000001907,"address":"222 West St # 46","category":"German Lager","city":"Keene","coordinates":[42.9324,-72.2867],"country":"United States","ibu":7,"name":"Elm City Schwarzbier","state":"New Hampshire","website":"http://www.elmcitybrewing.com/"},{"abv":2.7999999523,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","ibu":11,"name":"Miller Genuine Draft 64","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":3.2999999523,"address":"Kendlerstraße 1","category":"North American Lager","city":"Salzburg","coordinates":[47.8005,13.0444],"country":"Austria","description":"This is a light beer with a full taste and a third less alcohol so therefore 30% less calories. It is ideal for beer lovers who prefer light beers but do not want to renounce the taste.","ibu":76,"name":"Stiegl Leicht","website":"http://www.stieglbrauerei.at/"},{"abv":3.7532334279633517,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":75,"name":"Timmermans Forest Fruit","website":"http://www.anthonymartin.be/"},{"abv":5.0999999046,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"It’s easy to forget just how dynamite a well-made pale ale can treat you. Our Pale combines softness from our Pilsner malt, a touch of sweetness from English crystal malt, and plenty of fruity, resinous Northwest hop flavor. The finish is dry, clean and refreshing.","ibu":47,"name":"Double Mountain Pale Ale","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":5.5,"address":"Domring 4-10","category":"German Ale","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":72,"name":"Konig Ludwig Weissbier","state":"Nordrhein-Westfalen"},{"abv":5.6999998093,"address":"2051A Stoneman Circle","category":"British Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":4,"name":"Southern Tier Harvest Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":3.036297978407151,"address":"12 Old Charlotte Highway","category":"Other Style","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"Our ever-changing spiced winter seasonal. A tasty brew that complements all your holiday festivities. It is typically malty in body, lightly hopped, and rounded out with spices that we vary from year to year.","ibu":104,"name":"Cold Mountain Winter Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":4.079506341925082,"address":"910 Division St","category":"British Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","ibu":27,"name":"ESB","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":0.6889775089860128,"address":"310 Commercial Drive","category":"German Lager","city":"Vancouver","coordinates":[49.2821,-123.07],"country":"Canada","description":"A true North German Style Pilsner. Light in body and packed full of Czech Saaz hops. The distinctive Pilsner aroma and dry, refreshing taste make a great accompaniment to a hot Vanouver day.","ibu":48,"name":"Precipitation Pilsner","state":"British Columbia","website":"http://www.stormbrewing.org"},{"abv":5.3000001907,"address":"161 River Avenue","category":"North American Lager","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","description":"TOASTED LAGER\n\n\nBlue Point Brewing's award-winning Toasted Lager is our flagship product. Copper in color this brew is made from six different malts including: English Pale, Crystal, Munich, Carapils, Wheat and Belgian Caravienna. Toasted Lager displays a balanced flavor of malt and hop which makes for easy drinking. Special lager yeast is used to produce that long lasting, smooth finish. The \"toasted\" part of the name refers to our direct-fire brew kettle’s hot flames that impart a toasted flavor to our most popular microbrew.","ibu":80,"name":"Toasted Lager","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":5,"address":"255 Bremner Road","category":"North American Lager","city":"Toronto","coordinates":[43.6414,-79.3869],"country":"Canada","description":"Good clean lager.","ibu":51,"name":"Steamwhistle Lager","state":"ON","website":"http://www.steamwhistle.ca"},{"abv":5.5,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"A crisp, well-balanced, refreshing amber. Simplicity is the key to this recipe.","ibu":35,"name":"Ashland Amber","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":4.5,"address":"350 West Eleventh Street","category":"Other Style","city":"Bloomington","coordinates":[39.1733,-86.5369],"country":"United States","ibu":113,"name":"Upland Wheat Ale","state":"Indiana","website":"http://www.uplandbeer.com"},{"abv":4,"address":"1340 East Eighth Street #103","category":"Belgian and French Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"The dominating character of this beer is of course peach flavor and aroma. It is a little more subtle than most fruit beers which makes it more approachable. Light in body and color. \n\n\nAlcohol content of approximately 4.0% by volume (ALWAYS ON TAP!!)","ibu":47,"name":"Arizona Peach","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5.850334119185424,"address":"535 West Grand Avenue","category":"North American Ale","city":"Port Washington","coordinates":[43.3871,-87.8795],"country":"United States","ibu":119,"name":"Full Tilt IPA","state":"Wisconsin"},{"abv":5.8000001907000005,"address":"75-5629 Kuakini Highway","category":"North American Ale","city":"Kailua-Kona","coordinates":[19.642,-155.996],"country":"United States","ibu":54,"name":"Fire Rock Pale Ale","state":"Hawaii","website":"http://www.konabrewingco.com"},{"abv":3.2999999523,"address":"1705 Mariposa Street","category":"British Ale","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":72,"name":"Small Beer","state":"California"},{"abv":10.204855699742053,"category":"German Lager","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":92,"name":"Eganator Doppelbock","state":"Wisconsin"},{"abv":6.055589445811203,"address":"3703 North Main Street","category":"Other Style","city":"Mishawaka","coordinates":[41.6931,-86.1818],"country":"United States","ibu":102,"name":"Raspberry Wheat Ale","state":"Indiana"},{"abv":10,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":91,"name":"Dulle Teve / Mad Bitch","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":6,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":84,"name":"Blanche Double","state":"Hainaut"},{"abv":4.8000001907000005,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"By 1915, Bend, Oregon, was alive with the sound of the buzz saw, as two of the country's largest pine sawmills set up shop on the banks of the Deschutes River. The mills are gone now, but the smokestacks still stand testament to Bend's humble beginnings. \n\n\nBuzzsaw Brown is an easy-drinking beer that is refreshing after a hard day’s work. The timber mills in Bend may be closed, but whether your adventure includes a day of scaling rock faces, hitting 18 holes or skiing the slopes in spring, Buzzsaw Brown is the perfect end to a fun-filled day.\n\n\n“Buzzsaw Brown is one of my favorite beers,” says Deschutes Brewery Brewmaster Larry Sidor. “The unique combination of European and American malts makes it a very food friendly beer that pairs well with a wide variety of flavors.”","ibu":93,"name":"Buzzsaw Brown","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.5999999046,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"Seductively smooth, this medium-bodied amber beauty is akin to the great Oktoberfest beers of Munich. All German malts and whole flower European hops make this lager true to style.","ibu":109,"name":"Festbier","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5,"address":"420 Acorn Lane","category":"Belgian and French Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A swirling dynamo of flavor, with a steady calm of satisfaction at its heart, that's Whirlwind Witbier. Offering a tamed tempest of flavors both spicy and sublime, this softly fermented ale greets the nose and tingles the tongue. Imported Belgian yeast charges Whirlwind with an energy all its own. It is a refreshing interpretation of the classic, Belgian 'white beer' style.","ibu":44,"name":"Whirlwind Wit","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":11.523200155823545,"address":"1075 East 20th Street","category":"North American Lager","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":1,"name":"Dark Wheat","state":"California","website":"http://www.sierranevada.com/"},{"abv":10.125812152731516,"address":"Va Ricardo J. Alfaro y Transistmica","category":"North American Lager","city":"El Dorado","coordinates":[37.4316,-78.6569],"country":"Panama","ibu":119,"name":"Cabro Extra"},{"abv":0.563173428547874,"address":"Polson MT 59860","category":"North American Ale","city":"Polson","coordinates":[47.6959,-114.176],"country":"United States","ibu":96,"name":"Black Dog Yellowstone Ale","state":"Montana","website":"http://www.blackdogales.com/"},{"abv":8.925616440310367,"address":"717 East Butterfield Road","category":"German Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":111,"name":"Weisen","state":"Illinois"},{"abv":8.602944891415143,"category":"North American Lager","city":"Glen Ellyn","coordinates":[41.8775,-88.067],"country":"United States","ibu":56,"name":"G.E. Lite","state":"Illinois"},{"abv":3.750893358029849,"category":"North American Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":34,"name":"Pale Ale","state":"New Jersey"},{"abv":6.698568894320546,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":7,"name":"Black Wolf Ale","state":"Wisconsin"},{"abv":12.242748998325526,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":101,"name":"Maple Wheat","state":"Ontario"},{"abv":2.295019538434228,"address":"211 West 13th Avenue","city":"Denver","coordinates":[39.7369,-104.991],"country":"United States","ibu":2,"name":"Dark Star ESB","state":"Colorado"},{"abv":11.39139560415262,"category":"German Lager","city":"Concord","coordinates":[37.978,-122.031],"country":"United States","ibu":91,"name":"Brandenburg Gate Märzen","state":"California"},{"abv":12.917867467311503,"address":"33180 Cape Kiwanda Drive","category":"North American Ale","city":"Pacific City","coordinates":[45.2152,-123.97],"country":"United States","ibu":4,"name":"India Pelican Ale","state":"Oregon","website":"http://www.pelicanbrewery.com/"},{"abv":9.695292891780515,"category":"North American Lager","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":88,"name":"Wheat","state":"Ohio"},{"abv":13.955401660013468,"address":"1516 Sansom Street","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","ibu":7,"name":"Ich Bin Ein Berliner Weisse","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":3.2401953074735603,"address":"243 North Gaither Street","category":"German Lager","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":39,"name":"Wooly Bully","state":"Oregon"},{"abv":8.5,"address":"Bergerstrae 1","category":"German Lager","city":"Dsseldorf","coordinates":[51.225,6.7722],"country":"Germany","ibu":102,"name":"DoppelSticke","state":"Nordrhein-Westfalen"},{"abv":5.707157036275864,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":22,"name":"Firkin IPA","state":"Washington"},{"abv":6.5,"address":"Konradigasse 2","category":"German Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":36,"name":"Nickelbier","state":"Baden-Wrttemberg"},{"abv":0.8895448963383523,"address":"1265 Boston Avenue","category":"North American Lager","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":96,"name":"Goosinator Smoked Doppelbock 2007","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7.636777325971606,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":105,"name":"Festive Ale 2007","state":"Nebraska"},{"abv":8.8999996185,"address":"302 N. Plum St.","category":"British Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our classic Olde Ale redefines the term \"full-bodied\" with its deliverance of complex and firm malt flavor. A fine blend of British and American hops provides an even bitterness as this beer finishes with a warming alcohol flavor.","ibu":71,"name":"Lancaster Winter Warmer","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":5.5999999046,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Our multi-grain pale ale summons the sweetness of oats, the complexity of rye and the smoothness of malted wheat, balanced by a generous dry-hopping of imported, noble Saaz hops.","ibu":1,"name":"Amish Four Grain","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":4.5999999046,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This representation of the classic Irish Dry Stout has a smooth roast flavor due to the use of specially roasted barley. The barley kernels are kilned at very high temperatures until they are dark brown to black in color. \n\nThe Susquehanna River is named after the Susquehannock Indians who settled in our area. This shallow river is over one mile wide in the Harrisburg area and flows from southern New York through Pennsylvania to the Chesapeake Bay.","ibu":93,"name":"Susquehanna Stout","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":13.99812130912315,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":117,"name":"Playland Pale Ale","state":"California"},{"abv":10.24803988790364,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","ibu":5,"name":"Frambozen","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":12.052620975151225,"address":"Bridge Street","category":"Irish Ale","city":"Burton-upon-Trent","coordinates":[52.8065,-1.6225],"country":"United Kingdom","ibu":36,"name":"Burton Porter","state":"Staffordshire","website":"http://www.burtonbridgebrewery.co.uk/Index.shtml"},{"abv":6.5,"address":"1125 Richter Street","category":"German Lager","city":"Kelowna","coordinates":[49.8945,-119.488],"country":"Canada","ibu":52,"name":"Brockton Black Lager","state":"British Columbia"},{"abv":0.9015172034228602,"address":"800 LaSalle Plaza","category":"British Ale","city":"Minneapolis","coordinates":[44.9765,-93.2747],"country":"United States","ibu":70,"name":"Itasca Extra Pale Ale","state":"Minnesota"},{"abv":10.303499311938452,"address":"1001 South Eighth Street","category":"North American Lager","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":99,"name":"Canadian Light","state":"Wisconsin"},{"abv":1.188079017789817,"address":"100 Main Street","category":"Irish Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":34,"name":"Porter","state":"Wisconsin"},{"abv":8.504138382595258,"city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":48,"name":"Horndean Special Bitter / HSB","state":"Hampshire"},{"abv":6.224825599193132,"address":"2700 South Quincy Street","category":"Irish Ale","city":"Arlington","coordinates":[38.8411,-77.0869],"country":"United States","ibu":23,"name":"Prohibition Porter","state":"Virginia"},{"abv":3.6879049635161074,"address":"114 North Main Street","category":"German Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":77,"name":"Schwarzbier","state":"Michigan"},{"abv":0.7209748426901219,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":49,"name":"Big Daddy Brown","state":"Indiana"},{"abv":10.665052634390767,"address":"1501 Arboretum Drive","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":5,"name":"Caber Tossing Scottish Ale","state":"Wisconsin"},{"abv":8.1999998093,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"Hopheads rejoice! This strong IPA takes the style to a new level. It's a big Imperial IPA packed with Nugget, Palisade, and Amarillo hops. ABV 8.2%","ibu":24,"name":"Double D IPA","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.4000000954,"address":"50 N. Cameron St.","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Abbey Roade is brewed in the tradition of the famous Belgian Abbey-style ales. This wonderful brew is soft and sweet up front. The complex and spicy middle palate is in most part due to the generous addition of dark Belgian candy sugar. This semi-dry ale has notes of ripe plum and pear with a peppery finish. \n\nThe origins of the Abbey-style ale date back to the Middle Ages. Monks residing in monasteries, called Abbeys, brewed beer as a source of nutrition during their frequent and often lengthy fasting periods.","ibu":1,"name":"Abbey Roade Belgian Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5,"address":"800 Paxton Street","category":"North American Lager","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Bavarian Lager is an authentic German style lager, brewed with Munich malts, Hallertau Hops and fermented at cool temperatures followed by a full month of aging, or \"lagering\", to impart a range of complex maltiness and subtle aromas only found in traditional German lagers.","ibu":57,"name":"Bavarian Lager","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":6.705945250683137,"address":"1920 Shattuck Avenue","category":"North American Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":51,"name":"Amber","state":"California"},{"abv":14.079231375174258,"address":"101 East Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9132,-79.0558],"country":"United States","ibu":44,"name":"Big Bertha Brown","state":"North Carolina"},{"abv":1.6663753940493886,"address":"6863 Lundy's Lane","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":32,"name":"Saaz Pilsner","state":"Ontario"},{"abv":2.065546945985761,"category":"North American Lager","city":"La Crosse","coordinates":[43.8014,-91.2396],"country":"United States","ibu":80,"name":"Old Style","state":"Wisconsin"},{"abv":9,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"Three varieties of malt and three of hops create the robust character of this St. Martin triple abbey ale.\n\nAbbye St. Martin Ales are pure Belgium.","ibu":81,"name":"Abbaye de Saint-Martin Triple","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":0.05489644928317605,"address":"50 Catoctin Ct. NE #100","category":"North American Ale","city":"Leesburg","coordinates":[39.1126,-77.5537],"country":"United States","description":"An American style India Pale Ale. This medium bodied, light bronze hued brew has an aggressive hop character and flavor from the use of American hops in dry hopping. Our interpretation comes in at 13.0 degrees plato with IBU’s in the mid 40’s. The American hop varietals used as Kettle additions were Amarillo and Chinook and this was dry hopped with Chinook as well.","ibu":118,"name":"50 CAT IPA","state":"Virginia","website":"http://www.vintage50.com/"},{"abv":8,"address":"112 Valley Road","category":"German Lager","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Traditionally brewed by Monks to sustain them while they fasted during lent; the Doppel Bock is a big-bodied and flavorful beer.","ibu":94,"name":"Climax Doppel Bock","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":5.5,"address":"112 Valley Road","category":"British Ale","city":"Roselle Park","coordinates":[40.6598,-74.283],"country":"United States","description":"Our E.S.B. is a balanced beer with notes of honey, toffee and caramel, backed by a warm spicy hop bitterness.","ibu":97,"name":"Climax Extra Special Bitter Ale","state":"New Jersey","website":"http://www.climaxbrewing.com/"},{"abv":10.178209415787936,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Redbridge beer doesn’t need to make promises to stand out from the crowd; its very essence sets it apart. Redbridge is made without wheat or barley, so the approximately 3.2 million consumers who are unable to drink beer made with barley due to Celiac Disease or because they follow a wheat-free or gluten-free diet can once again enjoy a great tasting beer. Redbridge is a rich, full-bodied lager brewed from sorghum for a well-balanced, moderately hopped taste.","ibu":29,"name":"Redbridge","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":12.089512597430753,"address":"102 North Market Street","category":"Other Style","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"The perfect thirst quenching summertime ale. The subtle flavor of kiwi and strawberry blend with traditional German wheat and hops. Great for a hot summer day.","ibu":12,"name":"Bube's Kiwi-Strawberry Wheat","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":6.525112833878791,"address":"529 Grant St. Suite B","category":"Irish Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"A robust porter, dark brown in color and full bodied with a malty sweet taste.","ibu":25,"name":"Old Leghumper Porter","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9,"address":"8938 Krum Ave.","category":"Belgian and French Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Batch 8,000 is part of our commemorative series celebrating our progress with special brews. Our 8,000th batch is a special recipe to be brewed only once. It is wheat ale spiced with Coriander, Orange Peel, and Paradise Seed. Best consumed fresh.","ibu":116,"name":"Batch 8000","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our Oatmeal Stout is definitely a local favorite but it gets its origins from one of London's oldest breweries. The Oatmeal Stout differs from the popular Irish stout in its more subtle roastiness and subdued dryness. The addition of flaked oats rounds out these sometimes harsh characteristics producing a velvet smooth ale. This black stout has a flavor profile unique to all of North America. Subtlety is not a strong point as it is a stout after all, rich and eminently drinkable. \n\n\nAlcohol content of approximately 5.0% by volume (ALWAYS ON TAP!!)","ibu":105,"name":"Oatmeal Stout","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":4.5,"address":"515 Jefferson Street SE","category":"North American Lager","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":6,"name":"Whistling Pig Hefeweizen","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":4.3000001907,"address":"1514 NW Leary Way","category":"North American Lager","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":0,"name":"Old Seattle Lager","state":"Washington"},{"abv":13.607813754954098,"address":"200 East Campbell Avenue","category":"North American Ale","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":111,"name":"Pale Ale","state":"California"},{"abv":10.723698739111505,"category":"Irish Ale","city":"Toms River","coordinates":[39.9529,-74.201],"country":"United States","ibu":44,"name":"Porter","state":"New Jersey"},{"abv":5.387602929637103,"address":"1800 West Fulton Street","category":"North American Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":1,"name":"Oatmeal Stout","state":"Illinois"},{"abv":12.985940888043116,"address":"2980 Cahill Main","category":"North American Ale","city":"Fitchburg","coordinates":[43.0177,-89.4232],"country":"United States","ibu":1,"name":"Foxy Brown","state":"Wisconsin"},{"abv":7.177509102242611,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":76,"name":"Padre Porter","state":"California"},{"abv":10.932100204517143,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":35,"name":"Skye Strong Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":7,"address":"The Pier","category":"British Ale","city":"Isle of Skye","coordinates":[56.4907,-4.2026],"country":"United Kingdom","ibu":107,"name":"Wee Beast","state":"Scotland"},{"abv":5.5,"address":"1249-A Wicker Drive","category":"North American Ale","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"This dark brown ale is slightly sweet with a caramel and dark fruit finish. A show case of fine English malts, floor malted the old way. We use pale, chocolate, and crystal malts to produce a complex, but easy drinking dark ale. Very reminescent of northern English ales.","ibu":102,"name":"Bad Penny","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":5.3000001907,"address":"Franz-Brombach-Strae 1-20","category":"Other Style","city":"Erding","coordinates":[48.3153,11.8911],"country":"Germany","description":"The famous Bavarian specialty\n\n\nErdinger Weissbier 'crystal clear' is particularly welcome as a tasty thirst-quencher for hot summer days.\n\n\nThis specialty wheat beer gets its 'crystal clear' appearance from a particularly long filtration process, known in the industry as \"fine filtration\", whereby the beer becomes completely clear.\n\n\nThis gives Erdinger Weissbier 'crystal clear' its sparkling and refreshing character - which also makes it the ideal wheat beer for warm summer days.\n\n\nBrewed in strict accordance with our own traditional recipe, Erdinger Weissbier 'crystal clear' meets the highest quality standards and satisfies the most sophisticated palate.","ibu":44,"name":"Erdinger Weizen","state":"Bayern"},{"abv":8.5,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","description":"The particular character and the unique taste of \"Delirium Tremens\" result from the use of three different kinds of yeast. Its very original packing, which resembles cologne ceramics, and the colourful label contribute to its success.","ibu":41,"name":"Delirium Tremens","state":"Oost-Vlaanderen"},{"abv":3.4438091022932484,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":90,"name":"Berliner Weisse","state":"Illinois"},{"abv":5.6999998093,"address":"420 Acorn Lane","category":"German Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"As invigorating as the morning rays of the summer sun, Sunrise Weissbier satisfies when the heat is on, too. This unfiltered, Bavarian style ale is true to its origins with all ingredients except for the water having been imported from Germany. It remains unfiltered to feature the tangy, fruity flavors of its unique yeast. The imported German malt contributes greatly to add a crisp, citric snap that makes this beer a superb summertime refresher.","ibu":90,"name":"Sunrise Weissbier","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.4000000954,"address":"310 Mill Creek Avenue","category":"North American Lager","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"A regional favorite, Yuengling Premium Beer is popular among local beer drinkers for its thirst quenching taste. It is a pilsner-style brew, gold in color with pale malt character that finishes crisp and clean. Premium flawlessly blends both two-row and six-row barley malt for a well balanced flavor that is always refreshing. Traces of the slight hop aroma are evident in every delicious sip of Premium Beer. Discover this well kept secret and enjoy the superior quality and taste you've come to expect from America's Oldest Brewery.","ibu":88,"name":"Yuengling Premium Beer","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":5.9000000954,"address":"30 Germania Street","category":"Belgian and French Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Samuel Adams Cranberry Lambic is a fruit beer that draws its flavor not just from the cranberries it is brewed with, but also from the unique fermentation character imparted by the rare wild yeast strain. The result is a flavor rich in fruitiness and reminiscent of cranberries and bananas, cloves and nutmeg. The yeast fermentation also will create a slight sourness on the sides of the palate, a signature of the original Lambic style which, with the subtle cereal note from the wheat malt, remind its drinker that, as fruity a beer as this is, it is still a beer.","ibu":73,"name":"Samuel Adams Cranberry Lambic","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":8,"address":"4120 Main Street","category":"North American Ale","city":"Philadelphia","coordinates":[40.0236,-75.2202],"country":"United States","description":"Imperial, or super IPA’s were spawned out of the fascination of hops by the American consumer and are beyond Pale Ales and IPA’S in terms of both hop and alcohol content. Our interpretation is orange-gold in color, lightly bitter but highly hoppy with a firm malt backbone. \n\nWe’ll gladly put this head-to-head with the best that those California Hophead/Brewers have to offer.","ibu":32,"name":"California Dreaming","state":"Pennsylvania","website":"http://www.manayunkbrewery.com/"},{"abv":4.8000001907000005,"address":"An der Streue","city":"Meschede","coordinates":[51.3055,8.1259],"country":"Germany","ibu":81,"name":"Pilsner","state":"Nordrhein-Westfalen"},{"abv":13.761509743438825,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":33,"name":"Farm Frog","state":"Washington"},{"abv":5.3000001907,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":64,"name":"Skibbereen Stout","state":"Washington"},{"abv":10.35637608797203,"address":"Konradigasse 2","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":54,"name":"Messing","state":"Baden-Wrttemberg"},{"abv":14.454876871398985,"address":"17070 Wright Plaza","city":"Omaha","coordinates":[41.2331,-96.1811],"country":"United States","ibu":35,"name":"Espresso Stout","state":"Nebraska"},{"abv":6.8000001907000005,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":57,"name":"India Pale Ale","state":"California","website":"http://www.sierranevada.com/"},{"abv":8,"address":"6 Chapel Close","category":"North American Ale","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":4,"name":"Lump of Coal Dark Holiday Stout","state":"Oxford"},{"abv":3.546333184905488,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":55,"name":"Czech Out This Pils!","state":"Wisconsin"},{"abv":5.3000001907,"address":"880 West Castleton Road","category":"North American Ale","city":"Castle Rock","coordinates":[39.4091,-104.87],"country":"United States","ibu":18,"name":"Hopyard IPA","state":"Colorado"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":45,"name":"Harvest Ale 1998","state":"Manchester"},{"abv":4.489303705646424,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":38,"name":"XXX Porter","state":"Illinois"},{"abv":7.776105318584826,"address":"220 North Randall Road","category":"German Lager","city":"Lake In The Hills","coordinates":[42.1779,-88.3377],"country":"United States","ibu":60,"name":"Black Forest","state":"Illinois"},{"abv":6.8327336801482454,"address":"1028 Johnny Dodds Boulevard","category":"Other Style","city":"Mount Pleasant","coordinates":[32.8091,-79.875],"country":"United States","ibu":37,"name":"Raspberry Wheat","state":"South Carolina"},{"abv":14.914119000517283,"address":"1763 South 300 West","category":"Irish Ale","city":"Salt Lake City","coordinates":[40.7322,-111.9],"country":"United States","ibu":40,"name":"Wasatch Polygamy Porter","state":"Utah","website":"http://www.utahbeers.com/"},{"abv":7.256502706201033,"address":"Kokstaddalen 3","city":"Bergen","coordinates":[60.2945,5.2592],"country":"Norway","ibu":114,"name":"Pilsner"},{"abv":4.407409985500744,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":59,"name":"Old Man Winter Warmer 2002","state":"Minnesota"},{"abv":13.119774912330112,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":59,"name":"Dunkel","state":"Bayern"},{"abv":5.8000001907000005,"address":"600 Elmira Road","category":"North American Ale","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Made with generous amounts of west coast hops, our Pale Ale boasts a fragrant aroma and a pleasant hop bite. It has a deep golden color, and nicely balances the bitterness of the hops with the sweetness of the malt. Whether you know hops or not, our Pale Ale will appeal to all those looking for a refreshing, well balanced ale.","ibu":29,"name":"Pale Ale","state":"New York"},{"abv":4.0999999046,"address":"South Main Street","category":"North American Ale","city":"Cork","coordinates":[51.897,-8.4769],"country":"Ireland","ibu":16,"name":"Genuine Irish Stout"},{"abv":12,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":2,"name":"Stille Nacht","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":10,"city":"Portsmouth","coordinates":[50.7989,-1.0912],"country":"United Kingdom","ibu":16,"name":"Millennium Brew","state":"Hampshire"},{"abv":9.8000001907,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":35,"name":"Van den Vern Grand Cru","state":"Oost-Vlaanderen"},{"abv":0.1029441413160237,"category":"North American Ale","city":"La Jolla","coordinates":[33.8575,-117.876],"country":"United States","ibu":91,"name":"Red Ale","state":"California"},{"abv":0.2908860581740569,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":31,"name":"Pale Ale","state":"California"},{"abv":9.8999996185,"address":"2730 NW 31st Avenue","category":"British Ale","city":"Portland","coordinates":[45.5415,-122.713],"country":"United States","ibu":76,"name":"Benchmark Old Ale","state":"Oregon"},{"abv":6.6999998093,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":58,"name":"Autumn Ale","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":11.947953366630834,"category":"North American Ale","city":"Mankato","coordinates":[44.1636,-93.9994],"country":"United States","ibu":48,"name":"Rapidan Brown","state":"Minnesota"},{"abv":12,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This is a truly unique brew, combining some unusual elements to create a powerful, yet flavorful brew. I brewed a similar beer to this one back in 1998, while I was home brewing out in California. Only this time around I decided to age it in bourbon barrels to add a new element to the already rich sensory profile. The combination of dark malt, elderberries and bourbon barrels makes for an interesting tasting experience. This is a sippin’ beer, so sit back by the fire and enjoy. 12% alcohol by volume.","ibu":88,"name":"Nor' Easter","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":7.5,"address":"3924 West Spruce Street Suite A","category":"North American Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Jai Alai IPA is a monster interpretation of an American IPA. In fact, it is so big that it equals the alcohol of some double IPAs on the market. Our IPA uses 6 different hop varietals, with Simcoe hops only being used for dry hopping. The rest of the hop additions are blended at different IBU's (International Bittering Units) in groups of three hops per addition in order to create more hop complexity. At CCB, we love hops but also feel that balance is important for IPAs. So Jai Alai features a sturday caramel malt component which helps to create balance, staving off hop astringency. Ultimately, Jai Alai is a very strong interpretation of a single American IPA. We hope that it makes Tampa Bay natives happy because this is head brewer Wayne Wamble's favorite Cigar City beer and he'd love to share one with you!","ibu":75,"name":"Jai Alai IPA","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":9.5,"address":"800 Paxton Street","category":"British Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Every beer tells a story, and some are longer than others.\n\n\nConsider Scratch #19; originally designed as an enhanced take on Scratch #15 with a slightly higher ABV, our brewers went to town to deliver a brew slightly more akin to our fabled Scratch #5, the Imperial Oatmeal Stout brewed for The Flying Mouflan Experience.\n\n\nFor Scratch #19, we teamed up with St. Thomas Roasters of Linglestown to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating en environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Scratch #19 a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus hop finsh coming from the Kenyan beans and hops.\n\n\nSome stories have twists, and unfortunately a faulty valve in the fermentation cellar led to a dramatic beer tragedy one afternoon in the brewery. Risking life and limb (while keeping his mouth open to sample the beer), a heroic brewery team member took the dive reconnecting the valve and saving about half the batch of Scratch #19.\n\n\nSo for your amusement (and our final relief), we give you a draft-only release of a third-take on a style that demands continued research for the Troegs Brewery staff. Enjoy!","ibu":78,"name":"Scratch #19 2009 Imperial Double Expresso Oatmeal Stout","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":10,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Long ago, British farmhouse brewers made special ales using the first runnings of the mash. These beers, now called barley wine, are brewed in the tradition of days past. At Southern Tier this long awaited brew is placed on the back burner until the start of the new year. Back Burner Barley Wine is a celebration of things to come and things remembered. It’s conceived in three small batches, using voluminous amounts of barley and hops. The process starts early in the morning and ends late into the night. We hope this rare brew reignites your spirit for another trip around the sun.","ibu":108,"name":"Back Burner Imperial Barley Wine Style Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8.3000001907,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Beer Description:\n\nThis deep amber Imperial Abbey Ale melds malt and earth, spice and fruit to create a wonderful vehicle to wind down the day. Belgian yeast contributes flavor notes that accent the raisins and grains of paradise used in the brewing process. With strength and stamina, DESCENT is deliberately impetuous in its mission.","ibu":20,"name":"Descent Imperial Abbey Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.7044911114056782,"address":"10983 Hills Road","category":"Other Style","city":"Baroda","coordinates":[41.9211,-86.4583],"country":"United States","description":"An unpretentious American pale wheat beer, our Summer Wheat pours a cloudy golden-orange, just like a sunset over Lake Michigan. Its assertive wheat flavor is complimented with hints of citrus zest. Garnish with a slice of orange or lemon. Round Barn beer is bottle conditioned, decant into a weizen glass before drinking for the best taste experience.","ibu":84,"name":"Round Barn Summer Wheat","state":"Michigan","website":"http://www.roundbarnwinery.com/brewery.php"},{"abv":6.3000001907,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"It takes a bit of seasoning to understand that bitter can be a good thing. \n\n\nWhen you’re a child, you want everything to be sweet. When you’re a teenager, you want everything to be sweeeeet. But when you get a bit wiser and acquire some taste, you realize that bitter is an excellent alternative. It’s a sign of complexity. It’s a sign of maturity. It’s a sign of the times. Face it, modern life demands a little bitterness every once in a while. \n\n\nWhen you are in the mood for something bitter, Dundee IPA is hop bitterness at its finest. As the youngsters would say, that’s sweet.\n\n\nAn aggressively hopped IPA brewed with Amarillo and Simcoe hops. Blended Crystal malts balance the flavors with a distinctive spicy aroma and a long, crisp finish.","ibu":50,"name":"Dundee India Pale Ale","state":"New York"},{"abv":6.1999998093,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"In honor of our friend and mascot, Wylie the fish, we are hooking you up with an aggressively hopped India Pale, the staple for any fishing trip! This beer is a hop lover’s dream!","ibu":59,"name":"Old Wylie's IPA","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":6,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A rather malty brew, which we think goes very well with cheeses - even well matured blue cheeses. You can also try our Amber paired with a grilled dish. Recommended serving temperature 10°C/50°F.","ibu":102,"name":"Nøgne Ø Amber Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7.031257258261209,"address":"1321 Celebrity Circle","category":"North American Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"This copper-colored ale has an intense bitterness and a floral hop aroma. Hops added during aging contribute to its distinct dryness.","ibu":80,"name":"Liberty Pale Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":5.1999998093,"address":"2051A Stoneman Circle","category":"Irish Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Porter is our darkest beer, but not necessarily our strongest. It is widely held that the darker the beer, the stronger the beer, but this is a summarily false. The contribution of color comes directly from the color of malt that we use. Some malt is oasted to achieve dark color and coffee-like flavor which in turn get transferred to the beer.\n\n\nOur Porter is ruchly complex with overtones of chocolate and expresso beans followed by a subtle flavor of hops. It's a nourishing beer without being too sweet or filling.","ibu":30,"name":"Southern Tier Porter","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.1999998093,"address":"281 Heinlein Strasse","category":"North American Ale","city":"Frankenmuth","coordinates":[43.3152,-83.7314],"country":"United States","description":"Put on your kilt and enjoy this roasted, dark, malty and slightly sweet beer.","ibu":64,"name":"Sully's Irish Stout","state":"Michigan"},{"abv":3.5,"address":"Abbaye de Notre-Dame d'Orval","category":"Belgian and French Ale","city":"Villers-devant-Orval","country":"Belgium","ibu":112,"name":"Petite Orval","state":"Luxembourg"},{"abv":5.5,"address":"1940 Olney Avenue","category":"German Lager","city":"Cherry Hill","coordinates":[39.9121,-74.9701],"country":"United States","description":"First released in 2002, and sold out in two weeks. A tribute to the classic Fest styles of Germany the O'Fish uses European malts hops and yeast. A beautiful reddish color, a savory malt profile and nice hop flavor, make this Fest beer quite drinkable. OktoberFish is great with food and especially great with Lederhosen.","ibu":45,"name":"OktoberFish","state":"New Jersey","website":"http://www.flyingfish.com/"},{"abv":8.545903951440685,"address":"Langestraat 20","category":"Belgian and French Ale","city":"Ternat","coordinates":[50.853,4.1649],"country":"Belgium","ibu":9,"name":"Chapeau Mirabelle Lambic","state":"Vlaams Brabant"},{"abv":12.78910592756156,"city":"Indianapolis","coordinates":[39.7684,-86.158],"country":"United States","ibu":15,"name":"Bullseye Bitter ESB","state":"Indiana"},{"abv":0.34841803035771113,"address":"Am Deich 18-19","category":"German Lager","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":76,"name":"Oktoberfest","state":"Bremen"},{"abv":12.462962527974668,"address":"Salzachtal Bundesstrae Nord 37","city":"Hallein","coordinates":[47.6942,13.0784],"country":"Austria","ibu":14,"name":"Edelweiss Dunkel Weissbier"},{"abv":14.031972220585821,"address":"Am Deich 18-19","city":"Bremen","coordinates":[53.0787,8.7901],"country":"Germany","ibu":72,"name":"Haacke-Beck","state":"Bremen"},{"abv":0.6748940334824549,"address":"18 East 21st Street","category":"North American Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":118,"name":"American Wheat","state":"Nebraska"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":20,"name":"Harvest Ale 1999","state":"Manchester"},{"abv":4.5999999046,"address":"Spott Road","city":"East Lothian","coordinates":[55.997,-2.5098000000000003],"country":"United Kingdom","ibu":68,"name":"St. Andrews Ale","state":"Scotland"},{"abv":8.93896978694512,"address":"313 Dousman Street","city":"Green Bay","coordinates":[44.5189,-88.0196],"country":"United States","ibu":23,"name":"Barley Wine 2001","state":"Wisconsin"},{"abv":4.377824119266963,"address":"841 East Milwaukee Street","category":"North American Ale","city":"Whitewater","coordinates":[42.832,-88.714],"country":"United States","ibu":46,"name":"Pale Ale","state":"Wisconsin"},{"abv":4.4000000954,"address":"U Prazdroje 7","category":"German Lager","city":"Plze","coordinates":[49.7466,13.3861],"country":"Czech Republic","ibu":15,"name":"Pilsner Urquell"},{"abv":0.23043037348207673,"address":"50 N. Cameron St.","category":"Irish Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Based on the winning Homebrew Contest entry by John Slotterback and Fred Rogers, this dark, roasty porter is infused with fresh coconut which produces a sweet finish. The coconut balances the chocolaty notes, producing a taste not unlike German chocolate cake in a glass! This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg.","ibu":16,"name":"Coconut Porter","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":1.870148216334846,"category":"Other Style","city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":69,"name":"Hula Berry","state":"Hawaii"},{"abv":5.964369033199884,"category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":68,"name":"Golden Ale","state":"Hawaii"},{"abv":6.100753896667158,"address":"661 Howard Street","category":"North American Lager","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":98,"name":"Polar Ale","state":"California"},{"abv":9.376747655107721,"address":"45 South Barrington Road","category":"Irish Ale","city":"South Barrington","coordinates":[42.0855,-88.1411],"country":"United States","ibu":69,"name":"Dark Star","state":"Illinois"},{"abv":10.720029840803393,"address":"127 South Grove Avenue","city":"Elgin","coordinates":[42.0347,-88.2819],"country":"United States","ibu":16,"name":"Prairie Light","state":"Illinois"},{"abv":8,"address":"2051A Stoneman Circle","category":"German Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":96,"name":"Old Man Winter Ale","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A refreshing, crisp and clean amber colored lager. Made in a Vienna-style with distinct caramel malt flavor and aroma.","ibu":43,"name":"Sunset Amber Lager","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":7.5,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Crafted with a blend of American and English malts and aggressively hopped with Pacific Northwest hops, this beer reflects what our brewers believe to be the Apex of IPA.","ibu":111,"name":"Apex","state":"California","website":"http://www.bearrepublic.com/"},{"abv":4.6999998093,"address":"196 Alps Road","category":"Other Style","city":"Athens","coordinates":[33.9459,-83.4105],"country":"United States","description":"The Sunray Wheat is a German-style unfiltered wheat beer brewed with a touch of local Georgia Coast Tupelo honey from the Savannah Bee Company.\n\n\nIts inviting banana and sweet clove like aroma gives way to a pleasant, clean finish with a hint of tartness.\n\n\nThis beer is available in the Terrapin “All The Hits” Variety 12-pack as well as in individual 6-packs.","ibu":14,"name":"SunRay Wheat Beer","state":"Georgia","website":"http://www.terrapinbeer.com/"},{"abv":7.5,"address":"140 North Third Street","category":"North American Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"The one and only IPA that doesn't leave your pallet with a bitter after taste. This beer took years of practice to get down and when we finally got it right, we knew it. The beer is made with three malts in considerable additions that leave it with a more malty and sweet taste. There are five different hop additions that were carefully planed out to impart just enough bitterness to give it the body and depth that it needed without leaving you with the astringent and bitter aftertaste. We then added a plethora of English flavor and aroma hops that round out the floral and citrus esters. With the beer being so well balanced between bitter and sweet, we than added \"big sacks\" of bittering hops to the conditioning vessel to impart all the wonderful citrus and floral notes deep into the beer while leaving the bittering aspects of the hop behind. The result was a beer that makes you want to nose dive right in complimented by the well balanced taste of this wonderful brew.","ibu":6,"name":"Daddy Fat Sacs Imperial IPA","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":6.5,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"As for Bravo, according to Head Brewer, Chris Wilson, the base of the beer comes from pale, wheat, and crystal malts and features some roasted barley while Pilgrim and Hallertauer make up the light hop profile.","ibu":87,"name":"Bravo","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":7.0999999046,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":12,"name":"Imperial Stout","state":"Colorado"},{"abv":1.6930196163141331,"address":"729 Q Street","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":25,"name":"Dark German Lager","state":"Nebraska"},{"abv":7.8000001907000005,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":25,"name":"471 Extra ESB","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":7,"address":"4509 SE 23rd Avenue","category":"North American Ale","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":70,"name":"Blue Dot Double India Pale Ale","state":"Oregon"},{"abv":12.390205454534643,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":44,"name":"Belgian Wit","state":"Nebraska"},{"abv":8,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":24,"name":"Trappist Blond","state":"Limburg"},{"abv":9.575108872153907,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":49,"name":"Hacker-Pschorr Hubertus Bock","website":"http://www.paulaner.com/"},{"abv":7.3000001907,"address":"402 West Pine Street","category":"North American Ale","city":"Pinedale","coordinates":[42.8666,-109.866],"country":"United States","ibu":46,"name":"Strom Bomb Stout","state":"Wyoming"},{"abv":0.6891351859672246,"address":"50 East Washington Street","category":"North American Ale","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":28,"name":"Bad Bear Brown","state":"California"},{"abv":4.977330426158363,"address":"901 Gilman Street","category":"German Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":84,"name":"Thomas Kemper HefeWeizen","state":"California"},{"abv":7.3444699957127195,"address":"661 Howard Street","city":"San Francisco","coordinates":[37.7855,-122.4],"country":"United States","ibu":56,"name":"Golden Vanilla Ale","state":"California"},{"abv":13.196871840723334,"address":"1425 McCulloch Boulevard","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":27,"name":"Blonde Ale","state":"Arizona"},{"abv":10.392068112494453,"address":"131 Callahan","city":"Etna","coordinates":[41.4559,-122.846],"country":"United States","ibu":108,"name":"Export","state":"California"},{"abv":3.7509843860130365,"address":"54 Rue des Monceaux","category":"Other Style","city":"Carquefou","country":"France","ibu":54,"name":"Ambr"},{"abv":3.2000000477,"address":"Robert Cain Brewery","category":"British Ale","city":"Liverpool","country":"United Kingdom","description":"This is a smooth, full flavoured, truly dark mild with a rich creamy head. It has a full body and distinctive roasted malt taste, balanced by its fresh hop character. Complex flavours and aromas are achieved by blending deeply roasted malt and adding a selected blend of English hops, including dry hops, to the cask conditioned beer.","ibu":42,"name":"Dark Mild","state":"Merseyside","website":"http://www.cains.co.uk/"},{"abv":5.6999998093,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":30,"name":"Coffee Stout","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":4.5,"address":"Braidleigh Lodge 22 Shore Road","category":"British Ale","city":"Killyleagh","coordinates":[54.3906,-5.6548],"country":"Ireland","description":"Golden with a hint of red (towards sunset). Barelegs tastes of fresh fruit, especially red current and malt fragrance. Full drinking with a subtle hoppy finish. Refreshing for a beer of this strength.","ibu":119,"name":"Barelegs Brew","state":"County Down","website":"http://slbc.ie/"},{"abv":5,"address":"PO Box 1510","category":"North American Ale","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Abita Restoration Pale Ale was created after the back-to-back hurricanes devastated Louisiana. With your help, the abita Brewing Company raised over $500,000 for hurricane relief. This brilliant, golden pale ale has a rich body, mild bitterness and a snappy, fresh citrus hop flavor and aroma. Cold filtered and brewed in small batches using no additives or preservatives, the Abita Company is proud to be Louisiana True.","ibu":23,"name":"Restoration Pale Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":3.7999999523,"address":"4405 Honoapiilani Highway #217","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"Our lightest beer, made from 100% malted barley. This blonde lager is what sailors really swam to shore for; it's light, with very little bitterness and a slight malt finish.","ibu":112,"name":"Bikini Blonde Lager","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":5.5,"category":"North American Ale","city":"Stillwater","coordinates":[45.0565,-92.8222],"country":"United States","description":"Well balanced amber pale ale accentuated by multiple additions of floral Cascade hops and our unique introduction of grapefruit zest to compliment the citrus notes of the hops.","ibu":27,"name":"Lift Bridge Pale Ale","state":"Minnesota","website":"http://www.liftbridgebrewery.com/"},{"abv":4.6999998093,"address":"140 North Third Street","category":"German Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"This German inspired wheat ale is packed full of citrus flavor. We use torrified wheat, pale, and carafoam for balance, giving it a nice hazy, straw color and refreshing wheat taste. We ferment the White Horse at higher ale temps with a German style yeast that is known for producing world class wheat beers. We let the yeast take over the majority of the flavoring in our fermenters, providing the beer with banana and clove like esters. We pull some of the yeast with it to give this brew the proper style and to keep its body and character. We than age this brew with zests of citrus and a brewers spice that blends harmoniously with the esters of the yeast and balance out the sweetness of this brew. Truly a favorite in the summer time for breakfast, lunch, or dinner.","ibu":111,"name":"White Horse Hefeweizen","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":8.80458796354707,"address":"100 West Main Street PO Box 432","category":"North American Ale","city":"Millheim","coordinates":[40.8911,-77.477],"country":"United States","description":"This beautifully colored ale strikes an agreeable balance between malt and hops. Caramel + toffee notes from the use of more highly kilned malts step up to complement this beers assertive hop profile.","ibu":7,"name":"Elk Creek Copper Ale","state":"Pennsylvania","website":"http://www.elkcreekcafe.net/"},{"abv":6.8000001907000005,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A hearty british style strong ale with a deep chestnut color. A warming elixir that's magically delicious.","ibu":45,"name":"Wizard's Winter Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":10.399999619,"address":"5429 Shaune Drive","category":"North American Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alaskan Barley Wine is produced in small batches each year. Typically this higher alcohol beverage is brewed in the spring, cellared in the tunnels of the Alaska-Juneau Gold Mine for the summer and retrieved in time for its release at the Great Alaska Beer and Barley Wine Festival in January. The cool tunnels of the mine shaft provide natural refrigeration and a prime environment for the aging process. \n\n\nLike a fine wine, Alaskan Barley Wine can be aged for years. The bottling of the 2007 vintage of Alaskan Barley Wine will allow individuals to age it to their liking. “We figured we’d leave it up to individuals as to how long to age their Alaskan Barley Wine,” said Quality Assurance Analyst Ryan Harvey. “Some people like barley wines fresh, and others store it for years.”","ibu":87,"name":"Alaskan Barley Wine Ale","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":4.6999998093,"address":"514 South Eleventh Street","category":"Other Style","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"A Silver Medal Winner in the American Hefenweizen category at the 2004 Great American Beer Festival, our American Wheat has a crisp and refreshing flavor.","ibu":113,"name":"American Wheat","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.1999998093,"address":"1201 First Avenue South","category":"North American Lager","city":"Seattle","country":"United States","ibu":13,"name":"Hefeweizen","state":"Washington"},{"abv":4.60582352061465,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":45,"name":"Barleywine","state":"Washington"},{"abv":0.7065238361900605,"address":"404 South Third Street","category":"North American Ale","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":63,"name":"Trumpeter","state":"Washington"},{"abv":6.261369969232416,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":63,"name":"Peninsula Pirate Pilsner","state":"Wisconsin"},{"abv":2.949393248886516,"address":"15 Rowland Way","category":"North American Ale","city":"Novato","coordinates":[38.0941,-122.557],"country":"United States","ibu":11,"name":"Imperial Stout","state":"California","website":"http://www.moylans.com/"},{"abv":7.365419600136944,"category":"North American Ale","city":"Castle Rock","coordinates":[39.3722,-104.856],"country":"United States","ibu":45,"name":"Amber Ale","state":"Colorado"},{"abv":1.5403819179584721,"address":"100 Main Street","category":"German Ale","city":"Reedsburg","coordinates":[43.5323,-90.0099],"country":"United States","ibu":48,"name":"Weizen","state":"Wisconsin"},{"abv":7.749543061630874,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":63,"name":"New Hops Ale","state":"Wisconsin"},{"abv":10.045329184544652,"address":"Hongkong Road, Central","category":"North American Lager","city":"Qingdao","coordinates":[36.0663,120.383],"country":"China","ibu":52,"name":"Green Beer","state":"Shandong"},{"abv":5.5,"address":"Hofgasse 6-11","city":"Traunstein","coordinates":[47.8691,12.650500000000001],"country":"Germany","ibu":52,"name":"Altbairisch Dunkel","state":"Bayern"},{"abv":1.0335637608275539,"address":"7556 Pine Road","category":"North American Ale","city":"Arena","coordinates":[43.1706,-89.9324],"country":"United States","ibu":104,"name":"Premium Ale","state":"Wisconsin"},{"abv":9.100217097434017,"address":"234 Dallas Street West","category":"North American Ale","city":"Dallas","coordinates":[45.2585,-91.8181],"country":"United States","ibu":94,"name":"Big Swede Swedish-Style Imperial Stout","state":"Wisconsin"},{"abv":8.1000003815,"address":"6 Cliffe High Street","city":"Lewes","coordinates":[50.8742,0.0167],"country":"United Kingdom","ibu":78,"name":"Christmas Ale","state":"East Sussex"},{"abv":14.395149009774965,"address":"471 Kalamath Street","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":73,"name":"471 Pilsner","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":6,"address":"1680-F East Waterloo Rd.","category":"German Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Traditional German-style, unfiltered wheat beer, with a lively balanced flavor. Although no fruit or spices were used in the brewing, these flavors are created by fermentation with special yeast from the oldest brewery in the world. Try Wild Frog Wheat with a slice of orange for a crisp, refreshing experience","ibu":7,"name":"Wild Frog Wheat","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":7.3000001907,"address":"175 State Road East","category":"North American Ale","city":"Westminster","coordinates":[42.5586,-71.8715],"country":"United States","description":"A BIG PALE ALE with an awsome balance of Belgian malts with Fuggles and East Kent Golding hops.","ibu":17,"name":"Green Monsta Ale","state":"Massachusetts","website":"http://www.wachusettbrew.com"},{"abv":8.5,"address":"121, rue de la Chapelle","city":"St-Sylvestre-Cappel","coordinates":[50.7975,2.5412],"country":"France","ibu":41,"name":"3 Monts","website":"http://www.brasserie-st-sylvestre.com/"},{"abv":8.6999998093,"address":"79 North Eleventh Street","category":"Belgian and French Ale","city":"Brooklyn","coordinates":[40.7215,-73.9575],"country":"United States","ibu":59,"name":"Local 2","state":"New York","website":"http://www.brooklynbrewery.com/"},{"abv":10.096846811515123,"address":"339 Fairground Rd","category":"Other Style","city":"Millmont","coordinates":[40.8942,-77.1971],"country":"United States","description":"A nice traditional cloudy wheat beer. It is light in color with a banana and yeasty fragrance. This would go nice on a hot summer day or anytime you want a refreshing drink.","ibu":21,"name":"Celebration Wheat","state":"Pennsylvania","website":"http://www.ckbrewery.com/"},{"abv":6.1999998093,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","description":"Our IPA has lots of malt and hop character. This style originated during Queen Victoria’s reign as a strong, flavorful ale, which was able to survive the ocean voyage from England to India during the British occupation.","ibu":115,"name":"Victorian IPA","state":"Arizona","website":"http://www.sonoranbrewing.com/"},{"abv":5.5,"address":"312 Center Rd","category":"North American Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"If you liked the Nobleman this one should blow you away! We took malt and hops from around the world to create this International Pale ale! This beer has an incredible amount of hop flavor and the perfect hop bite!","ibu":87,"name":"Melting Pot Pale Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":5.25,"address":"1025 Owen Street","category":"German Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"The Fargo brothers arrived in Lake Mills in 1845, armed with a strong collective will and a pioneering spirit. The Fargo family became leaders in commerce, industry, agriculture, civics and religion. Through the years, these hard working men and their families shaped the character and very essence of our beautiful hometown. Their legacy endures in the buildings and businesses they built and the civility they brought to this city. In this same pioneering spirit, we brew our Fargo Brothers Hefeweizen to honor this \"first family\" of Lake Mills.\n\n\nFargo Brothers Hefeweizen is brewed in the tradition of a Bavarian-style weißbier with a clove-like flavor and aroma with banana undertones and no bitterness. The unfiltered yeast makes this beer cloudy.","ibu":37,"name":"Fargo Brothers Hefeweizen","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.3000001907,"address":"11197 Brockway Road","category":"Belgian and French Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","description":"FiftyFifty's \"Wit\" beer, Foggy Goggle is a Belgian Style Wheat Beer, cousin of the German Hefeweizen. An unfiltered beer, Foggy Goggle is brewed true to style, using a yeast strain that originated in Belgium, with just a hint of orange peel, lemon peel, and chamomile. The appearance is an opaque yellow with a wonderfully fluffy head. The predominant aroma is citrus with a hint of coriander, and a unique spicy note. With citrus playing a big part of the flavor, Foggy Goggle is a very refreshing choice.","ibu":80,"name":"Foggy Goggle Belgian White","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":11.367671231143488,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Yellow Snow IPA was originally introduced for the 2000 Winter Olympics in Salt Lake City.\n\n\nYellow Snow is Rogue’s tribute to winter sports everywhere—downhill skiing, snowboarding, cross country, ice hockey, ice fishing, snowmobiling, and even curling. \n\n\nIt will be available November 1st in select states where mountains and snow can be found.\n\n\nPale golden in color with a hoppy fruity aroma. Big hop flavor up front complemented by medium body and hoppyness mid-pallet. Finishes with a characteristic lingering bitterness.","ibu":110,"name":"Yellow Snow IPA","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.1999998093,"address":"312 North Lewis Road","category":"North American Ale","city":"Royersford","coordinates":[40.1943,-75.534],"country":"United States","description":"A big, flavorful IPA for all the hopheads out there, brewed with British Pale and Crystal malts, and hopped with Centennial, Cascade, German Northern Brewer, & UK East Kent Goldings. Bold and spicy.","ibu":0,"name":"Route 113 IPA","state":"Pennsylvania","website":"http://www.slyfoxbeer.com/index1.asp"},{"abv":10,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":62,"name":"Grand Cru","state":"Washington"},{"abv":1.0144386646872794,"address":"Gheudestraat 56","category":"Belgian and French Ale","city":"Anderlecht","coordinates":[50.8416,4.3355],"country":"Belgium","ibu":80,"name":"Gueuze Bio / Organic Gueuze","state":"Brussel","website":"http://www.cantillon.be/"},{"abv":9.3999996185,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":106,"name":"Old Foghorn 2006","state":"California"},{"abv":4.5,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":79,"name":"Blanche des Moines","state":"Namur"},{"abv":3.4000000954000003,"address":"4 Moorhouse Street","category":"British Ale","city":"Burnley","coordinates":[53.7864,-2.2694],"country":"United Kingdom","ibu":60,"name":"Black Cat","state":"Lancashire"},{"abv":8.540266041713977,"address":"33 Dunster Street","category":"German Lager","city":"Cambridge","coordinates":[42.3724,-71.1193],"country":"United States","ibu":119,"name":"Framingham Maibock","state":"Massachusetts"},{"abv":6,"address":"2201 Sherman Street","city":"Wausau","coordinates":[44.9518,-89.6657],"country":"United States","ibu":87,"name":"ESB","state":"Wisconsin"},{"abv":7.914803795535219,"address":"1800 North Clybourn Avenue","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":17,"name":"Blonde Ale","state":"Illinois"},{"abv":1.4379358522173857,"address":"161 East Bay Street","category":"North American Lager","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":73,"name":"Ruby Red Lager","state":"South Carolina"},{"abv":5.437657947372295,"category":"Irish Ale","city":"Northville","coordinates":[42.4311,-83.4833],"country":"United States","ibu":119,"name":"Promethean Porter","state":"Michigan"},{"abv":10.5,"address":"5763 Arapahoe Avenue","category":"North American Ale","city":"Boulder","coordinates":[40.0166,-105.219],"country":"United States","description":"From Website:\n\nMaharaja is derived from the sanskrit words mahat, - \"great\" and rajan - \"king\". Much like its namesake, this imperial IPA is regal, intense and mighty. With hops and malts as his servants, he rules both with a heavy hand. The Maharaja flaunts his authority over a deranged amount of hops: tangy, vibrant and pungent along with an insane amount of malted barley - fashioning a dark amber hue and exquisite malt essence.\n\n\nThis newest Avery Dictator completes the \"Dictator Series\" joining the likes of The Kaiser & The Czar. Be aware that The Maharaja is a limited release only available for the summer. Welcome to his kingdom!\n\n\nAvailability:\n\n * 22 oz. bottles\n\n * 5.17 gallon keg\n\n * 15.5 gallon keg\n\n * Available March through August\n\n\nABV:\n\n * 10.5% (2008)\n\n * 9.78% (2007)","ibu":4,"name":"Maharaja, The","state":"Colorado","website":"http://www.averybrewing.com/"},{"abv":9,"address":"Brusselse Steenweg 282","category":"Belgian and French Ale","city":"Melle","country":"Belgium","ibu":76,"name":"Delirium Nocturnum","state":"Oost-Vlaanderen"},{"abv":5,"category":"German Lager","country":"Aruba","ibu":84,"name":"Balashi","website":"http://www.balashi.com/balashi/"},{"abv":9,"address":"2320 SE OSU Drive","category":"Other Style","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"A strong, but well balanced winter warmer, this ale has extreme complexity made for a holiday feast. The addition of Raisins and Molasses in the brewing process produces unusual spiced rum like flavors to go along with the well balanced malt and hops. \n\nNo Chemicals, Additives or Preservatives.","ibu":108,"name":"Frosty Frog","state":"Oregon","website":"http://www.rogue.com"},{"abv":6.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":53,"name":"HIPA","state":"Vermont","website":"http://www.magichat.net/"},{"abv":4.0999999046,"address":"3939 W. Highland Blvd","category":"North American Lager","city":"Milwaukee","coordinates":[43.0445,-87.9626],"country":"United States","description":"Launched in 2007, Miller Chill is the only light beer brewed with a hint of lime and a pinch of salt to provide a truly refreshing beer experience. Through all of our marketing efforts, beer drinkers will see that Miller Chill is a celebration and fusion of the best of two cultures, great light beer from America and the chelada style from Mexico. It's the new alternative in mainstream low-cal beers ... one that provides a crisper, smoother, more refreshing beer experience.","ibu":63,"name":"Miller Chill","state":"Wisconsin","website":"http://www.millerbrewing.com"},{"abv":6.42289041502583,"ibu":31,"name":"07/22/10 08:00 PM"},{"abv":12.42561406886814,"address":"Cheongwon Factory: 52, Joongsam-Ri, Hyundo-Myun","category":"North American Lager","city":"Seoul","coordinates":[37.5665,126.978],"country":"Korea, Republic of","ibu":82,"name":"Cass Fresh"},{"abv":5.294440670959599,"category":"British Ale","city":"Boston","coordinates":[42.3584,-71.0598],"country":"United States","ibu":43,"name":"Special Old Ale","state":"Massachusetts"},{"abv":11.743792031754351,"city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":10,"name":"Macadamia Nut Brown","state":"Hawaii"},{"abv":5,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Mirror Pond is just a short walk from the Deschutes Brewery & Public House in downtown Bend and reflects the Three Sisters Mountains. This scenic spot alongside the Deschutes River is the locals’ choice for summer festivals and concerts.","ibu":9,"name":"Mirrorpond Pale Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.096777370199838,"city":"Wailuku","coordinates":[20.8911,-156.505],"country":"United States","ibu":70,"name":"Gingerwheat","state":"Hawaii"},{"abv":8,"address":"9750 Indiana Parkway","category":"North American Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":99,"name":"Chubby Brown","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":8.816751983502112,"category":"North American Ale","city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":40,"name":"India Pale Ale","state":"Illinois"},{"abv":14.781304410420958,"address":"1860 Schell Road","city":"New Ulm","coordinates":[44.2896,-94.449],"country":"United States","ibu":107,"name":"Dark","state":"Minnesota","website":"http://www.schellsbrewery.com/"},{"abv":4.8000001907000005,"address":"550 South Wisconsin Avenue","category":"Other Style","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"An American wheat beer made with malted barley and malted wheat. Lightly flavored with pure fruit to impart a subtle raspberry nose, a delicate fruit flavor and a slight pink hue.","ibu":21,"name":"Raspberry Wheat","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":5.5999999046,"address":"14800 San Pedro Avenue","category":"Other Style","city":"San Antonio","coordinates":[29.5761,-98.4772],"country":"United States","description":"Pete’s winter seasonal Wanderlust Cream Ale, is a velvety smooth brew offering endless fascination. Pete’s Wicked Wanderlust Cream Ale is a light amber brew with a rhapsody of Cluster hops and select Munich and wheat malts. The rich, creamy taste invites you on a journey of wonderment and intrigue. Sit back. Enjoy the ride.","ibu":25,"name":"Pete's Wicked Wanderlust Cream Ale","state":"Texas","website":"http://www.peteswicked.com/"},{"abv":4.8000001907000005,"address":"120 Wilkinson Street","category":"Belgian and French Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A wheat beer brewed in the style of a Belgian wit bier while using British ingredients. Lite and refreshing spiced with coriander and orange peel.","ibu":17,"name":"Swallow Wit","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":9.674423665497468,"address":"299 Main Street","city":"Dubuque","coordinates":[42.4965,-90.6652],"country":"United States","ibu":109,"name":"Munich Dunkel","state":"Iowa"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":81,"name":"Dells Chief Amber Ale","state":"Wisconsin"},{"abv":11.992188005793412,"address":"Route de Rond Point 294","city":"Chimay-Forges","coordinates":[49.9842,4.3111],"country":"Belgium","ibu":119,"name":"Première (Red)","state":"Hainaut"},{"abv":2.8245217066460295,"address":"7734 Terrace Avenue","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":117,"name":"Bavarian Lager","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":3.6228610006402553,"address":"Niederkasseler Strae 104","city":"Dsseldorf","coordinates":[51.2404,6.7516],"country":"Germany","ibu":87,"name":"Messing","state":"Nordrhein-Westfalen"},{"abv":8,"address":"Route de Rond Point 294","city":"Chimay-Forges","coordinates":[49.9842,4.3111],"country":"Belgium","ibu":51,"name":"Cinq Cents (White)","state":"Hainaut"},{"abv":12.522621235826172,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":101,"name":"Irish Red Ale","state":"Wisconsin"},{"abv":3.893743691125037,"address":"6404 Redwing Road","category":"North American Ale","city":"Bethesda","coordinates":[38.9735,-77.1272],"country":"United States","ibu":102,"name":"Hop Pocket Ale","state":"Maryland"},{"abv":5,"category":"North American Ale","city":"San Diego","coordinates":[32.7153,-117.157],"country":"United States","ibu":79,"name":"Alt-Er-Ego Amber","state":"California"},{"abv":7.5,"address":"1999 Citracado Parkway","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":92,"name":"2004 Symposium Ale","state":"California","website":"http://www.stonebrew.com/"},{"abv":10,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Strong, full-bodied ale with an intense hop character and deep golden color","ibu":73,"name":"Stoudt's Double India Pale Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":11.67441100537475,"address":"237 Joseph Campau Street","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":66,"name":"Pilsner","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":6.5,"address":"320 Pierce St","category":"German Lager","city":"Black River Falls","coordinates":[44.2929,-90.8511],"country":"United States","ibu":59,"name":"Oderbolz Bock","state":"Wisconsin","website":"http://www.sandcreekbrewing.com/"},{"abv":7.919508779297283,"address":"119 South Front Street","category":"North American Ale","city":"Marquette","coordinates":[46.5431,-87.3929],"country":"United States","ibu":79,"name":"Amber Ale","state":"Michigan"},{"abv":12.945674875864595,"address":"23060 Alessandro Boulevard","category":"North American Ale","city":"Moreno Valley","coordinates":[33.9176,-117.26],"country":"United States","ibu":32,"name":"Hard Woods Pale","state":"California"},{"abv":14.840205830801388,"address":"143 Highway 59 Building 6","city":"Hillburn","coordinates":[41.1151,-74.147],"country":"United States","ibu":89,"name":"Christmas Ale","state":"New York"},{"abv":14.551381471545495,"address":"2100 Locust Street","category":"North American Ale","city":"Saint Louis","coordinates":[38.633,-90.21],"country":"United States","ibu":37,"name":"Schlafly Pale Ale","state":"Missouri","website":"http://www.schlafly.com/"},{"abv":5.5999999046,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Tröegs Brewery’s Flagship beer, HopBack Amber Ale derives its name from a vessel in the brewhouse called a hopback. As the ‘wort’ is being transferred from the brewhouse to fermentation it passes through the hopback vessel. Packed full of fresh whole flower hops, the wort slowly circulates through this vessel extracting the essence of the aromatic hops. This vessel adds more time and more hop character that creates a fresh, spicy taste and rich caramel note that defines this signature ale.\n\n\nTASTING NOTES\n\nDeep amber in color under a huge creamy head. The aroma very apparent, bold and spicy with a slight floral character. Balanced with caramel malt, this well-rounded amber ale has an up-front floral spice that builds with a flush of sweetness","ibu":111,"name":"HopBack Amber Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":2.0664053313892783,"city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":37,"name":"Whooping Wheat","state":"Nebraska"},{"abv":2.8449102360506364,"category":"North American Lager","city":"Berkeley","coordinates":[37.8716,-122.273],"country":"United States","ibu":6,"name":"Golden Bear Lager","state":"California"},{"abv":5.671593810527424,"address":"13351 Highway 101","category":"British Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":55,"name":"Frolic Shipwreck 1850 Ale","state":"California"},{"abv":2.4163920754874537,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":21,"name":"Our Special Ale 1997","state":"California"},{"abv":13.279303348215873,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":47,"name":"Horn of the Bear Barleywine","state":"California","website":"http://avbc.com/"},{"abv":8.238321136875717,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":54,"name":"Bullfrog Bitter ESB","state":"Illinois"},{"abv":11.042189344044193,"city":"Chicago","coordinates":[41.85,-87.6501],"country":"United States","ibu":110,"name":"Light","state":"Illinois"},{"abv":6.080742893833493,"category":"North American Ale","city":"Sioux Falls","coordinates":[43.55,-96.7003],"country":"United States","ibu":28,"name":"Midnight Star Ale","state":"South Dakota"},{"abv":5.4000000954,"address":"545 Turner Drive","category":"British Ale","city":"Durango","country":"United States","description":"This traditional English Cream Stout is brewed with actual milk sugar to create a creamy and sweet brew. Jet black in color, the latte frothy head will make you mooo for more.","ibu":76,"name":"Steel Toe Stout","state":"Colorado","website":"http://www.skabrewing.com/"},{"abv":9,"address":"190 5th Street","category":"British Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"Our version of a Scotch Ale is made with a portion of peat smoked barley. Very malty, with a subtle smoky finish. Also available in a barrel aged version.","ibu":18,"name":"The Livery Kilt Tilter","state":"Michigan","website":"http://liverybrew.com/"},{"abv":6.5999999046,"address":"2522 Fairway Park Drive","category":"North American Ale","city":"Houston","coordinates":[29.8123,-95.4675],"country":"United States","description":"A traditional India Pale Ale, the Elissa IPA is very hoppy with a properly balanced malty body. Elissa has huge hop additions in the kettle that give it a wonderful bitterness and is then dry-hopped in the fermenter to create the pleasant floral, hoppy nose. Our reverse osmosis water makes the bitter very soft with no harsh notes to it. The maltiness is derived from British Maris Otter malt. Its rich flavor stands up to the hops that would otherwise dominate this beer. The Elissa is an authentic version of an India Pale Ale (IPA) style.","ibu":44,"name":"Elissa IPA","state":"Texas","website":"http://www.saintarnold.com"},{"abv":4.4000000954,"address":"1950 W. Fremont St.","category":"British Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"A classic English Style Mild with a light hop profile. London Tavern Ale is a well balanced beer with caramel flavor and English character. Only traditional English Kent Goldings and Fuggles hops are used.","ibu":41,"name":"Valley Brewing London Tavern Ale","state":"California","website":"http://www.valleybrew.com/"},{"abv":3.7000000477,"address":"165 Patchway Road","category":"North American Lager","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Refreshing Light-Bodied Golden Lager","ibu":108,"name":"Locke Mountain Light","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":10.199999809,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SLOTH Belgian-style Imperial Stout is deliberately dark as hell. The pour is slow and sluggish. Its head is menacing, becoming torn and tattered Belgian lace on the sides of the glass as you cautiously consume this brew—sip by insidious sip. \n\n\nThe aroma is sweet from heavy malt and big alcohol with notes of vanilla, coconut and whiskey from the oak. The depth & breadth of roasted malt flavors loiters on the palate while the robust finish lingers, well, forever. \n\n\nSLOTH...Just add couch.","ibu":103,"name":"Sloth","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":4.4000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":18,"name":"Shiner Bock","state":"Texas","website":"http://www.shiner.com"},{"abv":6,"address":"Dominikanerstrae 6","category":"German Lager","city":"Bamberg","coordinates":[49.892,10.8853],"country":"Germany","description":"A smoked bock beer for Bamberg's strong beer season (October through December). Matured for months in ancient rock-cellars underneath Bamberg and tapped freshly from the oakwood cask. Similar to, but much bigger than the classic Maerzen style.","ibu":9,"name":"Aecht Schlenkerla Rauchbier Urbock","state":"Bayern"},{"abv":6.5,"address":"529 Grant St. Suite B","category":"German Lager","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Golden, easy drinking, traditional example of Maibock. All German grains, yeast and hops.","ibu":21,"name":"Maibark","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":7.5,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","ibu":64,"name":"Odd Notion Winter 07","state":"Vermont","website":"http://www.magichat.net/"},{"abv":5.3000001907,"address":"1100 New York Ave, NW","category":"North American Ale","city":"Washington","coordinates":[43.8042,-91.2526],"country":"United States","description":"A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center.","ibu":47,"name":"Amber Waves","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":10.199999809,"address":"8938 Krum Ave.","category":"British Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A barley wine with deep amber color. The brandy of ales, this beer has vintage character and will mature in the bottle at cellar temperature for years.","ibu":8,"name":"Third Coast Old Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":4.9000000954,"address":"1340 East Eighth Street #103","category":"Other Style","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our rye beer is made with 20% flaked rye and rye malt. The addition of rye creates a dry, spicy flavor with a crisp, grainy aroma. We went with a lighter color and lower bitterness to compliment these flavors. It has an alcohol content of around 4.9%.","ibu":67,"name":"Caulfield's Rye","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6,"address":"765 Center Boulevard","category":"North American Ale","city":"Fairfax","coordinates":[37.986,-122.584],"country":"United States","ibu":63,"name":"IPA","state":"California"},{"abv":4.4000000954,"address":"Coppermines Road","city":"Coniston","country":"United Kingdom","ibu":38,"name":"Premium XB Bluebird Bitter","state":"Cumbria"},{"abv":6.0999999046,"address":"980 NE Fourth Street","category":"German Lager","city":"McMinnville","coordinates":[45.2104,-123.189],"country":"United States","description":"This is one of our rare lagers brewed in the style of the German Heiliges Geist Bock, or Holy Ghost Bock. The name refers to the lighter nature of the beer as opposed to the darker and heavier Doppel Bock and Mai Bock also brewed during the spring in Germany. There is a rich malt flavor, a firm German style lager head, and a clean lagered finish to this beer. Available on draft or in 12 oz. bottles.","ibu":94,"name":"Geist Bock","state":"Oregon","website":"http://www.goldenvalleybrewery.com/"},{"abv":0.6243991041192976,"address":"Weinbichl 6","city":"Kressbronn am Bodensee","coordinates":[47.6064,9.6061],"country":"Germany","ibu":64,"name":"Kellerpils","state":"Baden-Wrttemberg"},{"abv":3.71966996912629,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":10,"name":"All-American Gold","state":"Nebraska"},{"abv":4.9000000954,"address":"Wunderburg 10","city":"Bamberg","coordinates":[49.8901,10.9067],"country":"Germany","ibu":78,"name":"Hell","state":"Bayern"},{"abv":5.0999999046,"address":"506 Columbia Street","category":"North American Lager","city":"Hood River","coordinates":[45.7103,-121.515],"country":"United States","ibu":25,"name":"Session Premium Lager","state":"Oregon"},{"abv":7,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Winner of four World Beer Cup medals and eight medals at the Great American Beer Fest, Abbey Belgian Ale is the Mark Spitz of New Belgium’s lineup - but it didn’t start out that way. When Jeff and Kim first sampled the beer at the Lyons Folks Fest, reviews were mixed at best. One of founder Jeff’s first two Belgian style homebrews (along with Fat Tire), Abbey is a Belgian dubbel (or double) brewed with six different malts and an authentic Belgian yeast strain. Abbey is bottle-conditioned, weighs in at 7.0% alcohol by volume, and pairs well with chocolate (or boldly served by itself) for dessert.","ibu":28,"name":"Abbey Belgian Style Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":2.773766547074054,"address":"111 South Murphy Avenue","category":"North American Ale","city":"Sunnyvale","coordinates":[37.3775,-122.03],"country":"United States","ibu":87,"name":"Double IPA","state":"California"},{"abv":10,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":85,"name":"Old Foghorn 1996","state":"California"},{"abv":2.5464950242827875,"address":"PO Box 206","category":"German Lager","city":"Windhoek","coordinates":[-22.5589,17.0825],"country":"Namibia","ibu":76,"name":"Urbock"},{"abv":4,"address":"Brewery Lane","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":40,"name":"Generation","state":"Oxford"},{"abv":0.7419939458790936,"address":"Postplatz 1-4","city":"Donaueschingen","country":"Germany","ibu":36,"name":"Export","state":"Baden-Wrttemberg"},{"abv":5.5999999046,"address":"811 Edward Street","category":"German Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"This traditional style German Wheat beer (pronounced) Hah-fuh-vite-zen) remains unfiltered to preserve it's natural smooth flavor and aroma. Don't be alarmed by its cloudy appearance or noticeable sediment. The slight banana and clove aroma comes from the authentic German Hefeweizen yeast. It has a light refreshing finish.","ibu":79,"name":"Saranac Hefeweizen","state":"New York","website":"http://www.saranac.com"},{"abv":6.3795795035393885,"address":"1001 South Eighth Street","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":84,"name":"Munich Dunkel","state":"Wisconsin"},{"abv":4.5,"address":"114 Little York Rd","category":"Other Style","city":"Warwick","country":"United States","ibu":98,"name":"Doc's Hard Apple Cider","state":"NY","website":"http://www.wvwinery.com"},{"abv":5.6999998093,"address":"231 San Saba Court","category":"Other Style","city":"Blanco","coordinates":[30.113,-98.4156],"country":"United States","description":"Tawny red and full of malt and hops, Full Moon's unique flavor truly satisfies. The smooth sweetness of malted rye and barley is complemented by generous helpings of Willamette and Cascade hops, resulting in an assertive American amber ale.","ibu":97,"name":"Full Moon Pale Rye Ale","state":"Texas","website":"http://www.realalebrewing.com/"},{"abv":9.966290267193234,"address":"101 Oak Street","category":"North American Ale","city":"Ashland","coordinates":[42.1976,-122.715],"country":"United States","description":"An unfiltered ale with intense hop bitterness, flavor and aroma. This ale is well balanced with higher alcohol, maltiness and hop character. (95 IBU.)","ibu":11,"name":"Standing Stone Double India Pale Ale","state":"Oregon","website":"http://www.standingstonebrewing.com/"},{"abv":6.8000001907000005,"address":"8 Fourth Street","category":"North American Ale","city":"Hood River","coordinates":[45.71,-121.515],"country":"United States","description":"The “IRA”, as it’s known around here, marries a ruby red color and rich body with the hop flavors of an IPA. Our unique ale yeast strain adds a delicious layer of complexity. One of the first beers we made, and an enduring favorite.","ibu":91,"name":"India Red Ale (The \\\"IRA\\\")","state":"Oregon","website":"http://www.doublemountainbrewery.com/"},{"abv":6.6999998093,"address":"420 Acorn Lane","category":"North American Ale","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","ibu":117,"name":"Wild Devil Ale","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.9000000954,"address":"603 East Brewery Street","category":"North American Lager","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":82,"name":"Shiner Bohemian Black Lager","state":"Texas","website":"http://www.shiner.com"},{"abv":5.151073316364968,"address":"2 Sagamore Street","category":"Irish Ale","city":"Glens Falls","coordinates":[43.3177,-73.64],"country":"United States","description":"Pathfinder's Porter is a robust, dark and hoppy ale originally brewed for street urchins of London. Our version does the job for the Glens Falls urchins of today.","ibu":2,"name":"Pathfinder's Porter","state":"New York","website":"http://www.cooperscaveale.com/"},{"abv":8.6999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"P9 = 9th [non-] planet from The [Midnight] Sun\n\n\nNamed after the ruler of the underworld, PLUTO was re-classified as a non-planet in AUG 2006. Here we celebrate our “Fallen Planet” by creating a Belgian-style Golden Strong Ale, aged in French oak Chardonnay barrels with Brettanomyces. Appropriately, the devil’s in the details. \n\n\nLOGISTICS LOG: \n\ndesigned to represent the \"Fallen Planet\" with a Belgian beer style that includes beers traditionally named after the devil. primary fermentation and aging in stainless steel. phenomenal funk flavors realized with aging in oak barrels affected with Brettanomyces. bottle-conditioning achieved with secondary fermentation. devil-may-care data continues to develop.\n\n\nAvailability:\n\nAK - draft and 22-oz bottles (limited release begins 08/29/2008)","ibu":1,"name":"Pluto - Belgian-style Golden Strong Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.49533250240869,"address":"1398 Haight Street","city":"San Francisco","coordinates":[37.7702,-122.445],"country":"United States","ibu":109,"name":"Krölsch","state":"California","website":"http://www.magnoliapub.com/"},{"abv":8,"address":"906 Washington Street","category":"North American Ale","city":"Oakland","coordinates":[37.8016,-122.274],"country":"United States","ibu":95,"name":"Imperial Stout","state":"California"},{"abv":14.305591051350628,"category":"North American Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":47,"name":"Red Top Rye","state":"Nebraska"},{"abv":11.951155940007936,"category":"North American Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":111,"name":"Amber Ale","state":"Illinois"},{"abv":12.09513809956811,"address":"2804 13th Street","category":"North American Ale","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":59,"name":"Rumble Seat Stout (discontinued)","state":"Nebraska"},{"abv":5.4000000954,"address":"30 Germania Street","category":"British Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"This is a brew for adventurous beer drinkers. It is brewed with four malts: two row pale Harrington, Munich malt, chocolate malt, and a rare peat smoked malt commonly used by distillers of Scotch malt whiskey. This unique malt gives Samuel Adams® Scotch Ale its distinct, subtle smoky character and deep amber hue. Samuel Adams® Scotch Ale is brewed using traditional English hops, Goldings and Fuggles. This is a big brew dominated by malt flavors and aromas, rich and full bodied, slightly sweet. Its layered malt complexity lingers to a smooth and silky finish.","ibu":69,"name":"Samuel Adams Scotch Ale","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":5.1999998093,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"Our flagship brew is a smooth, amber beer that combines the malty goodness of an Octoberfest lager with the slight fruitiness of an ale. Hearty but refreshing.","ibu":22,"name":"Railyard Ale","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":13.727057060460647,"category":"North American Lager","city":"Roseburg","coordinates":[43.2165,-123.342],"country":"United States","ibu":53,"name":"Summer Wheat","state":"Oregon"},{"abv":7.1999998093,"address":"91 S Royal Brougham Way","category":"British Ale","city":"Seattle","coordinates":[47.5924,-122.334],"country":"United States","ibu":7,"name":"Scotch brand Ale","state":"Washington","website":"http://www.pyramidbrew.com/"},{"abv":14.498513587704046,"address":"Breitckerstrae 9","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":74,"name":"Rauchbier","state":"Bayern"},{"abv":5.324412249852259,"address":"Heitzerstrae 2","category":"German Ale","city":"Regensburg","coordinates":[49.0144,12.075],"country":"Germany","ibu":64,"name":"Hefe-Weizen Hell","state":"Bayern","website":"http://www.weltenburger.de/"},{"abv":13.259053984257935,"address":"1025 Marine Drive","category":"North American Ale","city":"North Vancouver","coordinates":[49.3238,-123.102],"country":"Canada","ibu":99,"name":"Two Lions Pale Ale","state":"British Columbia"},{"abv":11.688528874634676,"address":"180 - 14200 Entertainment Boulevard","city":"Richmond","coordinates":[49.1344,-123.065],"country":"Canada","ibu":27,"name":"Extra Special Bitter","state":"British Columbia"},{"abv":8.5,"address":"Brugsstraat 43","city":"Wevelgem","coordinates":[50.8105,3.1857],"country":"Belgium","ibu":79,"name":"Guldenberg","state":"West-Vlaanderen"},{"abv":7.5,"address":"Middleton Junction","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":27,"name":"Moonraker","state":"Manchester"},{"abv":6,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A refreshing light and hoppy ale. Probably our best allrounder. Recommended serving temperature 8°C/45°F. Ideal with barbequed or smoked meat dishes.","ibu":75,"name":"Nøgne Ø Pale Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":7,"address":"1257, Kounsosu","city":"Ibaraki","country":"Japan","ibu":115,"name":"Hitachino Nest Real Ginger Brew","state":"Kanto"},{"abv":13,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","description":"Founders most complex, most innovative, most feared and yet most revered ale produced. Massive in complexity the huge malt character balances the insane amount of alpha's used to create this monster. More IBU's than any brewery has documented, more than you would believe and dry-hopped for twenty-six days straight with a combination of 10 hop varieties. Dangerously drinkable and deliciously evil. We dare you to dance with the Devil.","ibu":118,"name":"Founders Devil Dancer","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":5.5999999046,"address":"311 Tenth Street","category":"Other Style","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"The Gold Medal-winning Honey Moon Summer Ale is a classic summer ale made even better with real clover honey, fresh orange peel and both pale and white wheat malts. Proff that brewing the perfect summer ale is a true art.","ibu":85,"name":"Honey Moon Summer Ale","state":"Colorado","website":"http://www.coors.com"},{"abv":4.5999999046,"address":"24 North Pleasant Street","category":"Irish Ale","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Dark, full bodied ale with a prominent smoked malt flavor","ibu":5,"name":"Puffers Smoked Porter","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":14.436471559101335,"address":"793 Exchange Street","category":"North American Lager","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"A classic European style lager. We take the time to brew this beer as a true lager should be brewed. And it's well worth the wait! You can enjoy the drinkability of this light-gold, refreshing beer with friends at the pub or at home after a long day.","ibu":112,"name":"Vermont Lager","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":3.9000000954000003,"address":"529 Grant St. Suite B","category":"Other Style","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"The inviting flavor and aroma of freshly picked raspberries is naturally infused in this unique, refreshing fruit beer. Raspberry Ale is brewed in the typical Thirsty Dog fashion, full of flavor and uninhibited","ibu":98,"name":"Rasberry Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":9,"address":"4615-B Hollins Ferry Road","category":"Belgian and French Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"From the centuries-old tradition of Belgian Abbey monks comes our \"Über Abbey\" Ale. Aromatic and full bodied, pouring deep burgundy in color, it's bold, it's Heavy Seas. Grab a line...Holy Sheet!...or you'll be swept overboard. Seasonally available in February while supplies last.","ibu":65,"name":"Holy Sheet","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":0.15482123264157654,"address":"674 South Whitney Way","category":"North American Ale","city":"Madison","coordinates":[43.0519,-89.4737],"country":"United States","ibu":93,"name":"Pinckney Street Pale Ale","state":"Wisconsin"},{"abv":14.542209583349779,"address":"401 East Main Street","city":"Belgrade","coordinates":[45.7736,-111.172],"country":"United States","ibu":113,"name":"Mythical White Grand Cru","state":"Montana"},{"abv":8.780642986727393,"address":"Broughton","city":"The Borders","coordinates":[55.6145,-3.4107],"country":"United Kingdom","ibu":12,"name":"Black Douglas","state":"Scotland","website":"http://www.broughtonales.co.uk/"},{"abv":4.8000001907000005,"category":"German Lager","city":"Mossautal","coordinates":[49.6747,8.925],"country":"Germany","ibu":103,"name":"Schwarz Bier","state":"Hessen"},{"abv":5.090316909293203,"address":"200 Village Green","category":"British Ale","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":0,"name":"Winter Delight","state":"Illinois"},{"abv":6.5,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"RIDE Belgian-style Strong Pale Ale boasts a glorious deep gold color and an amazing yet arrogant head. Plentiful pale malt creates beautiful, agile body. Assertive hops and Belgian yeast achieve charismatic floral and spice notes in aroma and flavor. But Pride’s predominant and unique character comes from its exposure to Brettanomyces in French oak Chardonnay barrels. At once tart and refreshing yet earthy and musty, Pride is unlike most beers on earth. And it’s bitter, lingering finish demands another sip. \n\n\nAwarded a BRONZE medal at World Beer Cup 2008, Pride has much too much to boast about.","ibu":12,"name":"Pride","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":10.169851579349446,"address":"6 N. Reamstown Road","category":"German Lager","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A pale bock with fresh maltiness in the aroma and palate. Deep golden color with a generous amount of pure honey to smooth the high alcohol finish. Perle and Cluster hops for bittering and Sazz and Hallertau for finishing. Original gravity above 19 Plato.","ibu":66,"name":"Union Barrel Works Mai-Bock","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":7.1999998093,"address":"2105 N. Atherton St.","category":"German Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"A strong dark German style wheat bock. This wheat beer is estery like the hefeweizen, but bigger with more of everything.","ibu":24,"name":"Otto's Weizenbock","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":6.5,"address":"120 Wilkinson Street","category":"British Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A sensual dark brew with the softness of a Scotch ale crafted with the malt make-up of an English Porter.","ibu":54,"name":"The Duke of Winship","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":4.9000000954,"address":"Stoopkensstraat 46","category":"Other Style","city":"Hoegaarden","coordinates":[50.7778,4.8877],"country":"Belgium","description":"Hoegaarden is the authentic Belgian wheat or white beer. It has a unique and extremely complex brewing process whereby the brand is first top fermented and then is refermented within the bottle - ending up in a unique cloudy-white appearance. The brand's unique appearance is mirrored by its one-of-a-kind taste - sweet and sour beer with a little bitterness, slightly spicy, with a strong touch of coriander and a hint of orange, perfect for warm summer days, instead of other refreshing beverages. Refreshing, a little quirky, and decidedly different - naturally.","ibu":95,"name":"Hoegaarden","state":"Vlaams Brabant"},{"abv":5,"address":"Obere Knigsstrae 19-21","category":"German Ale","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":38,"name":"Weizla Hell","state":"Bayern"},{"abv":0.8912577364974861,"city":"Idaho Falls","coordinates":[43.4666,-112.034],"country":"United States","ibu":22,"name":"Dr. Hops Pale Ale","state":"Idaho"},{"abv":5.531708360674655,"address":"323-C Cross Street","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","ibu":102,"name":"Southern Blonde","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":5.75,"address":"701 West Glendale Avenue","category":"German Lager","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"Traditionally brewed to celebrate the harvest season, this reddish-brown lager has a rich caramel character and a long flavorful finish. Its delicious malty sweetness is nicely accented by a slighty fruity bouquet and a mild hop flavor.","ibu":87,"name":"Sprecher Oktoberfest","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":9.8000001907,"address":"155 Mata Way Suite 104","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","ibu":41,"name":"Bombshell Barleywine","state":"California","website":"http://www.portbrewing.com/"},{"abv":4.5,"address":"808 West Main Street","category":"North American Lager","city":"Ashland","coordinates":[46.5872,-90.8921],"country":"United States","ibu":67,"name":"Honey Pilsner","state":"Wisconsin"},{"abv":5.5,"address":"Beethovenstrae 7","category":"German Lager","city":"Kempten","coordinates":[47.7237,10.3141],"country":"Germany","ibu":101,"name":"Winterfestival","state":"Bayern"},{"abv":13.62084496112594,"address":"Portland OR 97209","city":"Portland","coordinates":[45.5325,-122.686],"country":"United States","ibu":77,"name":"Hazelnut Stout","state":"Oregon"},{"abv":9.729145644927046,"address":"5 East Alger Street","category":"North American Ale","city":"Sheridan","coordinates":[44.8007,-106.956],"country":"United States","ibu":100,"name":"Oil Can Stout","state":"Wyoming"},{"abv":2.2513580665150235,"address":"238 Lake Shore Drive","category":"North American Lager","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"This unique, award-winning lager combines the smoothness of traditional barley with the warm, nutty flavor of wild rice. Truly an original brew!","ibu":22,"name":"Wild Rice Lager","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":4.8000001907000005,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","description":"Extra Pale Ale with a subtle Rye flavor, this beer Pours a light orange-amber color with a thin light beige head. A refreshing summer beer.\n\n\nAvailable at the Brewery from April - September","ibu":26,"name":"Rare Rooster Summer Rye Ale","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":7.5,"address":"Rue Ville Basse 141","city":"Silly","coordinates":[50.6493,3.9242],"country":"Belgium","ibu":50,"name":"Double Enghien Blonde Ale","state":"Hainaut"},{"abv":9.174600682853782,"category":"German Ale","city":"Milwaukee","coordinates":[43.0389,-87.9065],"country":"United States","ibu":46,"name":"Yodeler Weisse","state":"Wisconsin"},{"abv":13.416770589730135,"address":"1800 North Clybourn Avenue","category":"Belgian and French Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":64,"name":"Kriek","state":"Illinois"},{"abv":12.58659527710683,"address":"375 Water Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"While ales are fermented for relatively short periods of time at room temperature, lagers employ a special variety of yeast and much cooler fermentation temperatures to achieve their truly clean, dry flavour profile. Our Lion's Gate Lager has a light body, a very crisp palate and a soft, hop finish, which is imparted by the exquisitely gentle Czech Saaz hop variety. The Lions would approve.","ibu":54,"name":"Lions Gate Lager","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":8.8000001907,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Imperial Pilsner, part of the Morimoto Signature Series, was launched in September 2003. The beer was selected by internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \n\n\nBrewed with four ingredients: 100% French Pilsner Malt, 100% Sterling Hops, Free Range Coastal Water and Czech Pilsner Yeast. Imperial Pilsner is golden in color with a dry hop floral aroma and intense hop bitterness supported by a big malty backbone. Available in a swing-top 750 mil ceramic bottle and 13.2 gallon sankey kegs.\n\nTo learn more about the Chef, visit Morimotos web page.","ibu":9,"name":"Morimoto Imperial Pilsner","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"1340 East Eighth Street #103","category":"German Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This is a Bavarian ale which uses 51% wheat malt in the recipe. Very low bitterness. It is unfiltered so the characteristic cloudiness is achieved. The haze comes from suspended yeast. Hefe-Weizen literally means \"yeast-wheat.\" The aroma is reminiscent of cloves and banana and is put out by the yeast. While some of this aroma carries over to the flavor, the dominant flavor is the malty wheat. \n\n\nAlcohol content approximately 5.0% by volume (ALWAYS ON TAP!!)","ibu":17,"name":"Hefeweizen","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":5,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"A mild, roasted nut and caramel flavored ale with a deep brown color. It is a medium-bodied beer with a mild to medium hop bitterness and aroma.","ibu":80,"name":"Nut Brown Ale","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":5.5,"address":"701 S. 50th Street","category":"North American Ale","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"A bold roasty stout with 50lbs of organic fair trade espresso beans. A tribute to the best coffee house in town. Coffee lovers will easily embrace this delicious brew.","ibu":6,"name":"Satellite Stout","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":5.846325801659926,"address":"5 Bartlett Bay Road","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Magic Hat's seasonal Lager is also called Vinyl","ibu":24,"name":"Scumptious Spring Lager (Vinyl)","state":"Vermont","website":"http://www.magichat.net/"},{"abv":8,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"Brewed in collaboration with brewmaster Toshi Ishii from Yo-Ho Brewing, Japan. \n\n\nMalt: lager, münchener, crystal \n\nHops: Millennium, Centennial, Chinnok, Amarillo and Brewers Gold. \n\n\n19° P, 100 IBU, 8% ABV.","ibu":42,"name":"Nøgne Ø Doppelt IPA","state":"Lunde","website":"http://nogne-o.com/"},{"abv":9.3999996185,"address":"235 Grandville Avenue SW","category":"North American Ale","city":"Grand Rapids","coordinates":[42.9585,-85.6735],"country":"United States","ibu":66,"name":"Double Trouble Imperial IPA","state":"Michigan","website":"http://www.foundersbrewing.com/"},{"abv":7.1999998093,"address":"2201 Arapahoe Street","category":"Belgian and French Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"The Roman name for the Low Countries–is a marriage of the best in American and Belgian brewing traditions. Belgian pilsner malt, a generous amount of American and European hops and a unique Belgian yeast strain combine to give Belgica big notes of citrus and spice, creating a lively concoction perfect for spring in the Rockies–or the Ardennes.","ibu":103,"name":"Great Divide Belgica","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":4.8000001907000005,"address":"10426 East Jomax Road","category":"North American Ale","city":"Scottsdale","coordinates":[33.7268,-111.853],"country":"United States","description":"The Burning Bird is our representation of the Phoenix, our city’s namesake, a mythical bird which lived 500 years, consumed itself by fire, then was reborn from its ashes. Like the phoenix of old, this pale ale is reborn from the time when fabulous hoppy brews were more than mere myths.","ibu":43,"name":"Burning Bird Pale Ale","state":"Arizona","website":"http://www.sonoranbrewing.com/"},{"abv":5.3000001907,"address":"1634 18th Street","category":"German Lager","city":"Denver","coordinates":[39.7535,-104.998],"country":"United States","description":"This German-style black lager has a deep color and gently roasted flavors balanced by an understated hoppiness. A thirst-quenching version of dark beer. A 2008 Great American Beer Festival Gold Medal Winner in the German Schwarzbier category.","ibu":24,"name":"B3K Schwarzbier","state":"Colorado","website":"http://www.wynkoop.com/"},{"abv":10.5,"address":"1621 Dana Ave.","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","ibu":84,"name":"186,000 MPS Malt Liquor","state":"Ohio","website":"http://www.listermann.com/"},{"abv":1.6994722787136696,"address":"1621 Dana Ave.","category":"British Ale","city":"Cincinnati","coordinates":[39.1456,-84.4741],"country":"United States","description":"A bottle-conditioned English style ale.","ibu":48,"name":"Wild Mild Ale","state":"Ohio","website":"http://www.listermann.com/"},{"abv":4.5,"address":"6923 Susquehanna St.","category":"Belgian and French Ale","city":"Pittsburgh","coordinates":[40.4553,-79.9043],"country":"United States","description":"A \"Belgian White\" wheat beer, gently spiced with (new!) coriander and bitter orange peel. Light bodied with hints of orange and lemon. A great beer for hot weather or for those looking for something lighter all year round.","ibu":34,"name":"East End Witte","state":"Pennsylvania","website":"http://www.eastendbrewing.com/"},{"abv":8.136477310391609,"address":"1150 Filbert Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9526,-75.1594],"country":"United States","ibu":19,"name":"IPA","state":"Pennsylvania","website":"http://www.independencebrewpub.com/"},{"abv":11.5,"address":"Kerkstraat 92","city":"Buggenhout","coordinates":[51.0138,4.2018],"country":"Belgium","ibu":67,"name":"Deus Brut des Flandres","state":"Oost-Vlaanderen"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":102,"name":"Flemish Primitive Wild Ale (Pig Nun)","state":"Oost-Vlaanderen"},{"abv":5,"address":"1441 Cartwright Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2705,-123.136],"country":"Canada","ibu":114,"name":"Island Lager","state":"British Columbia"},{"abv":10.199999809,"address":"1195-A Evans Avenue","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","ibu":105,"name":"Old Godfather","state":"California"},{"abv":7,"address":"Eindhovenseweg 3","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":91,"name":"Dubbel","website":"http://www.latrappe.nl/"},{"abv":5.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Cinder Cone Red's diverse selection of hops and barley captivates thirsty palates with its toffee-like flavor, intense citrus aroma and defined bitterness.\n\n\nLocated on the northern slope of Mt. Bachelor, the Cinder Cone was also known as \"Red Hill\" due to its reddish color that is revealed as the seasons change, the weather warms and the snow melts. It's spring. Time to get outside.","ibu":66,"name":"Cinder Cone Red","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":7.716458742843791,"address":"1705 Mariposa Street","city":"San Francisco","coordinates":[37.7635,-122.401],"country":"United States","ibu":66,"name":"Christmas Ale 2007","state":"California"},{"abv":7,"address":"800 East Lincoln Avenue","category":"North American Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"We took the traditional IPA, originally shipped from England to India in the 1700's, and made it bolder and more flavorful - American Style. We've added new varieties of highly aromatic American hops to create a distinctive bitterness profile and an incredible hop character.","ibu":25,"name":"Odell IPA","state":"Colorado"},{"abv":4.5,"address":"110 Wisconsin Dells Parkway South","category":"North American Ale","city":"Wisconsin Dells","coordinates":[43.5907,-89.7939],"country":"United States","ibu":37,"name":"Schmitz Pale Ale No. 5","state":"Wisconsin"},{"abv":14.647764978953742,"address":"1171 Hooper Avenue","category":"Other Style","city":"Toms River","coordinates":[39.9767,-74.1829],"country":"United States","ibu":37,"name":"Apple Ale","state":"New Jersey"},{"abv":9.35604673824028,"address":"Bergstrae 2","city":"Andechs","coordinates":[47.9775,11.185],"country":"Germany","ibu":115,"name":"Weißbier Dunkel","state":"Bayern"},{"abv":7.953985140081864,"address":"Obere Knigsstrae 10","category":"North American Lager","city":"Bamberg","coordinates":[49.8942,10.8855],"country":"Germany","ibu":70,"name":"Rauchbier Weissbier","state":"Bayern"},{"abv":11.09327258007266,"address":"740 North Plankinton Avenue","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":70,"name":"Pilsner","state":"Wisconsin"},{"abv":6.0675883871027985,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":63,"name":"Premium Golden Ale","state":"California"},{"abv":5.5700001717,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":59,"name":"Singletrack Copper Ale","state":"Colorado"},{"abv":9.200911009247376,"address":"141 South Main Street","category":"German Ale","city":"Slippery Rock","coordinates":[41.0638,-80.0556],"country":"United States","description":"This unfiltered, true German wheat beer has hints of clove and banana which the yeast produces during fermentation.","ibu":60,"name":"Rock-n-Wheat","state":"Pennsylvania","website":"http://www.northcountrybrewing.com"},{"abv":3.9000000954000003,"category":"German Lager","city":"San Salvador","country":"El Salvador","ibu":60,"name":"Caguama","website":"http://www.laconstancia.com/"},{"abv":4.8000001907000005,"address":"Domring 4-10","category":"German Lager","city":"Warstein","coordinates":[51.4416,8.3519],"country":"Germany","ibu":101,"name":"Warsteiner Premium Verum","state":"Nordrhein-Westfalen"},{"abv":5.3000001907,"address":"2320 SE OSU Drive","category":"Irish Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Dedicated to the chocolate lover in each of us. Mocha Porter was once known as New Porter, in honor of the town of Newport, Oregon and home of Rogue Ales. The January/February 1995 issue of Mens Health magazine features a bottle of Rogue New Porter (todays Mocha Porter) in the Fifth Annual Collection of Good Advise, Health News, Dire Warnings, Notable Folks and Unsolicited Opinion. New Porter is described as the Best New Beer for 1994! The caption reads: \"Oh, Hoppy Day: For a beer- drinking experience order up a bottle of this microbrew from Oregon.","ibu":79,"name":"Mocha Porter / New Porter","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.5,"address":"IP18 6JW","category":"North American Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"The original winter warmer, Tally-Ho is actually a barley wine brewed to a nineteenth century recipe. It's sweet; it's heart-warming; it's rich - but watch out, it's got a kick like a drayman's horse!","ibu":56,"name":"Adnams Tally Ho","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":1.0593279407872291,"address":"7734 Terrace Avenue","category":"German Lager","city":"Middleton","coordinates":[43.0949,-89.5163],"country":"United States","ibu":54,"name":"Garten Bräu Fest","state":"Wisconsin","website":"http://www.capital-brewery.com/"},{"abv":6.899522914467982,"category":"Other Style","city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":86,"name":"Apple Bach","state":"Wisconsin"},{"abv":13.08131370273526,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":52,"name":"Old Scratch Barleywine 2000","state":"Wisconsin"},{"abv":7.842193339532586,"address":"111 South Canyon Street","category":"North American Ale","city":"West Yellowstone","coordinates":[44.6584,-111.1],"country":"United States","ibu":26,"name":"Lone Mountain Altbier","state":"Montana"},{"abv":4.353750396647181,"address":"161 East Bay Street","category":"North American Ale","city":"Charleston","coordinates":[32.7785,-79.9273],"country":"United States","ibu":59,"name":"Bombay Pale Ale","state":"South Carolina"},{"abv":5.5500001907000005,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","ibu":60,"name":"Lap Dance Pale Ale","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":5,"address":"153 Pond Lane","category":"Other Style","city":"Middlebury","coordinates":[44.0344,-73.1735],"country":"United States","description":"Woodchuck Amber is the original Woodchuck Cider. It's made from a blend of apples and fermented with champagne yeast to produce a great tasting and refreshing alcoholic drink. It's available in 6-packs and 12-packs, as well as on draft.","ibu":74,"name":"Woodchuck Amber Draft Cider","state":"Vermont","website":"http://www.gmbeverage.com/"},{"abv":13.78657150872032,"ibu":111},{"abv":6,"address":"1 Kendall Square #100","category":"Irish Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Charles River Porter\n\n\nDeep and dark, full-bodied and robust, our Porter is crammed full of rich, roasted malt character. With underlying notes of fruitness, caramel and toffee, it finishes with a strong hop presence","ibu":101,"name":"Charles River Porter","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":3.287798296497627,"category":"North American Ale","city":"Raleigh","coordinates":[35.7721,-78.6386],"country":"United States","ibu":114,"name":"Amber","state":"North Carolina"},{"abv":10.33704369429066,"address":"1425 McCulloch Boulevard","category":"North American Ale","city":"Lake Havasu City","coordinates":[34.4702,-114.35],"country":"United States","ibu":43,"name":"Beachballs Red Ale","state":"Arizona"},{"abv":0.7563465304994854,"category":"North American Lager","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":14,"name":"Wheat Hook","state":"Washington","website":"http://www.redhook.com/"},{"abv":14.172963496753045,"address":"412 North Milwaukee Avenue","category":"Other Style","city":"Libertyville","coordinates":[42.2872,-87.9538],"country":"United States","ibu":40,"name":"Main Street Raz","state":"Illinois"},{"abv":11.576472955626503,"address":"208 East River Drive","category":"German Ale","city":"Davenport","coordinates":[41.5202,-90.5725],"country":"United States","ibu":103,"name":"Hefeweizen","state":"Iowa"},{"abv":7.8000001907000005,"address":"AB43 8UE","category":"Other Style","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"Dogma is an innovative, enigmatic ale brewed with guarana, poppy seeds and kola nut all blended together with Scottish heather honey. A conspiracy of transcontinental ingredients infused with some devastatingly BrewDog imaginative thinking.\n\n\nThe flavours, intricacies and nuances of this beer are best enjoyed while musing over some obscure 17th Century philosophical meanderings, such as:\n\n\n\"If we disbelieve everything because we cannot certainly know all things we will do much, what as wisely as he who would not use his wings but sit still and perish because he had no wings to fly.","ibu":60,"name":"Dogma","website":"http://brewdog.com/"},{"abv":1.8517468631071954,"address":"21 W. Bay St.","category":"British Ale","city":"Savannah","coordinates":[32.081,-81.0915],"country":"United States","ibu":56,"name":"Tarletons Bitters","state":"Georgia","website":"http://www.moonriverbrewing.com/"},{"abv":3.7999999523,"address":"1938 Pacific Avenue","category":"North American Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"German Pilsner Malt and a touch of flaked wheat are used to produce this light bodied, straw colored ale. Horizon and Glacier hops provide the balance. This beer finishes crisp and dry. Try this with and orange slice. 3.8% ABV","ibu":70,"name":"Mt. Takhoma Blonde Ale","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":4.8000001907000005,"address":"491 Ontario Street","category":"North American Lager","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Light bodied golden beer, very balanced flavor with soft, clean finish. Available bottles at your favorite store and at an increasing # of bars.","ibu":37,"name":"Buffalo Lager","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":4,"address":"1763 South 300 West","category":"North American Lager","city":"Salt Lake City","coordinates":[40.7322,-111.9],"country":"United States","description":"A turn of the century pure malt, crisp lager. 1st Amendment Lager is made with European style hops and Munich malts. This beer has a wonderful, clean, crisp flavor certain to please all.","ibu":12,"name":"Wasatch 1st Amendment Lager","state":"Utah","website":"http://www.utahbeers.com/"},{"abv":6.1999998093,"address":"4405 Honoapiilani Highway #217","category":"North American Ale","city":"Lahaina, Maui","coordinates":[20.9721,-156.677],"country":"United States","description":"India Pale Ale was developed in Burton, England, as a \"Super-Premium\" hoppy pale ale around 1800. The extra strength in alcohol and hops helped preserve the beer on its long export journeys to India and beyond. The style developed a following worldwide. Its flavor begins with a smooth, malty creaminess followed with a big burst of dry-hop flavor from English Kent Golding Hops. It then finishes with a lingering yet pleasant bitterness.","ibu":103,"name":"Big Swell IPA","state":"Hawaii","website":"http://mauibrewingco.com/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"India Pale Ales, or IPA’s, were brewed for British soldiers stationed in India. These ales needed to higher in alcohol and have more hops than normal to survive the long journey, and ours is no exception. Brewed with Belgian and German malts and dry hopped with loads of Cascades, our version honors our friend who had his own grueling journey involving a boat and cold water!","ibu":35,"name":"McGilligans IPA","state":"Michigan","website":"http://liverybrew.com/"},{"abv":5.5999999046,"address":"5121 N Ravenswood Ave,","city":"Chicago","coordinates":[41.975,-87.674],"country":"United States","description":"If malt and hops are the two poles of brewing, this beer is the gently spinning sweet spot between them. First, you’ll notice the spicy aromas of Perle and Hallertau hops. Then - wipe the foam off the tip of your nose - dive into the toasty flavors of Vienna and Munich malts. Dynamo starts strong and finishes crisp and smooth. The balanced flavors, aromas, and even the coppery-red tones of this beer go great with everything. Fear no pairing. The best time to enjoy Dynamo is when you’re thirsty.\n\n\nDynamo Copper Lager goes great with pizza, neighborhood block parties, spring rolls, first dates, football games, whiskey, tapas, the Sunday newspaper, late-night burritos, veggie omelets, business lunches, grilled mushrooms, pretzels, political debate, corn-on-the-cob, classic sci-fi flicks, mixed greens, campfires, salmon, billiards, cherry pie, rock shows, pumpernickel, salsa, grand openings, peanuts, sewing bees, extra sharp cheddar cheese, and holidays.","ibu":30,"name":"Dynamo Copper Lager","state":"Illinois","website":"http://www.metrobrewing.com/"},{"abv":4.8000001907000005,"address":"Munketoft 12","category":"German Lager","city":"Flensburg","coordinates":[54.779,9.4355],"country":"Germany","ibu":53,"name":"Flensburger Pilsner","state":"Schleswig-Holstein","website":"http://www.flens.co.uk/"},{"abv":10.861398736409473,"address":"871 Beatty Street","category":"North American Lager","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":78,"name":"Honey Brown","state":"British Columbia"},{"abv":13.985569586387363,"address":"Alte Eggerstandenstrasse 1","city":"Appenzell","coordinates":[47.3301,9.4135],"country":"Switzerland","ibu":23,"name":"Leermond Bier"},{"abv":8.1000003815,"address":"2201 Arapahoe Street","category":"British Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Great Divide’s award-winning Hibernation Ale is Colorado’s original strong ale – it has been our winter seasonal each year since 1995. Since that time, Hibernation has become the most sought-after winter beer in Colorado. Hibernation’s massive flavors are so intense that it requires over three months of aging each year. Each summer, while our brewers are still spending their weekends in flip-flops and shorts, they prepare for July’s Hibernation brewing schedule.\n\n\nWe cellar Hibernation until late October, when it reaches the peak of perfection. This lengthy aging process gives Hibernation its revered malty richness, complex hop profile and hearty warming character, which is perfect right out of the bottle or cellared for longer periods of time. Hibernation is a lively treat that really beats the winter chill. This scrumptious, collectible, and imminently cellarable ale is only available for six weeks each year, from November 1 to December 15. Hibernation Ale is the perfect gift or accompaniment to your winter festivities.","ibu":48,"name":"Hibernation Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":6.5999999046,"address":"1265 Boston Avenue","category":"North American Ale","city":"Longmont","coordinates":[40.1587,-105.113],"country":"United States","ibu":102,"name":"Warrior IPA","state":"Colorado","website":"http://www.lefthandbrewing.com/"},{"abv":7.429864825477709,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":24,"name":"Red Sled Winter Ale","state":"Nebraska"},{"abv":3.935435597513143,"category":"North American Ale","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":18,"name":"Quarry Rock Red","state":"Minnesota"},{"abv":3,"city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":2,"name":"Blonde","state":"Wisconsin"},{"abv":7.622035630195841,"address":"Breitckerstrae 9","category":"German Lager","city":"Bamberg","coordinates":[49.9043,10.8524],"country":"Germany","ibu":91,"name":"Meranier Schwarzbier","state":"Bayern"},{"abv":7.839347745438711,"address":"Tadcaster LS24 9SA","city":"Tadcaster","coordinates":[53.8846,-1.2652],"country":"United Kingdom","ibu":1,"name":"John Courage Amber","state":"North Yorkshire"},{"abv":11.992830152418868,"address":"123 East Doty Street","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":113,"name":"Wooden Ships ESB","state":"Wisconsin"},{"abv":5.9000000954,"address":"1430 Washington Avenue South","category":"North American Ale","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","description":"Our brewers believe an American IPA should be full of American hops. Masala Mama uses three different West Coast varieties, over five hop additions. This copper-colored ale is not strictly about hops; American pale barley and several caramel malts balance the flavor for a green, toasted caramel finish. The British realized an abundance of hops will help preserve beer … we realized hops can preserve our customers.","ibu":91,"name":"Masala Mama IPA","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":7.5,"category":"North American Ale","city":"Foothill Ranch","coordinates":[33.6864,-117.66],"country":"United States","ibu":17,"name":"Mortality Stout","state":"California"},{"abv":5,"address":"Marsstrae 46-48","city":"München","country":"Germany","description":"Franziskaner Hefe-Weisse Dunkel wins supporters with its refreshing yet aromatic and full-bodied flavour. This dark, cloudy specialty is a special treat for weiss beer connoisseurs and bock beer aficionados.\n\n\nAll of Franziskaner's weiss beer products - Hefe-Weisse Hell and Hefe-Weisse Dunkel - are top-fermentation beers noted for their agreeable carbonation levels and zesty wheat flavour. The consistently high quality of our products makes Franziskaner weiss beers a refreshing taste sensation of a special sort. All Franziskaner weiss beers are brewed in strict adherence to the Bavarian Purity Law of 1516.","ibu":76,"name":"Franziskaner Hefe-Weissbier Dunkel","state":"Bayern"},{"abv":1.8011976813506403,"address":"115 S. Fifth St.","category":"British Ale","city":"Columbia","coordinates":[38.95,-92.3323],"country":"United States","description":"Black as diesel oil, Oil Change is big in roasty chocolate flavors. A large amount of flaked oats gives this stout a velvety smoothness. Oil Change is nitrogen charged to give it a thick creamy head.","ibu":58,"name":"Oil Change Oatmeal Stout","state":"Missouri","website":"http://www.flatbranch.com"},{"abv":5.845709417092067,"category":"Irish Ale","city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":102,"name":"Stealth Dark Ale","state":"Hawaii"},{"abv":7.973192518414161,"category":"North American Lager","city":"Casper","coordinates":[42.8666,-106.313],"country":"United States","ibu":62,"name":"Wild Wyo Wheat","state":"Wyoming"},{"abv":4.1999998093,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":40,"name":"Natural Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5.880083650200905,"address":"238 Lake Shore Drive","category":"Irish Ale","city":"Minocqua","coordinates":[45.8722,-89.7097],"country":"United States","description":"This dark, full bodied ale has a hint of rye accompanied by chocolate malt. The perfect brew for relaxed sipping!","ibu":22,"name":"Rye Porter","state":"Wisconsin","website":"http://www.minocquabrewingcompany.com"},{"abv":5.9000000954,"address":"50 N. Cameron St.","category":"North American Lager","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"Zoigl is a golden, unfiltered lager beer which was originally brewed only in the region of Eastern Bavaria, between Franconia and the Czech Republic. For centuries, Zoigl was brewed in brewhouses owned by the town or an association of small brewers. \n\n\nThe Zoigl-Star, a six-angular star similar to the Star of David, was the sign of brewers in the middle ages. The star symbolizes the three elements (water, earth, and fire) and the three ingredients (water, malt, and hops) used for brewing. The importance of the yeast was not yet known in the 1400’s.","ibu":21,"name":"Zoigl Star Lager","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":4.6999998093,"address":"5417 Trumpeter Way","category":"Other Style","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","description":"Trout Slayer is a filtered wheat ale, fermented at cool temperatures, making it a smooth drinkable session beer. Brewed with Palisade, Glacier, and Mt. Hood hops, this straw colored beer is sure to please any craft beer drinker. IBU 35 SRM 5 ABV 4.7%","ibu":17,"name":"Trout Slayer","state":"Montana"},{"abv":13.162948882224134,"address":"1000 Great Highway","category":"North American Ale","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":33,"name":"Fleishhacker Stout","state":"California"},{"abv":4.4000000954,"address":"2100 Locust Street","category":"North American Ale","city":"St. Louis","country":"United States","description":"APPEARANCE: Amber red, bright\nPROCESS: Classic English\nHOPS: East Kent Goldings (UK), Northdown (UK), Pilgrim (UK)\nMALTS: 2-Row and Caramel Malted Barley\nYEAST: London Ale\nOG: 11.2\nSRM: 13.5","ibu":25,"name":"Pale Ale","state":"MO","website":"http://http://www.schlafly.com"},{"abv":5.9499998093,"address":"2501 Southwest Boulevard","category":"German Lager","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"First introduced in 2008, Boulevard Maibock is a new, limited-release seasonal brew. A welcome sign of Spring, this beer is a traditional German lager, lighter in color than other bocks. Boulevard’s Maibock is a distinctive, refreshing take on this springtime classic.","ibu":35,"name":"Boulevard Maibock","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":9.6999998093,"address":"8111 Dimond Hook Drive","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Assistant Brewer Jeremiah works primarily at Midnight Sun Brewing Company with regular hours at the AK Rock Gym and the occasional shift or two Kaladi Brothers Coffee. To keep up with his weekly work schedule, he enjoys locally roasted coffee in the morning--OK, sometimes in the afternoon as well--and locally brewed beer in the evening-- OK, sometimes in the morning as well. This beer brings two of his worlds together as an incredible antidote for hibernation.","ibu":103,"name":"Brewtality Espresso Black Bier","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5.0999999046,"address":"312 Center Rd","category":"British Ale","city":"Monroeville","coordinates":[40.4465,-79.7642],"country":"United States","description":"Medium in body, brown in color, this ale is delightfully malty with complex caramel overtones lending to the smoothest finish you will ever experience! Don’t be afraid of the dark and try this deceptive delight!!!","ibu":93,"name":"Shepard's Crook Scotish Ale","state":"Pennsylvania","website":"http://www.myrivertowne.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"The Abyss has immeasurable depth inviting you to explore and discover its rich, complex profile. Hints of molasses, licorice and other alluring flavors draw you in further and further with each sip. And at 11% alcohol by volume, you will want to slowly savor each and every ounce. \n\n\nNovember 2008 marks the third release of this dark and mysterious imperial stout. Limited availability in wax-dipped 22-ounce bottles and on draft at a few select establishments. \n\n\n“The Abyss was one of those beers I didn’t want to end. I was totally blown away - this is precious stuff.” Christian DeBenedetti, beer writer and Men’s Journal contributor","ibu":92,"name":"The Abyss","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":10.100000381,"address":"800 Paxton Street","category":"Belgian and French Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Revisiting Scratch #3, we take the same Tripel recipe, add beet and cane sugars to the kettle, and run the wort through our hopback brimming with juniper berries, coriander and yarrow flowers.\n\n\nInspired by the herbaceous nose of gin, the berries and flowers give a slight pine/citrus aroma with floral undertones. Scratch #8 has a dry, yeasty finish and noticeable alcohol warming when consumed.","ibu":13,"name":"Scratch #8 2008","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"32295 State Route 20","category":"North American Ale","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"As the name implies, a rich deep brown ale in color with dark amber highlights. The flavor is slightly sweet with hints of nuts and toffee finishing smooth with no after taste.","ibu":47,"name":"Barnstormer Brown Ale","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":4,"address":"32295 State Route 20","category":"North American Lager","city":"Oak Harbor","coordinates":[48.2992,-122.652],"country":"United States","description":"This copper colored lager is brewed with hybrid yeast that ferments at warmer temps, giving that clean refreshing taste of a lager with the slight fruitiness of an ale.","ibu":65,"name":"Catalina Common Lager","state":"Washington","website":"http://www.eatatflyers.com/"},{"abv":6,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","description":"Negra Modelo has long been the dark beer alternative for Mexican beer drinkers. It has been identified as one of the few surviving examples of Vienna style lager - a style that was largely replaced in European breweries with Oktoberfest, a slightly lighter lager, in the early twentieth century. \n\nNegra Modelo pours with an off-white, medium head. The body is clear with a rich amber/copper color. The aroma is sweet with hints of apple. The impression at the first sip is sweet. This gives way only a bit to some hops bitterness which gives some balance but leaves the beer firmly in the sweet category. It has no real lager snap at the end, just lingering hops. This actually makes the second sip more balanced than the first.\n\n\nThere is some complexity and depth here but the flavors are very delicate. They are obliterated by the aggressive flavors of the Mexican food that Modelo is often served with making it a sweet balance to the savory and sometimes hot cuisine.","ibu":13,"name":"Negra Modelo","website":"http://www.gmodelo.com.mx/"},{"abv":10.119343851567095,"address":"793 Exchange Street","category":"Irish Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Stovepipe Porter is made in the traditional porter stlye, and is a favorite with all porter lovers. Ruby-black in color, Stovepipe Porter has a rich palate and a roasted, hoppy aroma. It is delicious on its own or with a meal, and tastes great with chocolate.","ibu":112,"name":"Stovepipe Porter","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":6,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Rogue Smoke(previously known as Welkommen on draft) is a German style Rauchbier (Smoke Beer), which was inspired by the Fall of the Berlin Wall. Most rauch brews are bottom fermented, however Rogue Smoke, is top fermented. It is orange-amber in hue with a delicate smoke aroma and flavor with an intense hop finish.\n\n\nIn All About Beer, August, 1995 issue, Christopher Brooks writes \"Alder wood, indigenous to the Northwest, is the smoking agent, though a small amount of Bamberg malt is used in the mash, too. Beech is drier than alder, reports brewmaster John Maier, so we use a little of that for added complexity. Welkommen, a smoky, nutty ale, is also very dry, which given the 15 pounds of hops (perle and Saaz) added to each 15-barrel batch, is no surprise.\" The seven medals in nine years which Rogue Smoke won at theGreat American Beer Festival in Denver are also a tribute to this unusual brew.\n\n\nRogue Smoke is brewed with Great Western Harrington, Klages, Munich, Hugh Baird Crystal, Carastan (30-37 and 13-17), Chucks Alderwood Smoked Munich and Bamberg Beechwood Smoked malts; plus Perle and Saaz hops. Rogue Smoke is available in the classic 22-ounce seriograph bottle (replacing the older 7 ounce bottle) and on draft.","ibu":0,"name":"Rogue Smoke","state":"Oregon","website":"http://www.rogue.com"},{"abv":8.5,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"An unfiltered strong ale that is amber in color and has an intense piney hop aroma. The beer is named in honor of Charlie Papazian, president of the Association of Brewers, founder of the American Homebrewers Association and homebrewing guru. John Maier, Brewmaster for Rogue Ales, made his first batch of beer in 1981 using Papazians influential book \"The New Complete Joy of Homebrewing.","ibu":20,"name":"Charlie 1981","state":"Oregon","website":"http://www.rogue.com"},{"abv":4.6999998093,"address":"2439 Amber Street","category":"Belgian and French Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Saisons were historically brewed to keep the farmhands happy and hydrated during the warm summer months. Crafted using Belgian pilsen malt and candi sugar, this golden Belgian style ale is a refreshing change from your usual beer lineup.","ibu":27,"name":"Yards Saison","state":"Pennsylvania"},{"abv":5.3000001907,"address":"5429 Shaune Drive","category":"British Ale","city":"Juneau","coordinates":[58.3573,-134.49],"country":"United States","description":"Alt. The name of this beer style comes from the German word \"alt\" meaning \"old\". This refers to the aging that alts undergo since they ferment more slowly and at colder temperatures than most ales. Slow fermentation helps condition the flavors in Alaskan Amber, contributing to its overall balance and smoothness.\n\n\nRichly malty and long on the palate, with just enough hop backing to make this beautiful amber colored \"alt\" style beer notably well balanced.\n\n\nAlaskan Amber is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches of rainfall we receive each year.","ibu":114,"name":"Alaskan Amber","state":"Alaska","website":"http://www.alaskanbeer.com/"},{"abv":5.3000001907,"address":"800 East Lincoln Avenue","category":"British Ale","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","description":"The distinctive hop character of our 5 Barrel Pale Ale is due to the extraction of essential oils from select hops. We treat 5 Barrel Pale Ale to an infusion of fresh whole hop flowers in the Hop Back and the Fermentor, as well as four hop additions during the kettle boil. We like how this gives the beer a fresh, lively flavor and aroma.","ibu":58,"name":"5 Barrel Pale Ale","state":"Colorado"},{"abv":0.12025945275226602,"address":"Romanshornerstrasse 15","city":"Arbon","coordinates":[47.5171,9.43],"country":"Switzerland","ibu":65,"name":"Hell"},{"abv":1.958910572755398,"address":"Spitalstrasse 50","city":"Raeren","coordinates":[50.6718,6.122],"country":"Belgium","ibu":8,"name":"Rader Ambrée","state":"Lige"},{"abv":7.5,"address":"Roeselarestraat 12b","city":"Esen","coordinates":[51.0281,2.9038],"country":"Belgium","ibu":104,"name":"Oerbier","state":"West-Vlaanderen","website":"http://www.dedollebrouwers.be/"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":94,"name":"Ambree","state":"Hainaut"},{"abv":5.5,"address":"1777 Alamar Way","category":"Irish Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","ibu":117,"name":"Certified Organic Porter","state":"California","website":"http://eelriverbrewing.com/"},{"abv":5,"category":"North American Ale","city":"Solon","coordinates":[41.8072,-91.4941],"country":"United States","ibu":25,"name":"Iowa Pale Ale","state":"Iowa"},{"abv":9.985096612369,"category":"German Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":43,"name":"Heavenly Hefeweizen","state":"Colorado"},{"abv":2.7712247565831727,"address":"27 Broadway","city":"Toledo","coordinates":[41.6432,-83.5384],"country":"United States","ibu":82,"name":"Belgian Trippel","state":"Ohio"},{"abv":12.979208194213959,"category":"North American Ale","city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":76,"name":"Alt-ernative Amber","state":"Ohio"},{"abv":8.89549141435644,"category":"North American Ale","city":"Fort Collins","coordinates":[40.5853,-105.084],"country":"United States","ibu":10,"name":"Chocolate Stout","state":"Colorado"},{"abv":14.522520262300317,"address":"1501 East Wilson","category":"North American Lager","city":"Batavia","coordinates":[41.8539,-88.2776],"country":"United States","ibu":72,"name":"Beer","state":"Illinois"},{"abv":7.5999999046,"address":"Nymphenburger Straße 4","category":"German Lager","city":"München","country":"Germany","ibu":10,"name":"Triumphator","state":"Bayern"},{"abv":1.028950019874062,"address":"80 Westgate","city":"Peterborough","coordinates":[52.5758,-0.248],"country":"United Kingdom","ibu":64,"name":"Jeffrey Hudson Bitter","state":"Cambridge"},{"abv":6.529169085873496,"address":"114 North Main Street","category":"North American Lager","city":"Lawton","coordinates":[42.1682,-85.8497],"country":"United States","ibu":59,"name":"Caramel Rye","state":"Michigan"},{"abv":5.5,"address":"Kwabrugstraat 5","city":"Bellegem","coordinates":[50.7767,3.2785],"country":"Belgium","ibu":56,"name":"Bellegems Bruin","state":"West-Vlaanderen"},{"abv":7.6999998093,"address":"1999 Citracado Parkway","category":"North American Ale","city":"Escondido","coordinates":[33.1157,-117.12],"country":"United States","ibu":76,"name":"7th Anniversary IPA","state":"California","website":"http://www.stonebrew.com/"},{"abv":14.738884115160564,"address":"9675 Scranton Road","city":"San Diego","coordinates":[32.8969,-117.201],"country":"United States","ibu":23,"name":"Belgian Abbey Red","state":"California"},{"abv":9,"address":"5401 Linda Vista Road #406","category":"North American Ale","city":"San Diego","coordinates":[32.7668,-117.195],"country":"United States","ibu":7,"name":"Come About Imperial Stout","state":"California","website":"http://www.ballastpoint.com/"},{"abv":9.5,"address":"620 South Madison Street","city":"Wilmington","coordinates":[39.745,-75.5561],"country":"United States","description":"Traditional Belgian-style golden ale, complex aroma and flavor of plums, spice and bananas with a refreshing balanced bitterness.","ibu":39,"name":"Iron Hill Belgian Tripel","state":"Delaware","website":"http://www.ironhillbrewery.com/"},{"abv":8.3000001907,"address":"1280 North McDowell Boulevard","category":"Irish Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":79,"name":"Lucky 13 Anniversary Release","state":"California","website":"http://www.lagunitas.com/"},{"abv":12.999991152732889,"address":"1035 Sterling Avenue","category":"Other Style","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":63,"name":"Roundhouse Raspberry Wheat Ale","state":"Illinois"},{"abv":1.6109103448362727,"category":"Belgian and French Ale","city":"Cleveland","coordinates":[41.4995,-81.6954],"country":"United States","ibu":89,"name":"Framboise","state":"Ohio"},{"abv":14.767802175302766,"category":"North American Lager","city":"Port Washington","coordinates":[43.3872,-87.8756],"country":"United States","ibu":56,"name":"Pier 96 Lager","state":"Wisconsin"},{"abv":6.1999998093,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":114,"name":"Hop Hearty IPA","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":9,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":14,"name":"Montagnarde","state":"Hainaut"},{"abv":4.9000000954,"address":"1 Kendall Square #100","category":"North American Ale","city":"Cambridge","coordinates":[42.3664,-71.0911],"country":"United States","description":"Big and bold, our Pale Ale distinguishes itself by its huge, fresh hop aroma and flavor. A combination of Cascade and Centennial hops, both in the kettle and during an extensive dry-hopped conditioning time, gives this beer its nectarious flavor.","ibu":48,"name":"Tall Tale Pale Ale","state":"Massachusetts","website":"http://www.cambrew.com/"},{"abv":9.331697611217024,"category":"German Ale","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":54,"name":"Bavarian Weiss","state":"Illinois"},{"abv":12.421747422875052,"address":"603 East Brewery Street","city":"Shiner","coordinates":[29.426,-97.1607],"country":"United States","ibu":110,"name":"Shiner Summer Stock Kölsch Beer","state":"Texas","website":"http://www.shiner.com"},{"abv":11.291915952381114,"address":"1401 Miner Street","category":"Other Style","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Jack Whacker Wheat Ale is a light, unfiltered brew with a citrus aroma and flavor imparted by a late addition of lemon grass. It's the perfect refreshment for a thirsty, trail-weary ale lover.","ibu":4,"name":"Jack Whacker Wheat Ale","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":4.3000001907,"address":"St. James's Gate","category":"Irish Ale","city":"Dublin","coordinates":[53.3433,-6.2846],"country":"Ireland","ibu":117,"name":"Guinness Draught","website":"http://www.guinness.com"},{"abv":9,"address":"905 Line Street","category":"North American Ale","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"In 750ml corked ’n’ caged bottles this will be and unfiltered, fully bottle conditioned version of the super popular Double Simcoe. Expect Cask taste in a bottle, with more pronounced hoppy flavor and aroma due to being unfiltered. Also, carbonation will be a bit higher as is usual in our cork n cage series in keeping with tradition. It all comes together to form a uniquely great experience for hopheads.","ibu":34,"name":"Unfiltered Double Simcoe IPA","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":8.8699998856,"address":"7424 SW Beaverton-Hillsdale Hwy","city":"Portland","coordinates":[45.4856,-122.754],"country":"United States","description":"This Northwest style sour red is a bottled version of our popular Mouton Rouge. This blend of barrels, with up to 16 months of oak barrel lactic fermentation and oak barrel aging, features dark fruit, sour, oak and funk flavors that sweep over your taste buds like an incoming tide.","ibu":78,"name":"Cascade Sang Royal","state":"Oregon","website":"http://www.raclodge.com/"},{"abv":5,"address":"Rue de Panneries 17","category":"Belgian and French Ale","city":"Brunehaut","coordinates":[50.5109,3.3883],"country":"Belgium","description":"A classic Belgian 'white beer' from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\n\nPresents a light hazy yellow colour with citrus and coriander aromas and fairly subtle malt and hops on the palate. The finish is dry and satisfying. Hazy yellow golden colour. Lemon custard, lime zest, and delicate spice melange aromas. Well-balanced, a frothy entry leads to a dryish medium body of nuts, baked oranges, and slightly phenolic mineral flavors. Finishes with a metallic ore dust, salt, and dried lemon fade. This beer is certified as organic.","ibu":13,"name":"Brasserie de Brunehaut Bio Bière Blanche (Organic)","state":"Hainaut","website":"http://www.brunehaut.com/"},{"abv":6.3000001907,"address":"35 Fire Place","category":"North American Ale","city":"Santa Fe","coordinates":[35.5966,-106.052],"country":"United States","description":"A classic beer for those beer lovers who love their hops, Fiesta IPA will take the Pepsi Challenge (or IPA challenge, as we say in New Mexico) against any other pretenders to the throne. Was it divine providence that made this beer the king of the IPA world? Was it a tireless pursuit of glory? No, this IPA has a top-secret recipe to thank for its success, and this meticulously formulated combination of several different hops combined with a very specific brewing process give Fiesta IPA a spicy, citric, and floral infusion of hop character, which is masterfully counterbalanced with the full-bodied maltiness characteristic of the Santa Fe Brewing Company’s distinctive beers.","ibu":8,"name":"Fiesta IPA","state":"New Mexico","website":"http://www.santafebrewing.com/"},{"abv":5.8000001907000005,"address":"470 Prospect Village Dr.","category":"North American Ale","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","description":"Our award-winning India Pale Ale is a hop lover’s dream. We use Galena and Cascade hops in the kettle and dry-hop with more cascade during conditioning. This copper-colored ale has a nice maltiness to balance all the hops.","ibu":42,"name":"Renegade IPA","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":7.8000001907000005,"address":"905 Line Street","category":"Other Style","city":"Easton","coordinates":[40.6732,-75.2249],"country":"United States","description":"A pitch black stout made with ginger, cinnamon and a touch of molasses. This medium–bodied ale has flavors of dark chocolate, roasted coffee beans and ginger snap cookies.","ibu":92,"name":"Delta Ale","state":"Pennsylvania","website":"http://www.weyerbacher.com/"},{"abv":5.0999999046,"address":"One Busch Place","category":"North American Ale","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Budweiser American Ale is brewed with barley from America's heartland and dry hopped with Cascade hops from the Pacific Northwest.\n\n\nAvailable Fall 2008.","ibu":61,"name":"Budweiser American Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":9,"address":"66 East Eighth Street","city":"Holland","coordinates":[42.79,-86.1041],"country":"United States","description":"A barrel-aged, strong-ale with a soft and rich caramel-malt character intermingled with deep vanilla tones dancing in an oak bath. Unmistakably distinctive and hauntingly remarkable, Dragon’s Milk’s warming complexity pairs well with smoked meats and cheeses, red meat, or a nice cigar.","ibu":87,"name":"Dragon's Milk","state":"Michigan","website":"http://newhollandbrew.com"},{"abv":8.5,"address":"170 Orange Avenue","category":"North American Ale","city":"Coronado","coordinates":[32.6976,-117.173],"country":"United States","description":"The CBC Idiot IPA is an all natural India Pale Ale. A big beer with an 8.5% ABV and brewed with over 3 lbs of hops per barrell. Watch out, this unfiltered \"San Diego IPA\" has been known to reduce even the most intelligent to a blithering \"idiot\".","ibu":119,"name":"Idiot IPA","state":"California","website":"http://www.coronadobrewingcompany.com/"},{"abv":8,"category":"Belgian and French Ale","city":"Achel","coordinates":[51.2515,5.546],"country":"Belgium","ibu":36,"name":"Achel Blond 8°","website":"http://www.achelsekluis.org/"},{"abv":6,"address":"811 Edward Street","category":"German Lager","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Bock is not from the bottom of the barrel! It is a rich malty beer brewed with traditional German ingredients and aged for months to give it a smooth malty character. Look for a rich full-bodied beer.","ibu":67,"name":"Saranac Bock","state":"New York","website":"http://www.saranac.com"},{"abv":4.5,"address":"5 Bartlett Bay Road","category":"German Lager","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A rich medium-bodied black lager whose sweet deep malt flavor is balanced by a moderate hop bite and roasted malt tartness that creates notes of bitter chocolate and a slight lingering sweetness.","ibu":108,"name":"Orlio Seasonal Black Lager","state":"Vermont","website":"http://www.orlio.net/"},{"abv":6.5,"category":"North American Ale","city":"Seattle","coordinates":[47.6062,-122.332],"country":"United States","ibu":13,"name":"Redhook Long Hammer IPA","state":"Washington","website":"http://www.redhook.com/"},{"abv":5,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","description":"This easy-drinking Pale Ale revives the name of one of the early icons of California brewing. Clean-tasting and pleasantly malty, Acme Pale is brewed with Yakima Valley hops, American two-row malt and British specialty malts for depth.","ibu":62,"name":"Acme California Pale Ale","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":5,"address":"1340 East Eighth Street #103","category":"German Lager","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"This almost black lager originates from Germany and is most closely associated with Porter. The difference being the long maturation period (or lagering time) required to produce a true Schwartzbier. The flavor is reminiscent of treacle, coffee and toasted malt. It is not and should not be perceived as burnt or ashy like some stouts. Black Betty has 5% alc/vol and a smooth character that marks most lager beers.\n\n\nThe name, of course, comes from the Huddy Ledbetter song from the 1940’s which was made popular by the band Ram Jam and later by the Black Crows and U2, among others.","ibu":42,"name":"Black Betty Schwartzbier","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":7.25,"address":"4615-B Hollins Ferry Road","category":"German Lager","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","description":"We call this beer an Über Pils - a pilsner style bock lager. Rich, malty, and well rounded but with a firm structure of noble hops. Surprisingly pale in color for such a powerful, complex beer. Available year round beginning Feb. 05'.\n\n\nSilver Medal- World Beer Championship 2007","ibu":89,"name":"Small Craft Warning","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":2.8654796909050217,"address":"1001 South Eighth Street","city":"Manitowoc","coordinates":[44.0886,-87.6576],"country":"United States","ibu":111,"name":"Munich Helles","state":"Wisconsin"},{"abv":5,"address":"Obere Mhlbrcke 1-3","city":"Bamberg","coordinates":[49.8891,10.887],"country":"Germany","ibu":21,"name":"Bamberger Gold","state":"Bayern"},{"abv":10,"address":"Mandekenstraat 179","city":"Buggenhout","coordinates":[51.0228,4.1572],"country":"Belgium","ibu":16,"name":"Malheur MM","state":"Oost-Vlaanderen"},{"abv":5.5,"category":"North American Lager","city":"Florence","coordinates":[45.9222,-88.2518],"country":"United States","ibu":35,"name":"Dark Pilsener","state":"Wisconsin"},{"abv":5.5,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","ibu":62,"name":"Samuel Adams Chocolate Bock","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":12.098173455690905,"address":"146 Snelling Avenue North","category":"German Lager","city":"Saint Paul","coordinates":[44.9458,-93.167],"country":"United States","ibu":84,"name":"Amber Bock","state":"Minnesota"},{"abv":5.1999998093,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":106,"name":"Nut Brown Ale","state":"Colorado"},{"abv":9.438284536202652,"address":"Laarheiestraat 230","category":"Belgian and French Ale","city":"Beersel","coordinates":[50.7586,4.3012],"country":"Belgium","ibu":2,"name":"Oude Gueuze Vielle","state":"Vlaams Brabant"},{"abv":5.5,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":19,"name":"Best Bitter","state":"Washington"},{"abv":4.8000001907000005,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":105,"name":"Hell"},{"abv":4.5,"address":"Hohenzornstrasse 2","category":"Irish Ale","city":"Frauenfeld","coordinates":[47.5585,8.9006],"country":"Switzerland","ibu":42,"name":"Huusbier Schwarz"},{"abv":8.907949785391974,"address":"120 East Third Street","category":"Irish Ale","city":"Grand Island","coordinates":[40.9259,-98.3397],"country":"United States","ibu":40,"name":"Imperial Porter","state":"Nebraska"},{"abv":6.8000001907000005,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"After several months of experimentation, energy and obsession, Deschutes Brewery’s brewers have triumphed once again. Inversion I.P.A.'s trio of American hops delivers an over-the-top nose with hints of orange and grapefruit. Inversion is then dry-hopped for seven days resulting in an added hoppy kick. To balance the hop character, Deschutes’ brewers used crystal and caraston malts that weave throughout the beer providing soft, complex caramel flavors. \n\n\nJust like clear days up on the mountain, Inversion I.P.A. will deliver a path to higher ground. Inversion I.P.A. is a phenomenal NW-style I.P.A., beckoning all beer drinkers and enticing I.P.A. lovers to invert their world and find clarity above the routine of the everyday.","ibu":30,"name":"Inversion IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":4.5,"address":"Rue de la Brasserie 4","city":"Purnode","coordinates":[50.3114,4.9435],"country":"Belgium","ibu":93,"name":"Blanche de Namur","state":"Namur"},{"abv":1.2169531626603924,"address":"1430 Washington Avenue South","city":"Minneapolis","coordinates":[44.9732,-93.2479],"country":"United States","ibu":42,"name":"WPA (Wheat Pale Ale)","state":"Minnesota","website":"http://www.townhallbrewery.com/"},{"abv":10,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer is the result of the marriage between two very distinct beer styles; the Belgian Tripel & American IPA. We have taken the best qualities from both styles and allowed them to shine through. The fruity and spicy notes from the imported Belgian yeast strain & the pungent flavors and aromas of the American grown Amarillo hops flow seamlessly together to create this flavorful ale. Straight from the Captain’s cellar to yours, we hope you enjoy.","ibu":17,"name":"Captain Lawrence Xtra Gold","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":6.5,"address":"105 East State Street","category":"Other Style","city":"Hastings","coordinates":[42.6488,-85.2875],"country":"United States","description":"A smooth golden ale flavored with Pilsner malt and fresh local honey from Schaefer Shack Farms.","ibu":6,"name":"Bee Sting Honey Rye Ale","state":"Michigan","website":"http://walldorffbrewpub.com/"},{"abv":6.5999999046,"address":"40 Bowden Square","category":"Other Style","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","description":"What do brewmasters do in their free time? If you're Phil Markowski, the obsesseive brewmaster of Southampton, you brew at home, of course! Phil turned his fascination with Belgian-style white ales into a quest to master one of the most challenging beers to brew. Using rustic ingredients like un-malted wheat, Phil experimented over his stove until he felt it was perfect. Take one taste and you'll agree, Phil got it \"white.\";\"0","ibu":113,"name":"Double White","state":"New York","website":"http://southamptonbrewery.com"},{"abv":4.5,"address":"420 Harrison Drive","category":"German Ale","city":"Centerport","coordinates":[40.8959,-73.3811],"country":"United States","description":"Sometimes it's good to keep it simple. \n\n\nHarborfields HefeWeizen is modeled after the German classic, but meant to be available fresh (like you would enjoy if you were in Germany). Shipping over long distances is not always a friend to beer. \n\n\nNamed for the Centerport-Greenlawn area of Long Island that is home to the Blind Bat Brewery, Harborfields Hefeweizen goes great with fish, chicken, or a summer salad. Some even like it with brunch! (Please enjoy your waffles responsibly.)","ibu":55,"name":"Harborfields HefeWeizen","state":"New York","website":"http://www.blindbatbrewery.com/"},{"abv":5.5999999046,"address":"2519 Main St.","category":"North American Ale","city":"Conestoga","coordinates":[39.9525,-76.3295],"country":"United States","description":"The story of the Seven Gates comes from rural Pennsylvania, not far from the Spring House Brewery. According to the legend, a mental asylum for the criminally insane stood in the middle of a dense forest. Surrounding the asylum were seven concentric gates, preventing would-be escapees. One terrifying night, the asylum caught fire, test link causing the inmates to flee into the menacing forest. As the tale goes, the former asylum residents were trapped by the seven gates, and eventually succumbed to the perils of the forest. The locals swear that the tormented souls of the inmates will torture anyone brave enough to attempt passage through the Seven Gates of the forest.\n\n\nSpring House Brewing Co. honors the local legend by producing a terrifyingly delicious brew that is as familiar as a friendly forest, yet possesses a mysterious quality that will haunt you from the first taste. The enormous, hopped flavor and the meticulous craftsmanship that goes into each bottle will have you believing that the master brewer must be a direct descendent of the former asylum residents.","ibu":65,"name":"Seven Gates Pale Ale","state":"Pennsylvania","website":"http://www.springhousebeer.com/"},{"abv":8.1000003815,"address":"3115 Broad Street","category":"North American Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A Belgian inspired stout that is as dark as a moonless midnight, brimming of roasted malts and bitter hops. It will keep you good company in all places, be thay light or dark.","ibu":115,"name":"Madrugada Obscura","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":4.4000000954,"address":"Route 4 & 100A","category":"North American Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"A light & malty experience modeled after one of our favorite old style English brews.","ibu":74,"name":"Harvest","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":4.5,"address":"38 Evergreen Drive","category":"British Ale","city":"Portland","coordinates":[43.7076,-70.3149],"country":"United States","description":"\"A classic British pale ale with a nod to the legendary beers of Burton-on-Trent. Copper-colored, dry, clean and crisp with lots of late hope taste in an appetizing complex with ale fruitiness from imported Hampshire yeast.\" ~ http://www.gearybrewing.com/pages/pale.php","ibu":79,"name":"Geary's Pale Ale","state":"Maine","website":"http://www.gearybrewing.com"},{"abv":7.8000001907000005,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"Our Vermont Imperial Stout\n\nPast the dark and into the deep lies this stout and hearty hale ale from a far off forsaken age. Black like shimmering shades of furthest night, this ale will warm your cold limbs and light your mind's fire.\n\n\nThumbsucker(tm), big full-bodied, dark beer with a rich, roasted malt flavor and balanced by an assertive hop bitterness, is our salute to the rarest Imperial Stouts of lore.","ibu":101,"name":"Thumbsucker","state":"Vermont","website":"http://www.magichat.net/"},{"abv":12.013922628808979,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Malty and slightly sweet, balanced by earthy notes from the hops. The gentle rain and fertile soil of Ireland helped inspire this style of ale, known for being remarkably balanced. Pale and Caramel malts give the beer its rich, deep red color and distinctive caramel flavor. The sweetness of the malt is pleasantly balanced by a pronounced hop bitterness and an earthy note from the East Kent Goldings hops. Samuel Adams® Irish Red finishes smooth and leaves you wanting to take another sip.","ibu":47,"name":"Samuel Adams Irish Red","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":14.619173626848218,"address":"622 Main Street","category":"British Ale","city":"Lafayette","coordinates":[40.4194,-86.89],"country":"United States","ibu":30,"name":"Bill Old Ale","state":"Indiana"},{"abv":4.4000000954,"address":"Wellgarth","city":"Ripon","country":"United Kingdom","ibu":114,"name":"Ale","state":"North Yorkshire"},{"abv":8.591296305428749,"address":"3560 Oakwood Mall Drive","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":5,"name":"White Weasel Beer","state":"Wisconsin"},{"abv":7.5,"address":"351 Allen Street","category":"North American Ale","city":"Amherst","coordinates":[44.4419,-89.2797],"country":"United States","description":"This smooth, creamy stout and a crackling fireplace are the perfect answer to a wintery evening in Wisconsin. The rich coffee flavor compliments the \"warm, fuzzy feeling\" you get from the abundant alcohol. Enjoy in moderation.","ibu":16,"name":"Satin Solstice Imperial Stout","state":"Wisconsin","website":"http://www.centralwaters.com/"},{"abv":2.380593910333564,"address":"1735 19th Street #100","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":68,"name":"Wild Turkey Bourbon Stout","state":"Colorado"},{"abv":9.982418720467255,"address":"3312 Plaza Drive","category":"North American Ale","city":"New Albany","coordinates":[38.3281,-85.8171],"country":"United States","ibu":79,"name":"Solidarity","state":"Indiana","website":"http://www.newalbanian.com"},{"abv":5.4000000954,"address":"1213 Veshecco Drive","category":"German Ale","city":"Erie","coordinates":[42.1112,-80.113],"country":"United States","description":"Erie Brewing Co. Heritage Alt Beer - a classic, old style dark German ale possessing a subtle hint of roasted and chocolate malt flavor, with a smooth balanced finish. Erie Brewing first brewed this annually for the Erie German Heritage Festival. Erie Brewing’s Heritage Alt Beer popularity lead this beer from a commemorative beer for the festival to a complete packaged seasonal release for all to enjoy, whether you are of German Heritage or not. Prost!","ibu":94,"name":"Heritage Alt Beer","state":"Pennsylvania","website":"http://www.eriebrewingco.com"},{"abv":8.1999998093,"address":"1680-F East Waterloo Rd.","category":"North American Ale","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"Explore the extremes of hops, and experience all of their bitterness, flavor and aroma with this Double I.P.A. An extreme, super-assertive and satisfying amount of American hop character is balanced with a toasty, caramelized, intense malt presence.","ibu":94,"name":"Mean Manalishi Double I.P.A.","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":6.4000000954,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Red Chair IPA is named after the oldest operating lift at Mt. Bachelor, a classic old school double that locals flock to on fresh powder mornings. This beer has been wildly popular with our pub regulars, who always seem to know when we have hit on something special. \n\n\nThis IPA is a bright copper beauty with a solid head and perfect lacing that typifies Deschutes ales. It has a plush body with satiny caramel flavors derived from seven varieties of malt. Despite all of this, Red Chair is still a hop forward ale, but not in the way many have gotten used to. You will find no cloying, mouth puckering bitterness here. In its place a straight up succulent citrus punch to the nose.","ibu":102,"name":"Red Chair IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":6.1999998093,"address":"445 St.Paul Street","category":"Other Style","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","description":"So did you ever ask yourself...what exactly is there to be festive about during the holidays? Your brother in-law snoring on the air mattress? (Boy, let’s hope that’s snoring.) The variety of toys with realistic sound effects? Fruit cake?\n\n\nDundee Festive Ale may be one of the few exceptions. One sip of the carefully matched seasonal spices and you realize that the holidays are worth paying...waiting for.\n\n\nOh, there may be one other thing to be festive about. There’s a 13 to 1 chance against your brother in-law’s plane leaving on time. But at least there’s a chance.\n\n\nFestively hearty and full bodied with a mild nutmeg, allspice, cinnamon, and orange peel spice character and subtle crystal malt flavor.","ibu":5,"name":"Dundee Festive Ale","state":"New York"},{"abv":7.619864429675866,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","ibu":62,"name":"Jupiter - Belgian-style \\\"Champagne\\\" Trippel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"8111 Dimond Hook Drive","category":"North American Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Oosik Amber Ale is a true German-style altbier, brewed with pale, Munich and crystal malts. Deep amber with copper highlights, Oosik sports a toasted and caramel malt profile, balanced by traditional noble hops. A special yeast strain ferments this ale at cooler lager temperatures, giving it a smooth malt character and a clean finish. \n\n\nWant to hang—so to speak—for a while? Oosik Amber Ale gives you hang time. Great flavor, big mouthfeel, satisfying finish…all in a session-worthy beer. Compare it to other ambers—Oosik rules. Look for our 20-inch Oosik tap in better beer bars throughout AK. \n\n\nYou can't just have a little Oosik. \n\n\nBUY the Oosik \"Love is Hard\" tee - men's and women's styles available.\n\n\nAvailability:\n\nAK - draft (year-round)","ibu":12,"name":"Oosik Amber Ale","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":9.8999996185,"address":"1280 North McDowell Boulevard","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":107,"name":"Brown Shugga","state":"California","website":"http://www.lagunitas.com/"},{"abv":5.4000000954,"address":"5 Bartlett Bay Road","category":"North American Ale","city":"South Burlington","coordinates":[44.4284,-73.2131],"country":"United States","description":"A strong but smooth medium-bodied copper ale with a furity nose, big dry hop flavor, and assertive hop bite that rest upon a subtle but supportive background of complex malt flavors.","ibu":38,"name":"Orlio Seasonal India Pale Ale","state":"Vermont","website":"http://www.orlio.net/"},{"abv":5.8000001907000005,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":23,"name":"Boont Amber Ale","state":"California","website":"http://avbc.com/"},{"abv":5.1999998093,"address":"12 Old Charlotte Highway","category":"North American Ale","city":"Asheville","coordinates":[35.5716,-82.4991],"country":"United States","description":"A golden pale having a slightly malty body balanced by an assertive American hop flavor. This pale ale displays a delicate hop nose due to the process of dry hopping. A crisp and refreshing beer perfect for any occasion.\n\n\nIBU: 24\n\nAlcohol content: 5.2% by volume\n\nHops: Chinook and Cascade\n\n\nCalories per 12 oz. 170.1\n\nCarbs per 12 oz. 15.65","ibu":29,"name":"St.Terese's Pale Ale","state":"North Carolina","website":"http://www.highlandbrewing.com/"},{"abv":9.792214255993787,"address":"Av.Alfonso Reyes Norte No.2202","category":"North American Lager","city":"Monterrey","coordinates":[25.7091,-100.314],"country":"Mexico","ibu":63,"name":"Dos Equis Special Lager","state":"Nuevo Leon","website":"http://www.ccm.com.mx/"},{"abv":6.0999999046,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"Available in 12 oz. cans and kegs. An American-style India Pale Ale brewed with plenty of body and an assertive hop profile.","ibu":1,"name":"Caldera IPA","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":5,"address":"Darmstädter Landstrasse 185","category":"German Ale","city":"Frankfurt/Main","country":"Germany","description":"classic Hefeweizen, cloud because it is traditionally unfiltered, was tested and rated by the German consumer magazin \"Ökotest\" as \"very good\" for pureness and residues of pesticides and so on","ibu":35,"name":"Schöfferhofer Hefeweizen Hell","state":"Hessen","website":"http://www.schoefferhofer.de/"},{"abv":9.6000003815,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","description":"From the Sierra Nevada Brewing Co. website:\n\nThis year marks the 25th release of Bigfoot®. Our award-winning barleywine boasts a dense, fruity bouquet, an intense flavor palate and a deep reddish-brown color. Its big maltiness is superbly balanced by a wonderfully bittersweet hoppiness.","ibu":66,"name":"Bigfoot","state":"California","website":"http://www.sierranevada.com/"},{"abv":7.5,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Imperial Stouts are by far the \"GRAND - DADDY\" of all stouts. For those who demand flavor, this is the perfect libation.","ibu":62,"name":"Siberian Night Imperial Stout","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":6,"address":"1340 East Eighth Street #103","category":"British Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our award-winning Flagship ale is now in bottles!! This is an ale made in the tradition of the great strong ales of Scotland. Amber colored, malty sweet with underlying note of smokiness. \n\n\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)","ibu":83,"name":"Kilt Lifter Scottish-Style Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6.5,"address":"2051A Stoneman Circle","category":"North American Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"IPA stands for India Pale Ale and ours is an American version of the classic style. IPA's namesake lies in its colonial roots. British soldiers on their way to India drank a lot of beer, but found it would go stale on the long voyages. Meanwhile, brewers knew that by adding more hops the beer would stay fresh. Voila! A new style was born and it is one we are proud to brew. Southern Tier IPA is triple-hopped on its journey to your glass for a fully aromatic experience.","ibu":99,"name":"Southern Tier IPA","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":8.018441601013683,"address":"18 East 21st Street","category":"Belgian and French Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":99,"name":"Summer Gueuze","state":"Nebraska"},{"abv":10.222068834547409,"address":"3560 Oakwood Mall Drive","category":"North American Ale","city":"Eau Claire","coordinates":[44.7776,-91.4433],"country":"United States","ibu":13,"name":"Red Cedar Red","state":"Wisconsin"},{"abv":10,"address":"9368 Cabot Drive","city":"San Diego","coordinates":[32.892,-117.144],"country":"United States","ibu":29,"name":"Horny Devil","state":"California","website":"http://alesmith.com/"},{"abv":14.084034251113613,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":13,"name":"Billings IPA","state":"Montana"},{"abv":4.5,"address":"161 River Avenue","category":"British Ale","city":"Patchogue","coordinates":[40.7591,-73.0215],"country":"United States","ibu":5,"name":"Oatmeal Stout","state":"New York","website":"http://www.bluepointbrewing.com/"},{"abv":9.727567083602288,"address":"1650 Dell Range Boulevard","category":"North American Ale","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":45,"name":"Big Horn Buttface Amber","state":"Wyoming"},{"abv":4.9000000954,"address":"Herrenhuser Strae 83-99","city":"Hannover","coordinates":[52.3935,9.6814],"country":"Germany","ibu":18,"name":"Premium Pilsener","state":"Niedersachsen"},{"abv":5.423305567796282,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":26,"name":"Old 3rd Street XXX Belgian Strong Ale","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":11.890282210334377,"address":"1257, Kounsosu","category":"German Ale","city":"Ibaraki","country":"Japan","ibu":40,"name":"Hitachino Nest Beer","state":"Kanto"},{"abv":7.063058201676257,"category":"Irish Ale","city":"Salt Lake City","coordinates":[40.638,-111.69],"country":"United States","ibu":104,"name":"Porter","state":"Utah"},{"abv":11.12088926917293,"address":"305 South Market Street","category":"German Lager","city":"Springfield","coordinates":[37.2079,-93.2955],"country":"United States","ibu":96,"name":"Mueller Doppelbock","state":"Missouri"},{"abv":13.29370613819211,"address":"120 SW Eighth Street","category":"North American Lager","city":"Krebs","coordinates":[34.9251,-95.7253],"country":"United States","ibu":7,"name":"Choc American Lager","state":"Oklahoma"},{"abv":3.386554347534003,"address":"Dudley DY3 1JE","city":"Dudley","coordinates":[52.5435,-2.1156],"country":"United Kingdom","ibu":81,"name":"Dark Ruby Ale","state":"West Midlands"},{"abv":4.778837020034453,"address":"40 Bennett Street","category":"Irish Ale","city":"Carleton Place","coordinates":[45.1279,-76.13],"country":"Canada","ibu":25,"name":"Black Irish Plain Porter","state":"Ontario"},{"abv":0.16970244165353532,"address":"Konradigasse 2","category":"North American Lager","city":"Konstanz","coordinates":[47.6651,9.175],"country":"Germany","ibu":19,"name":"Kupfer","state":"Baden-Wrttemberg"},{"abv":4.9000000954,"address":"Lautenberg 1","category":"North American Lager","city":"Ulm","coordinates":[48.3979,9.9899],"country":"Germany","ibu":30,"name":"Rotgold-Pils","state":"Baden-Wrttemberg"},{"abv":8,"address":"Trappistenweg 23","category":"Belgian and French Ale","city":"Watou","coordinates":[50.8425,2.6362],"country":"Belgium","description":"This noble delicious beer with a high fermentation has a ruby purple colour with a full malty and fruity taste (8% alcohol content). \n\n\nThis beer has a beautiful round froth due to the second fermentation with a taste that creates a perfect balance between sweet and sour.","ibu":11,"name":"Prior 8","state":"West-Vlaanderen","website":"http://www.sintbernardus.be"},{"abv":12.876893598015425,"address":"11337 Davenport St.","city":"Omaha","coordinates":[41.2603,-96.0903],"country":"United States","ibu":9,"name":"Bourbon Imperial Stout","state":"Nebraska"},{"abv":4.3000001907,"address":"West Hewish","city":"Weston-super-Mare","coordinates":[51.3723,-2.8773],"country":"United Kingdom","ibu":95,"name":"Pitchfork Rebellious Bitter","state":"Somerset"},{"abv":8.1999998093,"address":"Emil-Ott-Strasse 1-5","category":"German Ale","city":"Kelheim","coordinates":[48.9175,11.8735],"country":"Germany","description":"Dark-ruby, almost black-colored and streaked with fine top-fermenting yeast, this beer has a compact and persistent head. This is a very intense wheat doppelbock with a complex spicy chocolate-like arome with a hint of banana and raisins. On the palate, you experience a soft touch and on the tongue it is very rich and complex, though fresh with a hint of caramel. It finishes in a rich soft and lightly bitter impression.","ibu":59,"name":"Aventinus Weizenstarkbier / Doppel Weizen Bock","website":"http://www.schneider-weisse.de"},{"abv":5.4000000954,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":21,"name":"Avalanche Amber","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":4.1999998093,"address":"500 Linden Street","category":"North American Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Ever tried a Skinny Dip? You wouldn't be alone. Featured by both Men's Journal and the Today Show as a favorite summer brew, this full-bodied, highly drinkable beer makes a splash every summer in our Seasonal line-up. Cascade hops frolic with a hint of lime leaf, giving the beer complexity that's surprisingly refreshing.","ibu":19,"name":"Skinny Dip","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":7.5,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"Squeeze those hops for all they’re worth and prepare to pucker up: Nugget Nectar Ale, will take hopheads to nirvana with a heady collection of Nugget, Warrior and Tomahawk hops. Starting with the same base ingredients of our flagship HopBack Amber Ale, Nugget Nectar intensifies the malt and hop flavors to create an explosive hop experience.","ibu":14,"name":"Nugget Nectar","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":12.065646800796072,"city":"Kihei","coordinates":[20.7592,-156.457],"country":"United States","ibu":7,"name":"Paradise Pale Lager","state":"Hawaii"},{"abv":7.8000001907000005,"address":"6300 Folsom Boulevard","category":"Other Style","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"Our Holiday Ale is a “special” version of our flagship product - Hoppy Faceâ„¢ Amber Ale; only bigger for you to enjoy during this holiday season!!! Characterized by its distinctive hop aroma and rich, ruby color, Hoppy Claus redefines the way you think about a holiday ale. Hoppy Claus uses only the finest two row malted barley, hops grown in the great Pacific Northwest, and some secret spices that we would love to tell you about; but are unable to do so. This combination results in a clean, crisp, and refreshingly unique hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity.","ibu":65,"name":"Hoppy Claus Holiday Ale","state":"California","website":"http://www.hoppy.com"},{"abv":13.143595964412278,"address":"Brandschenkestrasse 150","category":"German Lager","city":"Zrich","coordinates":[47.3642,8.5245],"country":"Switzerland","ibu":48,"name":"Hexen Bräu"},{"abv":2.7322819811967216,"address":"200 Village Green","city":"Lincolnshire","coordinates":[42.2031,-87.9302],"country":"United States","ibu":13,"name":"Eighty Shilling Ale","state":"Illinois"},{"abv":9.637922000488395,"category":"North American Ale","city":"Cedar Rapids","coordinates":[41.9625,-91.6918],"country":"United States","ibu":19,"name":"Summer Alt","state":"Iowa"},{"abv":10.152174060536955,"address":"Brusselse Steenweg 282","city":"Melle","country":"Belgium","ibu":24,"name":"Duinen Tripel","state":"Oost-Vlaanderen"},{"abv":4.6999998093,"address":"Chiswick Lane South","city":"London","coordinates":[51.4877,-0.24980000000000002],"country":"United Kingdom","ibu":107,"name":"London Pride","state":"London","website":"http://www.fullers.co.uk/"},{"abv":12.296256749068673,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":12,"name":"Coffee Stout","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":5.9000000954,"category":"Belgian and French Ale","city":"Morrisville","coordinates":[44.5617,-72.5984],"country":"United States","ibu":29,"name":"Brueghel Blonde","state":"Vermont"},{"abv":4.1500000954,"address":"3340 Liberty Ave.","category":"North American Lager","city":"Pittsburgh","coordinates":[40.461,-79.9653],"country":"United States","description":"IC Light is an original, not a watered down copy, and brewed to be light from start to finish.","ibu":106,"name":"IC Light","state":"Pennsylvania","website":"http://www.ironcitybrewingcompany.com/Default.aspx"},{"abv":4.5,"address":"800 Vinial St.","category":"German Lager","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"A rich, deep golden-colored lager fest bier that is exceptionally smooth and mellow. Uses two-row malted barley and a combination of roasted malts. Highly rated by the National Tasting Institute.","ibu":82,"name":"Penn Oktoberfest","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":4.9000000954,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Killian's Irish Red is a traditional lager with an authentic Irish heritage, based on the Killian family's recipe created for the Killian's brewery in Enniscorthy, Ireland in 1864. Coors acquired the rights to brew and market the product in America and Killian's was introduced to the U.S. in 1981.\n\n\nKillian's Irish Red derives its distinctive red-amber color and taste from a special caramel malt that has been roasted at a high temperature longer and more slowly than most malts. There are no coloring agents or artificial additives used in brewing Killian's. The brew is known for its rich amber color and thick, creamy head.","ibu":51,"name":"Killian's Irish Red","state":"Colorado","website":"http://www.coors.com"},{"abv":5,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors beer, first introduced by Adolph Coors in April, 1874, is brewed in the Rockies for a uniquely crisp, clean and drinkable \"Mile High Taste.","ibu":50,"name":"Coors Original","state":"Colorado","website":"http://www.coors.com"},{"abv":3.229613743956601,"category":"North American Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":83,"name":"Buffalo Ale","state":"Texas"},{"abv":4.690362072078342,"address":"26 Old Cross","category":"Irish Ale","city":"Hertford","coordinates":[51.7975,-0.0806],"country":"United Kingdom","ibu":113,"name":"Special Reserve Anniversary Porter","state":"Hertfordshire"},{"abv":11.356189981427319,"address":"1000 Great Highway","category":"North American Lager","city":"San Francisco","coordinates":[37.7694,-122.51],"country":"United States","ibu":20,"name":"Endless Summer Cream Ale","state":"California"},{"abv":1.8744147539636768,"address":"Westgate Street","city":"Bury St. Edmunds","coordinates":[52.241,0.7157],"country":"United Kingdom","ibu":50,"name":"Abbot Ale","state":"Suffolk"},{"abv":10.82234010523161,"address":"2001 Second Street","category":"German Ale","city":"Davis","coordinates":[38.5472,-121.726],"country":"United States","ibu":108,"name":"Hefe Weizen","state":"California"},{"abv":8.21830389099862,"address":"P.O. Box 1154","category":"North American Ale","city":"Glen Alpine","country":"United States","description":"This golden straw colored IPA is made with 5 varieties of malts and 6 massive hop additions. It is outstanding in flavor and aromatics.","ibu":68,"name":"Firewater Indian Pale Ale","state":"NC","website":"http://www.catawbavalleybrewingcompany.com/"},{"abv":3.5729264805931638,"address":"793 Exchange Street","category":"North American Ale","city":"Middlebury","coordinates":[44.0197,-73.1693],"country":"United States","description":"Brewed with organic roasted barley and chocolate malts for a rich, dark and robust flavor with an infusion of organic vanilla beans and coffee from the Dominican Republic farm community Alta Gracia.","ibu":119,"name":"Alta Gracia Coffee Porter","state":"Vermont","website":"http://www.ottercreekbrewing.com/"},{"abv":0.12501890438765484,"address":"1301 Atlanta Avenue","category":"North American Ale","city":"Orlando","coordinates":[28.5265,-81.3827],"country":"United States","ibu":73,"name":"Orlando Blonde Ale","state":"Florida","website":"http://www.orlandobrewing.com"},{"abv":9,"address":"2320 SE OSU Drive","category":"German Lager","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":70,"name":"Double Dead Guy Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":38,"name":"Tilburg's Dutch Brown Ale","website":"http://www.latrappe.nl/"},{"abv":4.628156706285318,"address":"175 Bloor Street East","category":"Irish Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":97,"name":"Rickard's Red Ale","state":"Ontario"},{"abv":4.5,"address":"2051A Stoneman Circle","category":"Other Style","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","description":"Pour Hop Sun Summer Wheat Beer into a pint glass, give it a long whiff and you’ll realize that this isn’t your average wheatbeer. Filtered to a golden clarity and dry-hopped to perfection, Hop Sun is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of lemon and sweet malts waft to the fore as a touch of bitterness contributes to Hop Sun’s bright finish. Enjoy Hop Sun all summer long as a perfect balance to your outdoor recreation. Summer never tasted so good.","ibu":62,"name":"Hop Sun","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":4.8000001907000005,"address":"701 S. 50th Street","category":"German Lager","city":"West Philly","coordinates":[39.9478,-75.2229],"country":"United States","description":"Bohemian Dock Street Pilsner is brewed in the style of the original Pilsner beers of Bohemia, in what is now the Czech Republic, in a tradition that dates to 1842. We use costly Bohemian Saaz hops and pale imported malts to produce its rich golden color, and soft malty flavor using traditional techniques of the old world. True Pilsners are the most difficult to brew as there are no dark malts or flavorings used to mask flaws. Pilsner is the best known style of beer in the world. A good pilsner balances hops and malts to a refreshing, clean tasting, every-mood kind of beer. The Bohemian can stand alone or join a party easily.","ibu":60,"name":"Bohemian Dock Street Pilsner","state":"Pennsylvania","website":"http://www.dockstreetbeer.com"},{"abv":4.5,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","ibu":55,"name":"Pacífico Clara","website":"http://www.gmodelo.com.mx/"},{"abv":9,"address":"80 Des Carrires","category":"Belgian and French Ale","city":"Chambly","coordinates":[45.4416,-73.2595],"country":"Canada","description":"La Fin du Monde has a brilliant golden color with vigorously effervescent foam.\n\nIt is midly yeasty with a complex palate of malt, fruit and spice notes followed by a smooth, dry finish.","ibu":40,"name":"La Fin Du Monde","state":"Quebec","website":"http://www.unibroue.com"},{"abv":5.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"Our flagship beer is made from mostly pale malt with some Munich and caramel malts. This gives it a slightly sweet flavor that is balanced by a melange of American hops. The result is a deep copper color and rich flavor.","ibu":98,"name":"Amber Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":9.464377013697565,"address":"35-C West Sunset Way","city":"Issaquah","coordinates":[47.53,-122.037],"country":"United States","ibu":35,"name":"Two Frog Dubbel","state":"Washington"},{"abv":9.768617973900032,"address":"515 Jefferson Street SE","city":"Olympia","coordinates":[47.0437,-122.897],"country":"United States","ibu":18,"name":"Thornton Creel Ale","state":"Washington","website":"http://www.fishbrewing.com/"},{"abv":5.9000000954,"address":"1221 East Pike Street","category":"British Ale","city":"Seattle","coordinates":[47.614,-122.316],"country":"United States","ibu":74,"name":"The Wise ESB","state":"Washington","website":"http://www.elysianbrewing.com/"},{"abv":7,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":57,"name":"Matilda","state":"Illinois"},{"abv":10.231142614279575,"address":"1401 Miner Street","category":"North American Lager","city":"Idaho Springs","coordinates":[39.7418,-105.518],"country":"United States","description":"Ornery Amber is brewed with a blend of the finest European hops and gently roasted malts.","ibu":53,"name":"Ornery Amber Lager","state":"Colorado","website":"http://www.tommyknocker.com/"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":98,"name":"Bigfoot 2005","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.5,"address":"Middleton Junction","category":"British Ale","city":"Manchester","coordinates":[53.5412,-2.1734],"country":"United Kingdom","ibu":58,"name":"Harvest Ale 2000","state":"Manchester"},{"abv":11.585608259173625,"address":"Dobroovsk 130","category":"German Lager","city":"Nchod","country":"Czech Republic","ibu":1,"name":"Primátor Double 24% / Primátor Double Bock Beer"},{"abv":8.498088954810822,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":71,"name":"Oatmeal Stout","state":"California"},{"abv":8,"address":"2351 Alpine Boulevard","category":"North American Ale","city":"Alpine","coordinates":[32.8355,-116.765],"country":"United States","description":"A West Coast Double IPA\n\nSo mega-hopped it will take you to hop heaven. We’ve used hops in the boil, more hops in the giant hopback, and added to that, an incredible amount of dry-hopping for that cutting-edge “hop bite.” Once you’ve tasted this unique beer, all others pale in comparison. 1.072 OG Classified IBU 8%ABV","ibu":112,"name":"Pure Hoppiness","state":"California","website":"http://www.alpinebeerco.com/"},{"abv":5.5,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":61,"name":"Pale Ale","state":"Colorado"},{"abv":5.290051344228539,"address":"2565 North Highway 14","category":"North American Ale","city":"Inyokern","coordinates":[35.6675,-117.874],"country":"United States","ibu":117,"name":"Desert Pale Ale","state":"California"},{"abv":14.242525911355568,"address":"316 Main Street","category":"North American Ale","city":"Ames","coordinates":[42.0248,-93.6147],"country":"United States","ibu":45,"name":"Mild Brown","state":"Iowa"},{"abv":5.4000000954,"address":"811 Edward Street","category":"Other Style","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"Saranac Pumpkin Ale is brewed with Pumpkin, Cinnamon, Allspice, Cloves, Ginger and Vanilla. Look for a full-body and amber color. We're sure you'll enjoy this special brew!","ibu":36,"name":"Saranac Pumpkin Ale","state":"New York","website":"http://www.saranac.com"},{"abv":6.8000001907000005,"address":"18452 NE Ribbon Ridge Road","city":"Newberg","coordinates":[45.3498,-123.073],"country":"United States","ibu":31,"name":"1997","state":"Oregon"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An American red ale brewed with Northern Brewer for the bittering and Liberty in the hopback. Very malty and crisp, this ale has all the fun without the AMD. ABV 5.0%","ibu":113,"name":"Red Mo Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7.5999999046,"address":"420 Acorn Lane","category":"North American Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"From the tradition started by the monks of St. Francis of Paula in 1634 comes this warming beer of rich heritage. A dark, rich lager of sublime complexity and character, St. Victorious is created from multiple German malts. Laborious decoction mashing yields the choicest elements of the malt. Long, cold aging mellows the strong temperament of this subtle beer. Celebrate the end of winter with a warming draft of St. Victorious Doppelbock!","ibu":114,"name":"St. Victorious","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":4.6999998093,"address":"310 Mill Creek Avenue","city":"Pottsville","coordinates":[40.7,-76.1747],"country":"United States","description":"Yuengling Original Black & Tan is a pioneer brand that models a traditional English Half & Half. Introduced in 1986, Yuengling produced one of the first hand-crafted draft blends to lead this style of American brewing. Black & Tan combines our popular Dark Brewed Porter and Premium Beer to create a brew that is rich and dark in color, with a well balanced flavor that finishes smooth and satisfying. It has a faint sweetness with hints of caramel and coffee from the dark roasted malts. One sip and you'll appreciate how Yuengling raised the bar with our Original Black & Tan.","ibu":42,"name":"Yuengling Black and Tan","state":"Pennsylvania","website":"http://www.yuengling.com"},{"abv":5.757796564801362,"category":"North American Ale","city":"Holland","coordinates":[42.7875,-86.1089],"country":"United States","ibu":1,"name":"Overcast Ale","state":"Michigan"},{"abv":12.05925920259913,"address":"50 East Washington Street","category":"North American Ale","city":"Petaluma","coordinates":[38.2362,-122.64],"country":"United States","ibu":16,"name":"Red Rooster","state":"California"},{"abv":9.476900524467235,"address":"8280-A Mira Mesa Boulevard","category":"North American Ale","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":65,"name":"Mesa Pale Ale","state":"California"},{"abv":0.08405373747642608,"address":"PO Box 316","category":"North American Ale","city":"Fulton","coordinates":[38.498,-122.78],"country":"United States","ibu":105,"name":"Baritone Red","state":"California"},{"abv":2.9976170166089156,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[37.8806,-122.3],"country":"United States","ibu":91,"name":"IPA","state":"California"},{"abv":5.1999998093,"address":"Kuli vart 7","category":"German Ale","city":"Klaipda","country":"Lithuania","ibu":56,"name":"Baltas Alus"},{"abv":7.5,"address":"Chausse Brunehault 37","city":"Montignies-sur-Roc","coordinates":[50.3705,3.7263],"country":"Belgium","ibu":45,"name":"Blonde","state":"Hainaut"},{"abv":5.678570333804118,"address":"611 North Pine","category":"North American Ale","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":84,"name":"Imperial Pale","state":"Washington"},{"abv":11.761506192524248,"address":"871 Beatty Street","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":40,"name":"Red Truck Lager","state":"British Columbia"},{"abv":8.5,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Our Trippel Belgian Style Ale (pronounced triple) opens with a bold blast of hops that slowly gives way to the fruity esters implied by our Belgian yeast strain. The Three Graces hand-painted on the label are Zeus’s daughters Aglaia (splendor), Euphrosyne (mirth) and Thalia (good cheer). In the Belgian tradition of brewing singles, doubles and triples, Trippel is the strongest with the longest fermentation. Remarkably smooth and complex, our bottle-conditioned Trippel is spiced with a trace of coriander.","ibu":82,"name":"New Belgium Trippel Belgian Style Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":5.4000000954,"address":"2501 Southwest Boulevard","category":"Irish Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"The intense flavors of dark-roasted malt in Boulevard’s rendition of the classic English porter are perfectly balanced by a generous and complex hop character. Bully! Porter’s robust nature makes it the ideal companion to a variety of foods, from seafood to chocolate.","ibu":0,"name":"Bully! Porter","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":9,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":64,"name":"Seriously Bad Elf","state":"Oxford"},{"abv":12.307891058821252,"address":"237 Joseph Campau Street","category":"German Ale","city":"Detroit","coordinates":[42.3372,-83.0186],"country":"United States","ibu":99,"name":"Wheat","state":"Michigan","website":"http://www.atwaterbeer.com"},{"abv":13.811818496774276,"address":"1101 North Water Street","category":"North American Ale","city":"Milwaukee","coordinates":[43.0448,-87.9114],"country":"United States","ibu":63,"name":"Pale Ale","state":"Wisconsin"},{"abv":7.9095614201975595,"category":"North American Ale","city":"Madison","coordinates":[43.0785,-89.382],"country":"United States","ibu":25,"name":"Shakedown Nut Brown","state":"Wisconsin"},{"abv":13.43536781631422,"address":"3191 Golf Road","city":"Delafield","coordinates":[43.0525,-88.3663],"country":"United States","ibu":15,"name":"Pils","state":"Wisconsin"},{"abv":5.0227184799952855,"category":"North American Ale","city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":53,"name":"Angel Amber","state":"Colorado"},{"abv":1.6429674779767445,"address":"Rue Guinaumont 75","city":"Ellezelles","coordinates":[50.7428,3.6875],"country":"Belgium","ibu":35,"name":"La Quintine Ambrée / Amber","state":"Hainaut"},{"abv":8.388733697772903,"address":"Lenniksebaan 257","category":"Belgian and French Ale","city":"Vlezenbeek","coordinates":[50.818,4.2307],"country":"Belgium","ibu":57,"name":"Pêche / Pecheresse","state":"Vlaams Brabant"},{"abv":1.5720686435697884,"city":"Niles","coordinates":[41.1828,-80.7654],"country":"United States","ibu":9,"name":"Verich Gold","state":"Ohio"},{"abv":8.612297722906742,"address":"729 Q Street","category":"North American Ale","city":"Lincoln","coordinates":[40.8155,-96.7105],"country":"United States","ibu":52,"name":"Third Stone Brown","state":"Nebraska"},{"abv":5,"address":"Innerleithen EH44 6PW","city":"Innerleithen","coordinates":[55.619,-3.0636],"country":"United Kingdom","ibu":107,"name":"Bear Ale","state":"Scotland"},{"abv":8.5395792140397,"address":"Vervierfontaine 100","city":"Jalhay-Vervifontaine","country":"Belgium","ibu":75,"name":"Bière du Lion","state":"Lige"},{"abv":12.554657889359554,"address":"Heinrich-Schtz-Strae 16","category":"German Lager","city":"Bad Köstritz","country":"Germany","ibu":99,"name":"Maibock","state":"Thüringen"},{"abv":2.8303582803829497,"address":"1401 Saint Andrew Street","city":"La Crosse","coordinates":[43.8344,-91.2362],"country":"United States","ibu":114,"name":"Old Skeezer Barley Wine","state":"Wisconsin"},{"abv":4,"address":"Quoyloo","category":"North American Ale","city":"Orkney","coordinates":[59.0697,-3.3135],"country":"United Kingdom","description":"Dragonhead is a legendary stout: dark, intense and fully-flavoured, it is our tribute to the Vikings and their cultural legacy in Orkney.\n\n\nOn the nose, this black stout has a smooth roasted malt aroma giving bitter chocolate, dark roasted coffee and Smokey notes balanced by hints of spicy Goldings hop.\n\n\nOn the palate, the dark roasted malts combine to give a rich, rounded palate with chocolate, toast and nut flavours, with a satisfying spicy hop finish.","ibu":51,"name":"Dragonhead Stout","state":"Scotland","website":"http://www.orkneybrewery.co.uk/"},{"abv":12.692030076672303,"address":"781 Old Highway 8 SW","category":"North American Ale","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":14,"name":"Old Eight Porter","state":"Minnesota"},{"abv":3.7999999523,"address":"910 Division St","category":"North American Ale","city":"Nashville","coordinates":[36.151,-86.7821],"country":"United States","description":"The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast.","ibu":35,"name":"Onward Stout","state":"Tennessee","website":"http://www.yazoobrew.com"},{"abv":4.6999998093,"address":"600 Brea Mall","category":"Belgian and French Ale","city":"Brea","coordinates":[33.9132,-117.889],"country":"United States","ibu":41,"name":"Nit Wit","state":"California","website":"http://www.bjsrestaurants.com/beer.aspx"},{"abv":5,"address":"98 Horseneck Rd","category":"North American Lager","city":"Westport","coordinates":[41.5713,-71.0571],"country":"United States","description":"Our Lager (Dortmund-style) is brewed with pale, Munich and Vienna malts and is moderately hopped with Hallertauer hops. Dortmund is an industrial, steel-making town and its lagers are hearty, easy drinking brewskies. The hops balance the malt but not overtly so. A great brew for the end of a hard day at work. Winner of the Gold Medal for Best European Style Pilsner at the 2000 Great American Beer Festival , Gold Medal at the 5th and 6th Great International Beer Festival, Silver Medals at the 7th Great International Beer Festival and 9th Great International Beer Festival, and Bronze Medal at the 8th Great International Beer Festival and 11th Great International Beer Festival!","ibu":119,"name":"Olde Buzzard Lager","state":"Massachusetts","website":"http://www.buzzardsbrew.com/"},{"abv":11.435645716680131,"address":"Kerkstraat 11","category":"Belgian and French Ale","city":"Itterbeek","coordinates":[50.8399,4.2475],"country":"Belgium","ibu":75,"name":"Timmermans Pêche","website":"http://www.anthonymartin.be/"},{"abv":10.5,"address":"215 1/5 Arch St.","category":"Belgian and French Ale","city":"Meadville","coordinates":[41.6372,-80.1549],"country":"United States","description":"This is our Gran Met Ale aged on intimate Passion Fruit, Raspberry and Michigan Tart Cherry. Lightly spiced with passion. Light Reddish hue and with a alcohol strength of 10% and nicely carbonated in the bottle. \n\n\nAgain Bottle Conditioned and Fermented. \n\n\nEnjoy a couple and have your own Voodoo Love Child later!!!","ibu":66,"name":"Voodoo Love Child","state":"Pennsylvania","website":"http://www.voodoobrewery.com/"},{"abv":5.4000000954,"address":"225 Heritage Ave","category":"Irish Ale","city":"Portsmouth","coordinates":[43.0325,-70.7948],"country":"United States","description":"This hearty, mahogany colored ale is brewed to evoke the dark, full-bodied ales that were a favorite of dockworkers and warehousemen (hence the name “Porter”) in 19th century London. It is a good bet that when Dickens’ Mr. Pickwick sat down for a pint, we would have been drinking an ale much like our Robust Porter.This is a smooth and very drinkable beer, characterized by its well-balanced malt and hops, plus subtle notes of coffee and chocolate.","ibu":6,"name":"Robust Porter","state":"New Hampshire","website":"http://www.smuttynose.com/"},{"abv":4.5,"address":"701 Galveston Ave","category":"German Lager","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"Ugly Pug is a schwarzbier, or black lager. But the real story is its name. Fritz saw his mother-in-law’s pug, Oscar, lounging in a chair and he (Fritz) shouted, “What an ugly pug!” Everyone laughed. Your’re right – they were drinking a test batch that night.","ibu":76,"name":"Ugly Pug","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":10.5,"address":"1075 East 20th Street","category":"North American Ale","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":117,"name":"Sierra Nevada Imperial Stout","state":"California","website":"http://www.sierranevada.com/"},{"abv":4.265981458828342,"address":"471 Kalamath Street","category":"Irish Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","description":"Awesome Porter! Smooth, the vanilla makes this beer very drinkable. Enjoy!!","ibu":5,"name":"Remarkable Vanilla Porter","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":6.5999999046,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"Generous portions of roasted barley, black and chocolate malts which leave \"coffee\" overtones lingering on the palate.","ibu":63,"name":"Black Heart Stout","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":6.152075712554398,"address":"206 W. Pratt St.","category":"British Ale","city":"Baltimore","coordinates":[39.2866,-76.6182],"country":"United States","ibu":117,"name":"Oliver ESB","state":"Maryland","website":"http://www.thewharfrat.com"},{"abv":7,"address":"17700 Boonville Rd","category":"North American Ale","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","description":"Hop Ottin' IPA is as hoppy as they come. The name means \"hard working hops,\" in Boontling, and that tells it all. Generous additions of high-alpha Pacific Northwest hops added during a vigorous boil, plus traditional dry hopping, with whole hop cones, give this ale a delicious citrus aroma, and an intense hoppy bite. This IPA is a hop lover's dream.","ibu":88,"name":"Hop Ottin IPA","state":"California","website":"http://avbc.com/"},{"abv":4.3000001907,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"\"Michelob Light is a full-flavored and rich-tasting light lager offering a malty sweetness and aromatic hop profile\";\"0","ibu":10,"name":"Michelob Light","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":2.54783587679826,"address":"2320 SE OSU Drive","category":"North American Ale","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","description":"Oregon Golden Ale is the original Rogue brew dating back to 1988 and the days of the old Ashland brewpub location (which was destroyed by a flood several years ago). Deep golden in color with a rich malty aroma. Delicately smooth and crisp flavor and an herbal finish. Oregon Golden Ale is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops. Oregon Golden Ale is available in a 22-ounce bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft.","ibu":46,"name":"Oregon Golden Ale","state":"Oregon","website":"http://www.rogue.com"},{"abv":5,"address":"514 South Eleventh Street","category":"North American Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our English-style pale ale is a medium-bodied \n\namber beer. Light, malty flavors combine with aromatic \n\nhops for a beer that is thirst quenching and easy \n\nto drink. One of our most popular beers.","ibu":13,"name":"Capitol Premium Pale Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.5,"address":"563 Second Street","category":"Irish Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep toffee color with rich roasty and subtle hop aroma. Chocolate flavors dominate the palate and interact with back-end sweetness.","ibu":19,"name":"General Pippo's Porter","state":"California","website":"http://www.21st-amendment.com/"},{"abv":14.329800108846538,"category":"Irish Ale","city":"Saint Paul","coordinates":[44.9442,-93.0861],"country":"United States","ibu":98,"name":"Piedmont Porter","state":"Minnesota"},{"abv":4.9000000954,"address":"4615-B Hollins Ferry Road","category":"North American Ale","city":"Baltimore","coordinates":[39.2308,-76.6751],"country":"United States","ibu":75,"name":"Gold Ale","state":"Maryland","website":"http://www.ccbeer.com/"},{"abv":8.1272559288636,"city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":102,"name":"Cinco de Mayo Cerveza Jalapeño","state":"Wisconsin"},{"abv":10.151512107313149,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":20,"name":"Old 420 Wheat Wine","state":"Illinois"},{"abv":11.451019796837507,"address":"2201 South Fort Apache Road","category":"North American Ale","city":"Las Vegas","coordinates":[36.1476,-115.298],"country":"United States","ibu":2,"name":"Stout","state":"Nevada"},{"abv":1.2375015515438736,"address":"223 Reindollar Avenue","city":"Marina","coordinates":[36.6802,-121.804],"country":"United States","ibu":98,"name":"Ironside Best","state":"California"},{"abv":5.852085962134225,"address":"200 East Michigan Avenue","category":"North American Ale","city":"Kalamazoo","coordinates":[42.2936,-85.5778],"country":"United States","ibu":102,"name":"India Pale Ale","state":"Michigan"},{"abv":12.410297741702918,"category":"British Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":25,"name":"old gak strong ale","state":"Wisconsin"},{"abv":5.4000000954,"address":"540 Clover Lane","category":"North American Ale","city":"Ashland","coordinates":[42.1844,-122.663],"country":"United States","description":"Available in 12 oz. cans and kegs. A West-Coast-style pale ale balancing plenty of hops with a malty backbone.","ibu":7,"name":"Pale Ale","state":"Oregon","website":"http://www.calderabrewing.com"},{"abv":7,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"India Pale Ale style well suited for Hemingway-esque trips to the Upper Peninsula. American malts and enormous hop additions give this beer a crisp finish and incredible floral hop aroma.","ibu":83,"name":"Two Hearted Ale","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.8000001907000005,"address":"30 Germania Street","category":"German Lager","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"Bold and rich, with a touch of holiday spice\n\nThe first thing one notices in a Samuel Adams® Winter Lager is its color: the deep brown of winter. Then comes the magical aroma which promises something special on the tongue. The warm aroma of cinnamon and ginger which blends with the roasty sweetness of the malted barley and hint of citrus from the orange peel. And after that first sip the promise is fulfilled. On the palate Samuel Adams® Winter Lager is rich and full bodied, robust and warming, a wonderful way to enjoy the cold evenings that come with this season.","ibu":103,"name":"Samuel Adams Winter Lager","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":8.848765211528004,"address":"471 Kalamath Street","category":"North American Ale","city":"Denver","coordinates":[39.7236,-105.001],"country":"United States","ibu":48,"name":"Avalanche Amber","state":"Colorado","website":"http://www.breckbrew.com/"},{"abv":5.3000001907,"address":"901 SW Simpson Avenue","category":"British Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Standing alone, distant from the Three Sisters mountains nestled to the north, Bachelor Butte was originally called \"Brother Jonathan\" and then simply \"The Bachelor\" before becoming widely known today as Mt. Bachelor.","ibu":110,"name":"Bachelor ESB","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":14.880669831122468,"city":"Walnut Creek","coordinates":[37.8855,-122.033],"country":"United States","ibu":80,"name":"Best Bitter","state":"California"},{"abv":12.859722420360779,"address":"4301 Leary Way NW","city":"Seattle","coordinates":[47.6592,-122.366],"country":"United States","ibu":15,"name":"Drawbridge Blonde","state":"Washington"},{"abv":5.1999998093,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"Discover Deschutes Brewery’s intriguing amber ale, our Ode to Mother Earth. Experience its mellow malt profile intertwined with subtly surprising hop flavors. Green Lakes Organic Ale is brewed with five types of 100% organic malted barley and balanced with Liberty and Salmon-Safe Sterling hops. Easy to drink. Easy on the Environment. Downright Delicious. Who knew celebrating Mother Earth could taste so good.\n\n\nAfter working with Oregon Tilth for nearly six months, Deschutes Brewery received organic certification for its 50 barrel brew house and can now brew tasty organic ales for year-round enjoyment.\n\n\nFish need cool clean water. So do you. That’s why we sourced Salmon-Safe certified Sterling hops for our first organic beer. The way these flavorful, rich hops are grown makes sure that streams are shaded and there is not runoff to nearby waterways. That way the rivers stay cool and clean for migrating salmon. Not only is our Green Lakes beer organic, it helps protect our rivers as well.","ibu":91,"name":"Green Lakes Organic Ale","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":5.5,"address":"811 Edward Street","category":"North American Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"A beer that would make the English jealous! This true English Pale Ale is rich and fruity, yet finishes crisp. You'll love the copper amber color and medium body.","ibu":43,"name":"Saranac Pale Ale","state":"New York","website":"http://www.saranac.com"},{"abv":3.2200000286,"address":"RR 1 Box 185","category":"North American Lager","city":"Tannersville","coordinates":[41.0523,-75.3354],"country":"United States","description":"Our lightest brew, this ale has a lower alcohol content than other Barley Creek brews. The Munich malt and Saaz and Hallertau hops give it a distinct German profile. Refreshing with a clean, dry finish.","ibu":72,"name":"Cliffhanger Light Ale","state":"Pennsylvania","website":"http://www.barleycreek.com/"},{"abv":9,"address":"2516 Market Avenue","category":"North American Ale","city":"Cleveland","coordinates":[41.4844,-81.7042],"country":"United States","description":"A Russian Imperial Stout with a hearty malt body and bold hop flavor.","ibu":91,"name":"Blackout Stout","state":"Ohio","website":"http://www.greatlakesbrewing.com"},{"abv":4.8000001907000005,"address":"9750 Indiana Parkway","category":"German Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":32,"name":"Drunk Monk Hefeweizen","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":1.2575622141623966,"address":"117 South First Street","category":"German Lager","city":"LaConner","coordinates":[48.3917,-122.495],"country":"United States","ibu":68,"name":"LaConner Pilsener","state":"Washington","website":"http://www.insidelaconner.com/"},{"abv":5,"address":"310 Perry Street","category":"North American Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"If you are looking for a straight shooting quaffable beer with plenty of hops, this is it. Straw colored from plump North American 2-row malted barley and deliciously hopped with Cascades from the USA, any patriot can enjoy this beer. Cascade hops have a pleasant taste and fresh smell best described as florally or mildly citrusy. A nice balance is struck between the malt and hops. So how about it Yank? Put that capitalism to work and buy some today!","ibu":46,"name":"Back Road American Pale Ale","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":4,"address":"16 Church Street PO Box 684","category":"Other Style","city":"Queenstown","coordinates":[-45.0331,168.661],"country":"New Zealand","description":"An old fashioned style ginger beer brewed naturally with honey, malt, lemon and fresh root ginger, leaving you with a refreshing crisp zesty flavour.","ibu":73,"name":"Ginger Tom","website":"http://www.thedux.co.nz/"},{"abv":12.300000191,"address":"1214 East Cary St","category":"North American Ale","city":"Richmond","coordinates":[37.5356,-77.4338],"country":"United States","description":"Malty, rich, complex with a notable hops balance. Aged for 90 days. For optimal taste allow the beer to warm on your table or from the heat of your hand around the glass. ½ pints only. 12.3 abv! Offered downstairs at the Taphouse or Pub Bar/ Dining Room only.","ibu":32,"name":"Richbrau Barleywine","state":"Virginia","website":"http://www.richbrau.com/"},{"abv":5.1999998093,"category":"Other Style","country":"United Kingdom","description":"The definitive winter beer and a longtime favourite, Winter Warmer has been making annual appearances on the bar every winter since the 1950s. A rich, ruby-coloured beer, luscious and fullbodied, with a splendid nutty flavour.","ibu":84,"name":"Young's Winter Warmer","website":"http://www.bombardier.co.uk/bombardier"},{"abv":10,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"Our 100th batch, brewed for the enjoyment of the brewers, but popular demand forced us to release it commercially. This malty, yet light bodied ale has a massive hop bitterness. Most enjoyable in a comfortable chair in front of a roaring fire.","ibu":38,"name":"Nøgne Ø #100","state":"Lunde","website":"http://nogne-o.com/"},{"abv":5.0999999046,"address":"611 North Pine","city":"Tacoma","coordinates":[47.256,-122.473],"country":"United States","ibu":113,"name":"Tacoma Brew","state":"Washington"},{"abv":5.9000000954,"address":"13, rue Pasteur","city":"Bnifontaine","coordinates":[50.4852,2.8306],"country":"France","ibu":44,"name":"Castelain St.Amand French Country Ale"},{"abv":12.565650104305304,"address":"Tbinger Strae 46","city":"Stuttgart","country":"Germany","ibu":39,"name":"Sanwald Dunkelweizen","state":"Baden-Wrttemberg"},{"abv":5.1999998093,"address":"Marktplatz 1","city":"Alpirsbach","coordinates":[48.3457,8.4031],"country":"Germany","ibu":59,"name":"Spezial","state":"Baden-Wrttemberg"},{"abv":4.8000001907000005,"address":"Munketoft 12","city":"Flensburg","coordinates":[54.779,9.4355],"country":"Germany","ibu":3,"name":"Pilsener","state":"Schleswig-Holstein","website":"http://www.flens.co.uk/"},{"abv":9,"address":"455 North Main Street","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":100,"name":"Brother Thelonious","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":8,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Brewed in the Franco-Belgian tradition of strong golden ales. Spicy and peppery with a gentle hop bouquet and the beguiling influence of wild yeast.","ibu":38,"name":"Oro de Calabaza","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":9,"address":"St Lievensplein 16","city":"Sint-Lievens-Esse","coordinates":[50.8564,3.8845],"country":"Belgium","ibu":113,"name":"Buffalo Belgian Stout","state":"Oost-Vlaanderen"},{"abv":4.8000001907000005,"address":"1777 Alamar Way","category":"North American Ale","city":"Fortuna","coordinates":[40.5793,-124.153],"country":"United States","description":"Eel River Brewing Company, brewers of California's first Certified Organic Ale, proudly brings you our Organic Amber Ale. Unique in flavor and purity, this medium bodied beer has a hoppy bouquet and a distinctive rich taste with a caramel-like sweetness that is balanced with a liberal dose of certified organic Pacific Gems and Hallertau hops, imported from New Zealand. Pure taste, pure ingredients, pure good.","ibu":101,"name":"Certified Organic Amber Ale","state":"California","website":"http://eelriverbrewing.com/"},{"abv":8.6000003815,"address":"195 Taylor Way","category":"North American Ale","city":"Blue Lake","coordinates":[40.879,-123.993],"country":"United States","ibu":101,"name":"Double India Pale Ale","state":"California"},{"abv":5.8113394580609,"address":"7474 Towne Center Parkway #101","category":"North American Ale","city":"Papillion","coordinates":[37.244,-107.879],"country":"United States","ibu":19,"name":"India Pale Ale","state":"Nebraska"},{"abv":7.330167868185308,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":106,"name":"White","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.875460372923675,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":15,"name":"Abbey Brown Ale / Pater","state":"Antwerpen"},{"abv":8.538270104143427,"address":"Landsberger Strae 35","city":"München","country":"Germany","ibu":56,"name":"Pils","state":"Bayern","website":"http://www.augustiner-braeu.de"},{"abv":11.66011598305938,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":20,"name":"Dry Stout","state":"Nebraska"},{"abv":3.599059355877726,"address":"18 East 21st Street","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":16,"name":"Black Sheep Espresso Stout","state":"Nebraska"},{"abv":5,"address":"2105 N. Atherton St.","category":"North American Ale","city":"State College","coordinates":[40.8098,-77.9101],"country":"United States","description":"An American pale ale brewed with Centennial hops and hopbacked with Cascade, it's a real refresher that has a spicy, citrus aroma and a slightly nutty malt flavor. ABV 5.0%","ibu":43,"name":"Mt. Nittany Pale Ale","state":"Pennsylvania","website":"http://www.ottospubandbrewery.com/index.php"},{"abv":7.317696482134236,"category":"German Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":42,"name":"Oktoberfest Ale","state":"Nebraska"},{"abv":0.7334633903439991,"address":"61 Brookline Avenue","category":"North American Ale","city":"Boston","coordinates":[42.347,-71.0989],"country":"United States","ibu":2,"name":"Boston Red","state":"Massachusetts"},{"abv":13.94593346519931,"address":"580 North Nimitz Highway","category":"North American Ale","city":"Honolulu","coordinates":[21.3069,-157.858],"country":"United States","ibu":77,"name":"Ehu Ale","state":"Hawaii"},{"abv":8.520901662928178,"address":"901 Gilman Street","category":"North American Lager","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":108,"name":"Amber Lager","state":"California"},{"abv":4.735106906147932,"address":"1800 North Clybourn Avenue","category":"North American Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":56,"name":"Kilgubbin Irish Ale","state":"Illinois"},{"abv":3.5745779706795853,"address":"650 Fifth Street #403","category":"North American Lager","city":"San Francisco","coordinates":[37.7756,-122.398],"country":"United States","ibu":64,"name":"Space-Aged Lager","state":"California"},{"abv":5.1999998093,"category":"British Ale","city":"Abingdon","coordinates":[51.6701,-1.2850000000000001],"country":"United Kingdom","ibu":68,"name":"Old Speckled Hen","state":"Oxford"},{"abv":6,"address":"4509 SE 23rd Avenue","city":"Portland","coordinates":[45.4901,-122.643],"country":"United States","ibu":46,"name":"Golden Rose","state":"Oregon"},{"abv":5.1999998093,"address":"40 Van Dyke St","category":"Other Style","city":"Brooklyn","coordinates":[40.674,-74.0118],"country":"United States","description":"Our most basic interpretation of what makes beer great -- sweetness from the barley malt and active spice from the hops. It is hazy golden in color, with a sweet honey aroma, and a dry, crisp flavor","ibu":43,"name":"Sweet Action","state":"New York","website":"http://www.sixpointcraftales.com/"},{"abv":4.9899997711,"address":"323-C Cross Street","category":"Irish Ale","city":"Little Rock","coordinates":[34.7473,-92.2839],"country":"United States","description":"This medium bodied porter has notes of roasted and chocolate malts, making it a perfect balance of sweet and bitter. Generous hops give this brew a dry finish.","ibu":27,"name":"Paradise Porter","state":"Arkansas","website":"http://www.diamondbear.com/"},{"abv":8.1999998093,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Chaotic yet hypnotic, Mayhem is a deliberate Double IPA, brewed and conditioned with a special Belgian yeast that contributes complexity and spice. Abundant American hops offer grapefruit, pine, must and mint, which play off the fullness and sweetness of pale malts then provide a biting yet enticing finish.\n\n\nMayhem Double IPA accents the complex spice combinations found in Thai, Indian, Cajun, Morrocan, Mexican and Southwest American cuisines as well as BBQ marinades, dry rubs and sauces.\n\n\nMayhem creates MAYHEM.","ibu":59,"name":"Mayhem Belgian-style Double IPA","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":6.4000000954,"address":"2201 Arapahoe Street","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Think of it as a hefeweizen’s older brother. A hearty mix of wheat and dark German barley malts gives it a medium body and muddy brown hue, while our proprietary yeast strain provides the signature notes of banana and clove. If you like wheat beers, come to the Dunkel side. You won’t be disappointed. Just don’t put any lemon in it.","ibu":74,"name":"Great Divide Dunkel Weiss","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5,"address":"4366 Huntington Dr","category":"British Ale","city":"Flagstaff","coordinates":[35.2156,-111.59],"country":"United States","description":"From Arizona’s high country comes Apache Trout Stout, a robust, full bodied, top fermented ale. Our brewers use mountain pure water, select roasted barley, hops and yeast to create this traditional style. Savor the balanced, roasted malt flavor and the lingering sweetness that makes this dry stout a cool weather treat.","ibu":10,"name":"Apache Trout Stout","state":"Arizona","website":"http://www.mogbrew.com/"},{"abv":8.1000003815,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":116,"name":"Pozharnik","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5999999046,"address":"725 Fourth Street","category":"North American Ale","city":"Santa Rosa","coordinates":[38.4418,-122.712],"country":"United States","description":"Wouldn't it suck to have a job where nobody likes you? And, regardless of your name, people always call you Rita, as in \"Lovely Rita?\" Sometimes people just shorten it to the simpler \"meter maid.\" The funny thing about that is the Webster dictionary defines a \"meter maid\" as \"a female member of a police department who is assigned to write tickets for parking violations.\" You have to wonder how the male \"meter maids\" feel about that! Parking Violation is an American style pale ale using lots of American hops, lots of quarters, and several trips back and forth to the parking lot. So, remember to drink responsibly and feed your meter.","ibu":115,"name":"Parking Violation","state":"California","website":"http://www.russianriverbrewing.com/"},{"abv":8.566016490733627,"address":"6 N. Reamstown Road","category":"North American Ale","city":"Reamstown","coordinates":[40.2118,-76.1232],"country":"United States","description":"A translucent amber-red ale with a moderately high IBU of 36. Bittering hops include Kent Golding and Cascade. A generous amount of Kent Golding is used in the dry hopping to further enhance the aroma.","ibu":92,"name":"Union Barrel Works Pale Ale","state":"Pennsylvania","website":"http://www.unionbarrelworks.com/"},{"abv":4.5,"address":"1249-A Wicker Drive","city":"Raleigh","coordinates":[35.8104,-78.6179],"country":"United States","description":"Our Kölsch is a refreshingly pale German style Ale. It is cold fermented and cold conditioned to achieve a beautiful balance between biscuit malt flavors and floral hop notes. It is light bodied and finishes somewhat dry to enhance it's easy drinking nature.","ibu":79,"name":"Angry Angel","state":"North Carolina","website":"http://www.bigbossbrewing.com"},{"abv":6.742397017607866,"address":"375 Water Street","category":"Other Style","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"An intriguing fruit beer brewed with fresh sour cherries.\n\n\nOur Sour Cherry Ale is inspired by the centuries old Belgian tradition of brewing beer with cherries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Montmorency cherries from a local orchard in the Fraser Valley. The result is a most intriguing beer with an elegant cherry perfume, a tart, fruity flavour, and a subtle almondy finish.","ibu":52,"name":"Sour Cherry Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":6.5,"address":"Eindhovenseweg 3","category":"Belgian and French Ale","city":"Berkel-Enschot","coordinates":[51.544,5.1285],"country":"Netherlands","ibu":4,"name":"La Trappe Dubbel","website":"http://www.latrappe.nl/"},{"abv":6.5,"address":"1195-A Evans Avenue","category":"North American Ale","city":"San Francisco","coordinates":[37.7387,-122.381],"country":"United States","description":"No lightweight, Big Daddy I.P.A tips the scales with a huge hop flavor and a clean, dry finish that leaves the scene without a trace.","ibu":0,"name":"Big Daddy IPA","state":"California"},{"abv":9.5,"address":"De Kluis 1","city":"Achel","coordinates":[51.2986,5.4896],"country":"Belgium","ibu":24,"name":"Trappist Extra","state":"Limburg"},{"abv":2.9971085436333214,"address":"9832 14th Avenue SW","category":"North American Ale","city":"Seattle","coordinates":[47.5143,-122.353],"country":"United States","ibu":69,"name":"Driftwood Ale","state":"Washington"},{"abv":6.6500000954,"address":"404 South Third Street","city":"Mount Vernon","coordinates":[48.419200000000004,-122.335],"country":"United States","ibu":4,"name":"Red Card Lager","state":"Washington"},{"abv":5,"address":"1514 NW Leary Way","category":"North American Ale","city":"Seattle","coordinates":[47.6637,-122.377],"country":"United States","ibu":115,"name":"Islander Pale Ale","state":"Washington"},{"abv":9.057148469308508,"category":"German Lager","city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":107,"name":"Herbstbier"},{"abv":8,"address":"1800 West Fulton Street","category":"North American Lager","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":11,"name":"Demolition","state":"Illinois"},{"abv":8,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":48,"name":"Amber","state":"Namur"},{"abv":9.1000003815,"address":"341 SW Second Street","city":"Corvallis","coordinates":[44.5613,-123.261],"country":"United States","ibu":82,"name":"Bourbon Barrel Porter","state":"Oregon"},{"abv":5,"address":"Woesten","city":"Woesten","coordinates":[50.9229,2.7518000000000002],"country":"Belgium","ibu":6,"name":"Witte","state":"West-Vlaanderen","website":"http://www.struisebrouwers.be/"},{"abv":5.5,"address":"Brewery Lane","category":"North American Ale","city":"Hook Norton","coordinates":[51.9966,-1.4922],"country":"United Kingdom","ibu":18,"name":"Twelve Days","state":"Oxford"},{"abv":8.204234709737861,"city":"Sturgeon Bay","coordinates":[44.8342,-87.377],"country":"United States","ibu":28,"name":"Golden Rail","state":"Wisconsin"},{"abv":3.4160362662233847,"category":"British Ale","city":"Dublin","coordinates":[53.3441,-6.2675],"country":"Ireland","ibu":33,"name":"1798 Revolution"},{"abv":2.7155775837439036,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":12,"name":"Old Glory American Pale Ale","state":"Wisconsin"},{"abv":12.32863622153375,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":107,"name":"Czech Pilsner","state":"Wisconsin"},{"abv":13.033874360304612,"category":"North American Lager","city":"Denmark","coordinates":[44.3478,-87.8273],"country":"United States","ibu":100,"name":"Valhalla Ale","state":"Wisconsin"},{"abv":1.4930004506558947,"city":"Hartford","coordinates":[43.3178,-88.379],"country":"United States","ibu":71,"name":"Leicht","state":"Wisconsin"},{"abv":11.462490402625882,"address":"1800 North Clybourn Avenue","category":"British Ale","city":"Chicago","coordinates":[41.9137,-87.6543],"country":"United States","ibu":106,"name":"PMD Mild Ale","state":"Illinois"},{"abv":4.9000000954,"address":"Porter Tun House","category":"British Ale","city":"Luton","coordinates":[52.1357,-0.468],"country":"United Kingdom","ibu":77,"name":"Mackeson XXX Stout","state":"Bedford"},{"abv":14.932165863954921,"address":"200 Dousman Street","category":"German Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":28,"name":"Befuddelator Doppelbock","state":"Wisconsin"},{"abv":2.650630960031953,"address":"529 Grant St. Suite B","category":"North American Ale","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","ibu":70,"name":"Irish Setter Red Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5,"address":"500 Williams Street","city":"Hawkes Bay","coordinates":[-39.6275,176.854],"country":"New Zealand","ibu":29,"name":"Witbier"},{"abv":1.1549828311876642,"address":"16 North Brown Street","city":"Rhinelander","coordinates":[45.638,-89.4127],"country":"United States","ibu":13,"name":"Munich Helle","state":"Wisconsin"},{"abv":6,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":37,"name":"Black Strap Stout","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":3.831118075601294,"address":"2029 Old Peshtigo Road","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":98,"name":"Gold Rush (discontinued)","state":"Wisconsin"},{"abv":14.293774978520306,"address":"1080 West San Marcos Boulevard","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":107,"name":"Cinnabarr","state":"California"},{"abv":8.95810905433034,"address":"PO Box 30161","category":"North American Lager","city":"Nairobi","coordinates":[-1.2833,36.8167],"country":"Kenya","ibu":92,"name":"Tusker Premium Lager"},{"abv":6.539999961899999,"address":"1735 19th Street #100","category":"North American Ale","city":"Denver","coordinates":[39.7553,-104.997],"country":"United States","ibu":81,"name":"Oatmeal Stout","state":"Colorado"},{"abv":7.3000001907,"address":"500 Commercial Street","category":"German Lager","city":"Manchester","coordinates":[42.9945,-71.4674],"country":"United States","ibu":31,"name":"Weathertop Doppelbock","state":"New Hampshire"},{"abv":10,"address":"5945 Prather Road","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":85,"name":"Barley Wine Ale","state":"Washington"},{"abv":8.3999996185,"address":"1680-F East Waterloo Rd.","category":"Other Style","city":"Akron","coordinates":[41.0247,-81.4676],"country":"United States","description":"There's a Place just south they call Frog's Hollow, with cauldrons afire in Fall, and they only speak in whispers of the name. There's a brewery they say who has the secret, of spices picked just right. With a crying shout, they'll knock it out, and hand you this Frog's delight.","ibu":83,"name":"Frog's Hollow Double Pumpkin Ale","state":"Ohio","website":"http://www.hoppinfrog.com/"},{"abv":8.5,"address":"2501 Southwest Boulevard","category":"North American Ale","city":"Kansas City","coordinates":[39.0821,-94.5965],"country":"United States","description":"Double-Wide I.P.A. uses Zeus and Magnum hops for both bittering and aroma, with Ahtanum hops added solely for aroma. Two additional dry hopping regimens employ Ahtanum, Centennial, and Chinook varietals. The resulting beer – not surprisingly – has a hop forward aroma, redolent of peach and apricot. The assertive flavor bursts forth with citrus notes of blood orange and lemon, a caramel malt backbone serves to balance the intensity of the hops. There is little restraint in the flavor of this beer; it is certainly not for the pedestrian palate.","ibu":83,"name":"Double Wide I.P.A.","state":"Missouri","website":"http://www.blvdbeer.com/"},{"abv":4.727902848598312,"address":"2800 North Reading Road","category":"North American Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"Made exclusively for the Lancaster Dispensing Company.","ibu":3,"name":"Market Alley","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":5.3000001907,"address":"303 Main Street","category":"German Lager","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Mama’s Little Yella Pils - Our upcoming new canned good is a small-batch version of the beer that made Pilsen, Czechoslovakia famous. Mama’s is made with hearty amounts of pale malt, German specialty malts, and a blend of traditional (Saaz) and 21st century Bavarian hops. Our first canned lager, it’s also fermented at cool temperatures with a German yeast.\n\n\nThis tasteful reality Czech is the perfect antidote for the watered-down versions of pilsner clogging America’s shelves. And Mama’s gentle hopping (about 35 IBUs) and low ABV (just 5.3%) mean we’re finally honoring consumer requests for a delicious but less-challenging beer. (Hey, we like a good low-dose session beer, too.) Look for our Gold Metal Winner on US shelves in March.\n\n\nSadly, the Feds rejected our “Take Two and Call Us in the Morning” line on the can.","ibu":30,"name":"Mama's Little Yella Pils","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":6,"address":"140 North Third Street","category":"North American Ale","city":"Chambersburg","coordinates":[39.939,-77.6566],"country":"United States","description":"Our signature brew that started it all. This beer is made with four different specialty malts including two foreign caramel malts, a pale malt, and a toasted malt. These malts impart a subtle toasted/sweet taste. This malty brew is than graced with floral and aroma hops which balance the maltiness of this brew and leaves behind a smooth finish on the palate. Top notch ingredients and a truly \"Honest\" taste makes this a seriously drinkable ale, unlike many other bitter American ales.","ibu":11,"name":"Truly Honest Ale","state":"Pennsylvania","website":"http://roypitz.com/"},{"abv":6.0999999046,"address":"165 Patchway Road","category":"North American Ale","city":"Duncansville","coordinates":[40.4234,-78.4339],"country":"United States","description":"Slightly Malty Amber Lager","ibu":83,"name":"Marzoni's Amber Lager","state":"Pennsylvania","website":"http://www.marzonis.com/"},{"abv":5.5,"address":"One Busch Place","category":"Other Style","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Our fall seasonal is a subtle, well-balanced ale, copper in color, offering rich, full flavors and aromas of pumpkin and spices.","ibu":21,"name":"Jack's Pumpkin Spice Ale","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":4.75,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste.","ibu":81,"name":"Abita Purple Haze","state":"Louisiana","website":"http://www.abita.com/"},{"abv":5,"address":"14600 East Eleven Mile Road","category":"North American Ale","city":"Warren","coordinates":[42.493,-82.9753],"country":"United States","description":"An Irish style red (amber) beer. Light in finish but bold in taste. Melanoidin malt is added for the red color and the spicy finish comes through from the Chinook hops.","ibu":110,"name":"Erik the Red","state":"Michigan"},{"abv":5.0999999046,"address":"St Peter's Hall","category":"Irish Ale","city":"Bungay","coordinates":[36.7282,-76.5836],"country":"United Kingdom","ibu":94,"name":"Old-Style Porter","state":"Suffolk"},{"abv":9.39052695908472,"address":"4133 University Way NE","category":"North American Ale","city":"Seattle","coordinates":[47.6576,-122.313],"country":"United States","ibu":17,"name":"Prime Time Pale Ale","state":"Washington","website":"http://www.bigtimebrewery.com/"},{"abv":5,"address":"Florhofstrasse 13","city":"Wdenswil","coordinates":[47.2311,8.6691],"country":"Switzerland","ibu":77,"name":"Hanf"},{"abv":10.000963339063007,"address":"65 North San Pedro","category":"North American Ale","city":"San Jose","coordinates":[37.3362,-121.894],"country":"United States","ibu":13,"name":"Ironwood Dark","state":"California"},{"abv":4.5,"address":"Gamle Rygene Kraftstasjon","category":"North American Ale","city":"Grimstad","country":"Norway","description":"A dark brown English ale, in which classic English malts meet the spicy hoppiness of the new world. Recommended serving temperature 8°C/45°F. Goes very well with ‘pub grub.’","ibu":67,"name":"Nøgne Ø Brown Ale","state":"Lunde","website":"http://nogne-o.com/"},{"abv":8,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":55,"name":"Obovoid Empirical Stout","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.8000001907000005,"address":"3115 Broad Street","category":"Belgian and French Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"Aged in large oak casks and refermented in the bottle, Calabaza Blanca is a Belgian Biere Blanche. Spiced with orange peel and corriander, you'll find it refreshingly tart, with a wonderfully dry finish.","ibu":20,"name":"Calabaza Blanca","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":8.642875519156428,"address":"123 East Doty Street","category":"North American Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":112,"name":"Landmark Gold","state":"Wisconsin"},{"abv":12.262679708040308,"city":"Eagle River","coordinates":[45.9172,-89.2443],"country":"United States","ibu":94,"name":"Blonde","state":"Wisconsin"},{"abv":4.8000001907000005,"address":"925 South Third Street","category":"North American Lager","city":"La Crosse","country":"United States","ibu":5,"name":"Lager Beer","state":"Wisconsin","website":"http://www.citybrewery.com/"},{"abv":11.415473837653833,"city":"Albuquerque","coordinates":[35.0845,-106.651],"country":"United States","ibu":47,"name":"Where The Helles Albuquerque","state":"New Mexico"},{"abv":2.5106072560300907,"address":"Steenweg op Mol 118","city":"Oud-Turnhout","coordinates":[51.3144,4.989],"country":"Belgium","ibu":89,"name":"Monk Pale Ale / Agnus Dei","state":"Antwerpen"},{"abv":4.4976445880253735,"address":"2711 West Superior Street","city":"Duluth","coordinates":[46.7611,-92.1319],"country":"United States","ibu":36,"name":"Old Man Winter Warmer 2000","state":"Minnesota"},{"abv":11.268482770163367,"address":"310 Perry Street","category":"British Ale","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","ibu":103,"name":"English Mild","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":11.206282539073928,"address":"2002 Broadway","category":"North American Ale","city":"Fort Wayne","coordinates":[41.0677,-85.1524],"country":"United States","ibu":9,"name":"Harry Baals Stout","state":"Indiana"},{"abv":13.273616189138052,"address":"175 Bloor Street East","category":"North American Lager","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":52,"name":"Golden","state":"Ontario"},{"abv":5.8000001907000005,"address":"7401 North La Cholla Boulevard","category":"North American Ale","city":"Tucson","coordinates":[32.3407,-111.015],"country":"United States","description":"The Granddaddy of Pale Ales, this style got its start as a special brew for English soldiers living in India. Our IPA is a medium bodied ale, with a light copper color characterized by an intense hop flavor, with a full flowery hop aroma and higher alcohol content.","ibu":29,"name":"Thunderhead IPA","state":"Arizona","website":"http://www.thundercanyonbrewery.com/"},{"abv":11,"category":"North American Ale","city":"Ingelmunster","coordinates":[50.9205,3.2541],"country":"Belgium","description":"Slightly dangerous beer - tastes like an 8% blonde, delivers like nothing else. A little tart around the edges, due to the higher alcohol content, but otherwise a pleasant strong pils taste : not too much hop on the palate.","ibu":67,"name":"Kasteel Blonde"},{"abv":7.8000001907000005,"address":"529 Grant St. Suite B","city":"Akron","coordinates":[41.0689,-81.5172],"country":"United States","description":"Spiced for the holidays with honey, cinnamon, ginger, nutmeg and Santa's secret recipe.","ibu":112,"name":"12 Dogs Christmas Ale","state":"Ohio","website":"http://www.thirstydog.com"},{"abv":5.8000001907000005,"address":"563 Second Street","category":"North American Ale","city":"San Francisco","coordinates":[37.7825,-122.393],"country":"United States","description":"Deep amber color. Subtle hop floral nose intertwined with sweet crystal malt aromas. Rich malt flavors supporting a slight bitterness finish.","ibu":0,"name":"North Star Red","state":"California","website":"http://www.21st-amendment.com/"},{"abv":0.815930604095767,"address":"4268 Second Street","category":"North American Ale","city":"Detroit","coordinates":[42.351,-83.0665],"country":"United States","ibu":57,"name":"Gold Rush Ale","state":"Michigan"},{"abv":9.708516340169535,"address":"Sinebrychoffinaukio 1","city":"Kerava","coordinates":[60.381,25.1102],"country":"Finland","ibu":54,"name":"Koff Special III"},{"abv":3.058291762566859,"address":"3945 Second Street South","category":"North American Ale","city":"Saint Cloud","coordinates":[45.5498,-94.2067],"country":"United States","ibu":18,"name":"Broad Ax Stout","state":"Minnesota"},{"abv":13.558158551648246,"category":"North American Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":1,"name":"Mudcat Stout","state":"Iowa"},{"abv":14.172842043662937,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":79,"name":"Pilsner","state":"Louisiana"},{"abv":5.5,"address":"1313 NW Marshall Street","category":"Irish Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":9,"name":"Bottle Conditioned Porter","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":6.5999999046,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":108,"name":"XXX English Ale","state":"Minnesota"},{"abv":7.831633949024073,"category":"North American Ale","city":"Red Oak","coordinates":[41.0117,-95.2272],"country":"United States","ibu":33,"name":"Stout","state":"Iowa"},{"abv":4.9000000954,"address":"195 Ottley Drive","category":"Other Style","city":"Atlanta","coordinates":[33.8087,-84.3813],"country":"United States","description":"Sweetwater Blue is a unique light bodied ale enhanced with a hint of fresh blueberries. This euphoric experience begins with an appealing blueberry aroma and finishes as a surprisingly thirst-quenching ale.","ibu":31,"name":"Blue","state":"Georgia","website":"http://www.sweetwaterbrew.com/"},{"abv":7.9000000954,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","description":"Paulaner Salvator, with its strong, typically malty flavour, is what you could call the \"original\" Paulaner. The bottom-fermented \"Doppelbock\" beer combines the finest hops and dark barley malt. The Paulaner monks used to drink Salvator as a food substitute during Lent. The most famous master brewer was Frater Barnabas, who took over the Paulaner monastery brewery in 1773. His original recipe remains practically unchanged to this day. In order to preserve the original, Paulaner registered the name \"Salvator\" with the patent office in 1896.\n\n\nSalvator:\n\n18.3% original wort; 7.9% alcohol; 70.6 kcal/100 ml","ibu":101,"name":"Salvator","website":"http://www.paulaner.com/"},{"abv":10.637935692749895,"address":"2840 Shawano Avenue","category":"North American Ale","city":"Green Bay","coordinates":[44.5534,-88.0977],"country":"United States","ibu":86,"name":"Amber","state":"Wisconsin"},{"abv":8.971190146601163,"category":"North American Ale","city":"Appleton","coordinates":[44.2619,-88.4154],"country":"United States","ibu":2,"name":"Adler Bräu Fox Classic River Ale","state":"Wisconsin"},{"abv":2.6980483974207203,"address":"Wontergemstraat 42","city":"Dentergem","coordinates":[50.9649,3.422],"country":"Belgium","ibu":83,"name":"All Saints Belgian Golden Ale","state":"West-Vlaanderen"},{"abv":0.15975118441031388,"address":"211 West 13th Avenue","city":"Denver","coordinates":[39.7369,-104.991],"country":"United States","ibu":57,"name":"Gael Force Scottish Export","state":"Colorado"},{"abv":10.116831772263927,"category":"North American Lager","city":"Saint Louis","coordinates":[38.647,-90.225],"country":"United States","ibu":95,"name":"Lake Shore Light","state":"Missouri"},{"abv":6.7059464242364815,"category":"North American Ale","city":"Strongsville","coordinates":[41.3145,-81.8357],"country":"United States","ibu":97,"name":"Sturgeon Stout","state":"Ohio"},{"abv":5,"address":"311 Tenth Street","category":"North American Lager","city":"Golden","coordinates":[39.7599,-105.219],"country":"United States","description":"Coors' Extra Gold Lager is a rich, full-flavored lager that has a deep golden color. Extra Gold Lager starts with the slow aging of its roasted malts, which are then combined with its other premium ingredients and slow-brewed to produce this exceptional, refined lager.","ibu":53,"name":"Coors Extra Gold Lager","state":"Colorado","website":"http://www.coors.com"},{"abv":0.6014240760865908,"address":"8280-A Mira Mesa Boulevard","category":"North American Ale","city":"San Diego","coordinates":[32.9147,-117.146],"country":"United States","ibu":90,"name":"Red","state":"California"},{"abv":12.820329823202366,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":93,"name":"Red Tail Ale","state":"California"},{"abv":14.06314344771023,"category":"German Ale","city":"Dallas","coordinates":[32.803,-96.7699],"country":"United States","ibu":118,"name":"Windmill Wheat Ale","state":"Texas"},{"abv":10.70658438582847,"category":"Irish Ale","city":"Bakersfield","coordinates":[35.3733,-119.019],"country":"United States","ibu":82,"name":"34th Street Porter","state":"California"},{"abv":3.2021908689608134,"address":"4201 Tonnelle Avenue","category":"North American Ale","city":"North Bergen","country":"United States","ibu":51,"name":"Hudson Pale Ale","state":"NJ","website":"http://www.njbeerco.com"},{"abv":8,"address":"3924 West Spruce Street Suite A","category":"Belgian and French Ale","city":"Tampa","coordinates":[27.9587,-82.5093],"country":"United States","description":"Guava Grove is a Saison which is fermented with guava. The guava adds sweetness and acidity to the prodigious fruity esters imparted by the warm fermentation temperatures of the Belgian yeast strain.","ibu":20,"name":"Guava Grove Ale","state":"Florida","website":"http://cigarcitybeer.com/"},{"abv":11,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"The Reserve Series romance all began with our first release of this limited-edition brew. Mirror Mirror, born of a double batch of Mirror Pond Pale Ale, is an inspired, barrel-aged barley wine layered with intriguing nuances. Explore this latest incarnation and enjoy its delicious complexity in every sip.","ibu":109,"name":"Mirror Mirror","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":8,"address":"SKOL Breweries Limited","category":"North American Lager","city":"Bangalore","coordinates":[12.9683,77.657],"country":"India","description":"Haywards Black, India’s first genuine stout beer , is handcrafted from a rich blend of the world famous Caledon valley dark roasted barley malt along with a blend of imported and locally produced pale malts. New Zealand’s super alpha hops give Haywards Black a unique and pleasantly bitter taste with a hop like aroma. The Dark Roasted malt provides a rich dark colouring along with a unique smoky taste and aroma. The Slow brewing process which incorporates specially managed yeast creates the creamy head and the rich smooth taste that stout is so much loved for. \n\n\nhttp://www.sabmiller.in/brands_haywards_black.html","ibu":100,"name":"Haywards Black","state":"Karnataka","website":"http://www.sabmiller.in/"},{"abv":5.3000001907,"address":"Promzona Parnas-4, 6 Proyezd, 9 Kvartal","category":"North American Lager","city":"Sankt-Peterburg","coordinates":[59.939,30.3158],"country":"Russia","ibu":35,"name":"Baltika #5","state":"Sankt-Peterburg"},{"abv":7.8000001907000005,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Intriguing doses of sweet spices, dark cocoa and pumpkin transform an exceptional porter into a\n\nmesmerizing potion. Pour this tantalizing brew into a snifter and seek solace in the depths of its fascinating flavors. Cinnamon, nutmeg and cloves seem familiar but this brew is cloaked in deep, dark secrets that will forever haunt you.\n\n\nThis beer is like nothing you have ever experienced. It is a majestic mélange of rich, impressive flavors that meld wonderfully with the\n\nwarmth of alcohol. Will it appease or awaken your spirit?","ibu":84,"name":"Imperial Chocolate Pumpkin Porter","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":1.5337407938140424,"address":"1516 Sansom Street","category":"British Ale","city":"Philadelphia","coordinates":[39.9502,-75.1666],"country":"United States","description":"lighter Scotish-Style Ale... amber in color with plenty of maltiness... reminds us all that sometime there just aren't enough O's in smooth","ibu":79,"name":"60 Shilling","state":"Pennsylvania","website":"http://www.noddinghead.com/"},{"abv":0.689031374175032,"address":"1025 Owen Street","category":"North American Ale","city":"Lake Mills","coordinates":[43.0862,-88.8967],"country":"United States","description":"Nothing beats a day at the beach... the sun, the sand and, of course, the scenery. Here in Lake Mills, the three beaches of Rock Lake have drawn young and old for generations... to laugh, to play, to frolic, to just escape stresses of life for a time. Three Beaches Honey Blonde is like a day at the beach... light, bleached blonde, gleefully effervescent, free from bitterness and sure to improve your attitude. When you need a little attitude adjustment, spend a day at the beach with Three Beaches Honey Blonde... and you won't even have to wash the sand out of your suit!\n\n\nThree Beaches Honey Blonde is our Wisconsin version of the American Blonde Ale. This beer is light-bodied with a sweet touch of honey and a mild citrus accent.","ibu":39,"name":"Three Beaches Honey Blonde Ale","state":"Wisconsin","website":"http://www.tyranena.com"},{"abv":5.0999999046,"address":"127 Elm St., Unit C","category":"German Lager","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":36,"name":"Shouboushi Ginger Pilsner","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":4.5999999046,"address":"2439 Amber Street","category":"North American Ale","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"Not to be boastful, but we honestly believe that all other ales pale in comparison to this one. Brewed with pilsner malt, Philadelphia Pale Ale is crisp and hoppy, bursting with citrus flavors and aromas.\n\n\nPhiladelphia Pale Ale was named one of the best Pale Ales in the country by the New York Times.","ibu":28,"name":"Yards Philadelphia Pale Ale","state":"Pennsylvania"},{"abv":5,"address":"1093 Highview Drive","category":"North American Lager","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Made popular in the 19th century in Dortmunder, Germany, these pale golden lagers exhibit a classic clean character with notes of biscuity malts. Bitterness is akin to a German Pilsner with an aromatic aroma. Mouthfeel is firm and even, with an overall dry tone.","ibu":56,"name":"Big Mac","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":12.345679217084376,"address":"102 North Market Street","category":"North American Ale","city":"Mount Joy","coordinates":[40.1119,-76.5031],"country":"United States","description":"This dark full bodied stout is perfect with a meal or as a meal. Rolled oats give this beer an enjoyable mouthfeel while chocolate and roasted malts lend to its distinctive flavor.","ibu":67,"name":"Bube's Stout","state":"Pennsylvania","website":"http://www.bubesbrewery.com"},{"abv":7,"address":"6 Cannery Village Center","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"This is a hybrid of ale and mead made with 51% malted barley (Pale and Munich malted barley) and 49% Orange blossom honey, it is lightly hopped, spiced with Hibiscus flowers and fermented with Australian ale yeast.\n\n\nOur Milton, DE microbrewery brewer Jon Talkington came up with this beer because of his love of different kinds of meads and his interest in Nordic lore and mythology. The name Beewolf is the name Beowulf translated, meaning bear.\n\n \n\nColor- light amber.\n\nAroma- Pear like fruitiness, with a clean malt and floral honey nose.\n\nFlavor- sweet malt and honey with a subtle fruitiness and a hint of caramel.\n\nABV 7.0%\n\nIBU's 25\n\n\nDue to the limited availability of Beewolf Braggot, we are sorry that we are not able to offer growlers to go.","ibu":119,"name":"Beewolf Braggot","state":"Delaware","website":"http://www.dogfish.com"},{"abv":5.5,"address":"Brouwerslaan 1","category":"Other Style","city":"Enschede","coordinates":[52.2081,6.8163],"country":"Netherlands","description":"Grolsch Dunkel Weizen is the darker version of Grolsch Premium Weizen.","ibu":17,"name":"Grolsch Dunkel Weizen","state":"Overijssel","website":"http://www.grolsch.com"},{"abv":7.727604308921921,"address":"95 Cathedral Street, Suite 200","category":"North American Ale","city":"Annapolis","coordinates":[38.9773,-76.4948],"country":"United States","ibu":18,"name":"Copper Head Ale","state":"Maryland","website":"http://www.ramsheadtavern.com/"},{"abv":5.1999998093,"address":"1100 New York Ave, NW","category":"Irish Ale","city":"Washington","coordinates":[38.8999,-77.0272],"country":"United States","description":"Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down.","ibu":47,"name":"Irish Red Ale","state":"District of Columbia","website":"http://www.capcitybrew.com"},{"abv":2.31290572381893,"address":"200 East Campbell Avenue","category":"Irish Ale","city":"Campbell","coordinates":[37.2869,-121.946],"country":"United States","ibu":105,"name":"Porter","state":"California"},{"abv":10,"address":"1415 First Avenue","city":"Seattle","coordinates":[47.6081,-122.34],"country":"United States","ibu":109,"name":"Old Bawdy 2006","state":"Washington"},{"abv":7,"address":"3115 Broad Street","category":"British Ale","city":"Dexter","coordinates":[42.3375,-83.8895],"country":"United States","description":"A sustaining beer that is brewed to comfort in the gusty ides of March and welcome in a wealth of warmer weather.","ibu":41,"name":"Biere de Mars","state":"Michigan","website":"http://www.jollypumpkin.com"},{"abv":6.5,"address":"Rue Basse 5","city":"Tourpes","coordinates":[50.5718,3.6508000000000003],"country":"Belgium","ibu":82,"name":"Saison Vielle Provision","state":"Hainaut"},{"abv":13,"address":"1800 West Fulton Street","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":86,"name":"Bourbon County Stout 2007","state":"Illinois"},{"abv":8,"address":"Funenkade 7","city":"Amsterdam","coordinates":[52.3666,4.9263],"country":"Netherlands","ibu":35,"name":"Zatte Amsterdamse Tripel"},{"abv":1.408573871410903,"address":"243 North Gaither Street","city":"Siletz","coordinates":[44.722,-123.918],"country":"United States","ibu":94,"name":"Spruce Ale","state":"Oregon"},{"abv":12.809395207145098,"address":"13300 Bothell-Everett Highway #304","category":"North American Ale","city":"Mill Creek","coordinates":[47.8774,-122.211],"country":"United States","ibu":91,"name":"I.M. Pale","state":"Washington"},{"abv":7.607346094315462,"category":"North American Ale","city":"Zrich","coordinates":[47.369,8.538],"country":"Switzerland","ibu":8,"name":"Altbier"},{"abv":5.8000001907000005,"address":"Camwal Road","category":"North American Ale","city":"Harrogate","coordinates":[53.9999,-1.501],"country":"United Kingdom","ibu":107,"name":"Ripon Jewel Ale","state":"North Yorkshire"},{"abv":7.0846088074432645,"category":"North American Ale","city":"Minnetonka","coordinates":[44.9133,-93.5033],"country":"United States","ibu":114,"name":"Star of India India Pale Ale","state":"Minnesota"},{"abv":4.1999998093,"category":"German Ale","city":"Clinton","coordinates":[41.8445,-90.1887],"country":"United States","ibu":104,"name":"Hefeweizen","state":"Iowa"},{"abv":3.2275778377056286,"category":"North American Ale","city":"Stevens Point","coordinates":[44.5236,-89.5746],"country":"United States","ibu":83,"name":"Stout","state":"Wisconsin"},{"abv":1.2168423388177396,"address":"17700 Boonville Rd","city":"Boonville","coordinates":[39.0014,-123.356],"country":"United States","ibu":81,"name":"Winter Solstice Seasonal Ale 2002","state":"California","website":"http://avbc.com/"},{"abv":0.5705291518043676,"address":"527 Decatur Street","city":"New Orleans","coordinates":[29.9558,-90.0641],"country":"United States","ibu":11,"name":"Steam","state":"Louisiana"},{"abv":8.1000003815,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"Big Bear, as the name implies, is a hefty, black, Russian Imperial-style stout. This bold stout boasts a rich, caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your teeth into. ...Big Bear's bold flavors are produced using a blend of Belgian and English roasted barley and crystal malts. Some unique flavors come forth in the malt character. ...Louisiana sweet molasses and dark brown sugar. This dark brew is well hopped with Chinook and Cascade hops, which are somewhat, masked by the malt. This is a balanced bold brew boasting an A.V.B. of 8.1% that can creep up on you, \"so don't get mauled\". It has a dry roasted quality that masks its' high alchohol content, so drink responsibly. 2004 California State Fair, Silver Medal Winner; 2002 World Beer Cup, Gold Medal Winner; \n\n2002 Annual Bistro Beer Festival, Hayward, Gold Medal Winner; 2001 North American Brewers' Award, Honorable Mention - og 1.076, ABV 8.1%, IBU 68.","ibu":91,"name":"Big Bear Black Stout","state":"California","website":"http://www.bearrepublic.com/"},{"abv":14.007843816186078,"address":"636 East Main Street","category":"Irish Ale","city":"Louisville","coordinates":[38.2546,-85.7401],"country":"United States","ibu":18,"name":"Dark Star","state":"Kentucky","website":"http://www.bluegrassbrew.com"},{"abv":9.1000003815,"address":"1313 NW Marshall Street","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":22,"name":"Old Knucklehead 2003","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":9.8000001907,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":32,"name":"Tripel Krullekop","state":"Oost-Vlaanderen"},{"abv":8.803476554614987,"address":"10450-L Friars Road","city":"San Diego","coordinates":[32.7922,-117.099],"country":"United States","ibu":29,"name":"Grantville Gold","state":"California"},{"abv":6.1999998093,"address":"600 East Superior Street","category":"North American Ale","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":6,"name":"Starfire Pale Ale","state":"Minnesota"},{"abv":3.238346838108753,"address":"5775 Lower Mountain Road","city":"Lahaska","coordinates":[40.3341,-75.012],"country":"United States","ibu":109,"name":"Indian Red Ale","state":"Pennsylvania"},{"abv":32,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"This is the worlds strongest ever beer, ever (yes ever).\n\n\nNo Penguins were harmed in the making of this beer; some humans did get very, very cold though. It was worth it.\n\n\nThe Antarctic name, inducing schizophrenia, of this Ÿber-imperial stout originates from the amount of time it spent exposed to extreme cold. This beer was initially double barrel aged for 14 months; maturing in the deep, rich oak of Scottish whisky casks. After this epic maturation the beer was then frozen, then frozen again, then frozen again.\n\n\nThis is an extremely strong beer, it should be enjoyed in small servings and with an air of aristocratic nonchalance. In exactly the same manner that you would enjoy a fine whisky, a Frank Zappa album or a visit from a friendly yet anxious ghost.","ibu":88,"name":"Tactical Nuclear Penguin","website":"http://brewdog.com/"},{"abv":5.5999999046,"address":"4519 W. Pine Street","category":"North American Ale","city":"Farmville","coordinates":[35.6003,-77.5971],"country":"United States","description":"The Duck-Rabbit Brown Ale is an American brown ale brewed with loads of hops from start to finish (it’s hoppy and beautifully bitter). Amarillo hops in the boil provide a spicy citrusy bitterness. Saaz dry hops in the fermentor provide a refined flowery aroma. These hops are supported by a grain bill of seven varieties of malt. Oh yeah!","ibu":16,"name":"Duck-Rabbit Brown Ale","state":"North Carolina","website":"http://www.duckrabbitbrewery.com/"},{"abv":6.25,"address":"190 5th Street","category":"North American Ale","city":"Benton Harbor","coordinates":[42.1185,-86.4537],"country":"United States","description":"This deep copper colored Ale is named after Steve's homebrew buddy Thom Phillips, who has had a part in helping to formulate some of the final Ale recipes at the Livery. Hints of caramel make their way through the aromatic bitterness of Centennial hops.","ibu":42,"name":"Thoms Special Ale","state":"Michigan","website":"http://liverybrew.com/"},{"abv":4.5,"address":"2713 El Paseo Lane","category":"North American Lager","city":"Sacramento","coordinates":[38.6191,-121.4],"country":"United States","description":"A light all malt lager with delicate hop finish.","ibu":115,"name":"Brewhouse Lager","state":"California","website":"http://sacbrew.blogspot.com/"},{"abv":5.5,"address":"701 Galveston Ave","category":"German Ale","city":"Fortworth","coordinates":[32.7366,-97.3274],"country":"United States","description":"There is nothing more refreshing than a cold SUMMERTIME WHEAT at the end of a hot Texas day. This refreshing, lightly hopped ale has unique banana and clove-like characteristics. It is unfiltered so the yeast character comes through with a light but full body.","ibu":83,"name":"Rahr's Summertime Wheat","state":"Texas","website":"http://www.rahrbrewery.com/"},{"abv":8,"address":"2439 Amber Street","city":"Philadelphia","coordinates":[39.9831,-75.1274],"country":"United States","description":"All beers are not created equal.\n\n\nWhile Thomas Jefferson spent much of his time in Philadelphia drafting, editing, revising, and re-editing the Declaration of Independence, he longed to be home in Monticello, where twice a year his wife Martha would brew up one of his favorite beverages — beer.\n\n\nThomas Jefferson Tavern Aleâ„¢ is a strong golden ale, based on Jefferson's original recipe, which included ingredients specified and grown on his Virginia estate.\n\n\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.","ibu":70,"name":"Thomas Jefferson's Tavern Ale","state":"Pennsylvania"},{"abv":6.1999998093,"address":"50 N. Cameron St.","category":"North American Ale","city":"Harrisburg","coordinates":[40.2659,-76.8753],"country":"United States","description":"This IPA is an exciting beer with a floral in aroma and an incredible hop flavor. The maltiness is increased (over a regular pale ale) to help balance the aggressive hop usage. This contributes to the higher alcohol content as well. \n\nWhen India was part of the British Empire, pale ale shipped to the troops would often spoil due to the rough voyage and temperature extremes. The brewers had a theory that if they loaded the beer with extra hops, the hops would preserve the beer. Of course, this added significantly to the beer’s flavor and aroma. When the troops returned to Britain, they had become \"hop-heads\", appreciating the beauty of the hop \"over-influence\". Regular pale ale was simply not enough anymore! A new beer style, India Pale Ale, had been created: an aggressively hoppy and now quite happy to be home pale ale.","ibu":112,"name":"Hoppy Trails India Pale Ale","state":"Pennsylvania","website":"http://www.abcbrew.com"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","ibu":60,"name":"Budweiser","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":0.5606632864054351,"address":"13351 Highway 101","category":"North American Ale","city":"Hopland","coordinates":[38.9734,-123.116],"country":"United States","ibu":19,"name":"Peregrine Pale Ale","state":"California"},{"abv":11.347542281446666,"address":"6863 Lundy's Lane","category":"North American Lager","city":"Niagara Falls","coordinates":[43.0893,-79.11],"country":"Canada","ibu":37,"name":"Weisse Beer","state":"Ontario"},{"abv":11.679821031602584,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":38,"name":"Russian Imperial Stout","state":"Nebraska"},{"abv":2.9437625188713934,"address":"Hoheneggstrae 41-51","city":"Konstanz","coordinates":[47.6855,9.208],"country":"Germany","ibu":78,"name":"Hefe Weizen Dunkel","state":"Baden-Wrttemberg"},{"abv":5,"address":"901 S. Bond St.","category":"German Lager","city":"Baltimore","coordinates":[39.2807,-76.5944],"country":"United States","description":"Succumb to this dark, medium bodied German-style dark lager’s smooth roasted flavors and light hoppy bitterness. Don’t worry, you’ll remember everything the next morning.","ibu":43,"name":"Blackout","state":"Maryland","website":"http://www.duclaw.com/"},{"abv":5,"address":"One Busch Place","category":"North American Lager","city":"Saint Louis","coordinates":[38.5983,-90.209],"country":"United States","description":"Introduced in 1989 Bud Dry is the first dry-brewed beer produced by an American brewer. It is brewed with select hops, grains and barley malt, which results in a lighter body and less-sweet taste. As with all Anheuser-Busch beers, it is cold-filtered for a smooth draft taste, but then goes through a second cold-filtered finishing process to provide its unique taste.","ibu":11,"name":"Bud Dry","state":"Missouri","website":"http://www.anheuser-busch.com/"},{"abv":5,"address":"Route 4 & 100A","category":"German Ale","city":"Bridgewater Corners","coordinates":[43.5882,-72.6563],"country":"United States","description":"Here is our \"Wheat Beer with Yeast\", or Hefeweizen. Beers brewed with a high proportion of wheat yield a crisp and refreshing flavor profile, while the addition of our special yeast adds a blend of complex citrus and spice flavors.","ibu":30,"name":"Long Trail Hefeweizen","state":"Vermont","website":"http://www.longtrail.com/"},{"abv":7.729438119029696,"ibu":102,"name":"07/22/10 08:00 PM"},{"abv":5.6999998093,"address":"814 W Hamilton St","category":"Irish Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Dark brown with ruby highlights this brew has a deep chocolate flavor backed by a smooth caramel finish. Brewed with English malt and hops for an authentic flavor","ibu":80,"name":"Pawn Shop Porter","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":5.1999998093,"address":"1340 East Eighth Street #103","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"A very light golden ale that is malty sweet, almost honey-like in the nose. This ale has a light to medium body and a very delicate flavor. Easy drinking, it has very low bitterness and a soft dry finish. 5.2% alcohol/volume. This style originates from the city of Cologne, Germany where all twenty eight breweries are dedicated to brewing only Kölsch. Coming soon in cans. (ALWAYS ON TAP!!)","ibu":50,"name":"Sunbru Kölsch Style Ale","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":7.1999998093,"address":"6 Cannery Village Center","category":"North American Ale","city":"Milton","coordinates":[38.768299999999996,-75.3107],"country":"United States","description":"A cross between a Scotch Ale, an I.P.A., and an American Brown, this beer is well-hopped and malty at the same time. It is brewed with Aromatic barley and caramelized brown sugar.","ibu":18,"name":"Indian Brown Ale","state":"Delaware","website":"http://www.dogfish.com"},{"abv":7.9000000954,"address":"210 Swanson Avenue","category":"Belgian and French Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"A Belgium Wheat Ale, Spiced With Orange Reel & Coriander, Strong & Smooth","ibu":24,"name":"Full Moon Belgian White Ale","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":7.616226433404884,"address":"2029 Old Peshtigo Road","category":"German Lager","city":"Marinette","coordinates":[45.0851,-87.6544],"country":"United States","ibu":28,"name":"Oktoberfest (discontinued)","state":"Wisconsin"},{"abv":0.19016768207742896,"address":"Ringlaan 18","city":"Opwijk","coordinates":[50.971,4.191],"country":"Belgium","ibu":117,"name":"Affligem Dobbel","state":"Vlaams Brabant"},{"abv":5,"address":"Lidick 51","city":"esk Budjovice","country":"Czech Republic","ibu":110,"name":"Samson Crystal Lager Beer"},{"abv":6,"category":"North American Ale","city":"Yakima","coordinates":[46.6021,-120.506],"country":"United States","ibu":86,"name":"Imperial Stout","state":"Washington"},{"abv":1.6294221620753813,"category":"North American Ale","city":"Kirkland","coordinates":[47.6815,-122.209],"country":"United States","ibu":34,"name":"Kirkland Ale","state":"Washington"},{"abv":3.9294884037711797,"address":"4700 Cherry Creek Drive South","city":"Denver","coordinates":[39.705,-104.936],"country":"United States","ibu":48,"name":"Barleywine","state":"Colorado"},{"abv":11.568146976656893,"city":"Denver","coordinates":[39.7541,-105],"country":"United States","ibu":19,"name":"Uncle Dunkel","state":"Colorado"},{"abv":7.981817559993688,"address":"1035 Sterling Avenue","city":"Flossmoor","coordinates":[41.5433,-87.6789],"country":"United States","ibu":77,"name":"Pullman Nut Brown Ale","state":"Illinois"},{"abv":1.998571417711188,"address":"1872 North Commerce Street","category":"German Lager","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":67,"name":"Bock","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":4.5,"address":"470 Prospect Village Dr.","category":"North American Lager","city":"Estes Park","coordinates":[40.3707,-105.526],"country":"United States","ibu":77,"name":"Staggering Elk","state":"Colorado","website":"http://www.epbrewery.net/"},{"abv":14.542376725574346,"address":"1 Fairmount Road","category":"North American Ale","city":"Long Valley","coordinates":[40.7843,-74.78],"country":"United States","ibu":101,"name":"Grist Mill Golden","state":"New Jersey"},{"abv":6.277252251412956,"address":"Marsstrae 46-48","category":"German Lager","city":"München","country":"Germany","ibu":55,"name":"Maibock","state":"Bayern"},{"abv":5.777324548553215,"address":"PO Box 1498","category":"North American Lager","city":"Boston","coordinates":[42.3587,-71.0574],"country":"United States","ibu":3,"name":"Edison Light Beer","state":"Massachusetts"},{"abv":13.819985247258511,"address":"Zornedinger Strae 2","category":"German Ale","city":"Aying","coordinates":[47.9706,11.7808],"country":"Germany","ibu":46,"name":"Bräu-Weisse","state":"Bayern"},{"abv":6.5,"address":"214 Spanish Town","category":"North American Ale","city":"Kingston","coordinates":[33.9858,-96.6515],"country":"Jamaica","ibu":3,"name":"Guinness Foreign Extra"},{"abv":5,"address":"6300 Folsom Boulevard","category":"North American Ale","city":"Sacramento","coordinates":[38.5551,-121.43],"country":"United States","description":"s a unique, all-natural style of beer that currently falls under the category of a Specialty Ale. In other words, there is no true category for this beer... Characterized by its distinctive Mount Hood hop aroma and beautiful blonde color, Liquid Sunshineâ„¢ is brewed at a low temperature to create a nice light dry finish. Using only the finest 2-row malted barley, wheat, rye, and great northwestern grown hops, this combination results in a clean, crisp, and uniquely refreshing beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\n\nThere’s nothing like it under the sun!!!","ibu":61,"name":"Liquid Sunshine Blonde Ale","state":"California","website":"http://www.hoppy.com"},{"abv":7.530686456319138,"address":"460 West Franklin Street","category":"North American Ale","city":"Chapel Hill","coordinates":[35.9103,-79.0632],"country":"United States","ibu":54,"name":"IPA","state":"North Carolina"},{"abv":10.746910493744972,"category":"Other Style","city":"San Francisco","coordinates":[37.7749,-122.419],"country":"United States","ibu":91,"name":"Frambosia","state":"California"},{"abv":7.008099642884904,"address":"455 North Main Street","category":"North American Ale","city":"Fort Bragg","coordinates":[39.4466,-123.806],"country":"United States","ibu":75,"name":"Wintertime Ale 1992","state":"California","website":"http://www.northcoastbrewing.com/home.htm"},{"abv":0.7890480498007413,"category":"German Lager","city":"Berwyn","coordinates":[41.8506,-87.7937],"country":"United States","ibu":103,"name":"Märzen","state":"Illinois"},{"abv":5.7123338585244765,"category":"British Ale","city":"Portland","coordinates":[45.5235,-122.676],"country":"United States","ibu":96,"name":"Best Mild (discontinued)","state":"Oregon"},{"abv":14.136023103825664,"address":"1920 Shattuck Avenue","category":"Irish Ale","city":"Berkeley","coordinates":[37.8734,-122.269],"country":"United States","ibu":64,"name":"Porter","state":"California"},{"abv":6.6999998093,"category":"North American Ale","city":"Fremont","coordinates":[37.5483,-121.989],"country":"United States","ibu":55,"name":"Independence Ale","state":"California"},{"abv":1.4575872100274823,"category":"Irish Ale","city":"Addison","coordinates":[32.9618,-96.8292],"country":"United States","ibu":84,"name":"Texas Special 101 Porter","state":"Texas"},{"abv":8.23349019182984,"address":"1650 Dell Range Boulevard","category":"Other Style","city":"Cheyenne","coordinates":[41.1607,-104.802],"country":"United States","ibu":107,"name":"Big Horn Bluesberry","state":"Wyoming"},{"abv":4.9699997902,"address":"2880 Wilderness Place","category":"North American Ale","city":"Boulder","coordinates":[40.0267,-105.248],"country":"United States","ibu":94,"name":"Singletrack Copper Ale","state":"Colorado","website":"http://boulderbeer.com/"},{"abv":4.962459457344867,"category":"North American Lager","city":"Tampa","coordinates":[27.9494,-82.4651],"country":"United States","ibu":108,"name":"Hatuey Beer","state":"Florida"},{"abv":7.162189905754283,"address":"890 East Fort Union Boulevard","category":"North American Lager","city":"Midvale","coordinates":[40.6215,-111.866],"country":"United States","ibu":94,"name":"Uno Mas","state":"Utah"},{"abv":3.464068023438327,"address":"375 Water Street","category":"North American Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"During the heyday of the British Empire, India Pale Ale was born as a strong pale ale brewed especially to endure the rigors of the long journey to the colonies. In order to guard against spoilage, I.P.A. was brewed with a high alcohol content and with liberal amounts of hops, which act as a natural preservative. This ale's golden amber colour only hints at its full-bodied flavour. Its sumptuous maltiness is tempered by a goodly amount of bitterness and a mouth-filling hop flavour. In order to finish our I.P.A. with a truly fresh hop bouquet, we dry hop this ale in the serving tank with both East Kent Goldings and Mount Hood hops.","ibu":59,"name":"Empress India Pale Ale","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":10.957725212216499,"address":"Hchberger Strae 28","category":"German Ale","city":"Wrzburg","coordinates":[49.792,9.915],"country":"Germany","ibu":71,"name":"Julius Echter Hefe-Weißbier Hell","state":"Bayern"},{"abv":6.8000001907000005,"address":"Dinant","city":"Dinant","coordinates":[50.2606,4.9122],"country":"Belgium","description":"Dark brown with a nice tan head.\n\nSweet and aromatic.\n\nSmooth and best served cold from a goblet or chalice.\n\n\nI have had this on tab, in a 12oz bottle and 1 liter bottle. It is very common on to be on tap in Belgium and Paris as well as in a bottle in the UK.\n\n\nI have not seen it in the US nor can I find a distributor that could get it.","ibu":63,"name":"Brune (Brown)","state":"Namur"},{"abv":7.569699109377591,"address":"1321 Celebrity Circle","category":"Belgian and French Ale","city":"Myrtle Beach","coordinates":[33.7187,-78.8831],"country":"United States","description":"Wheat-based beer brewed with coriander and orange peel to produce a mild citrus flavor.","ibu":70,"name":"Liberty White Ale","state":"South Carolina","website":"http://www.libertysteakhouseandbrewery.com/"},{"abv":10,"address":"2051A Stoneman Circle","category":"British Ale","city":"Lakewood","coordinates":[42.1008,-79.3357],"country":"United States","ibu":38,"name":"Creme Brulee Imperial Milk Stout","state":"New York","website":"http://www.southerntierbrewing.com/"},{"abv":10,"address":"303 Main Street","category":"North American Ale","city":"Lyons","coordinates":[40.2246,-105.268],"country":"United States","description":"Ten FIDY Imperial Stout - Now (11-21-07) available in cans, our winter seasonal beer is immensely viscous and loaded with neck-deep flavors of chocolate, malt, coffee, cocoa and oats.\n\n\nIt's the beer equivalent of decadently rich milkshake made with malted-milk balls and Heaven’s best chocolate ice cream. Ten FIDY is about 10% ABV and is made with enormous amounts of two-row malts, chocolate malts, roasted barley, flaked oats and hops. Its huge-but-comforting flavors hide a whopping 98 IBUs that are deftly tucked underneath the beer’s mountains of malty goodness.\n\n\nTen FIDY is the ultimate Rocky Mountain winter warmer, and further proof of the creative muscle of our beloved brewing staff. Look for fourpacks of Ten FIDY in select beer stores in Colorado. Out of state? We hope to send a few cases to a few of our other states in early '08.","ibu":116,"name":"Ten Fidy","state":"Colorado","website":"http://www.oskarblues.com/"},{"abv":4.5999999046,"address":"120 Wilkinson Street","category":"Other Style","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A scintillating ale with just the right amount of hops and ripe berry flavor.","ibu":66,"name":"Middle Ages Raspberry Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":3.072933493132095,"address":"PO Box 1510","category":"Other Style","city":"Abita Springs","coordinates":[30.5049,-89.944],"country":"United States","description":"This beer is not very bitter which allows the flavors of the rye and honey to come through. The result is a full bodied, sweet, and malty beer.","ibu":37,"name":"Honey Rye Ale","state":"Louisiana","website":"http://www.abita.com/"},{"abv":11.083467046559544,"address":"99 Castleton Street","category":"Belgian and French Ale","city":"Pleasantville","coordinates":[41.126,-73.78960000000001],"country":"United States","description":"This beer was created as a summer thirst quencher, because we all know how hot and humid it can get in New York during the summer. We brewed this beer using both coriander and orange peel in the boil to increase both the aroma and flavor of this beer. Make sure you don’t get burned this summer, drink your Sun Block.","ibu":66,"name":"Sun Block - Belgian Style Witte","state":"New York","website":"http://www.captainlawrencebrewing.com/"},{"abv":2.6810383075409403,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"An intense and rich, dark, roasty ale with substantial alcohol warming. Requires several months of aging.","ibu":103,"name":"Manheim Stout","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":4,"address":"1722 South Fremont Drive (2375 West)","category":"Irish Ale","city":"Salt Lake City","coordinates":[40.7326,-111.954],"country":"United States","description":"King's Peak Porter is deep mahogany in color and has a full-bodied malty flavor. Hints of chocolate malt are easily detectable.\n\n\nTopped with a tan creamy head, this beer has a definite hop character that nicely balances its mild bitterness. \n\n\nKing's Peak is the highest point in the state of Utah at 13,528 feet, located in northeastern Utah in the Uinta Mountains.","ibu":28,"name":"King's Peak Porter","state":"Utah","website":"http://www.uintabrewing.com/"},{"abv":5.5999999046,"address":"2201 Arapahoe Street","category":"Other Style","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"What better way to surprise a beer lover than with a fruit beer that tastes like beer? Nine years ago, we began our quest to provide beer lovers with a worthy fruit beer, by rolling out Wild Raspberry Ale. Our mantra is that real fruit makes real beer, so we ferment Wild Raspberry Ale with hundreds of pounds of real red and black raspberries. We steadfastly refuse to fall prey to extracts and cheap syrups. Sure, squirting syrup into a keg of beer and rolling it around on the floor is easy, but the taste is... fake! Over the past nine years, we have stayed true to our commitment to real fruit, no matter what the time, expense, or late season frosts have thrown our way. One year, Mother Nature delivered a late cold snap that was so severe, we had to pre-order 85% of the harvestable U.S. black raspberry crop, just to meet the demand for Wild Raspberry Ale.\n\n\nOur efforts do not go unrewarded – Wild Raspberry Ale is a truly effervescent, ruby red ale that achieves the almost impossible balance between malted barley and tart raspberry fruitiness. Its naturally tart character makes Wild Raspberry the ultimate accompaniment to spicy Mexican food or on its own as a stand-alone session beer.","ibu":60,"name":"Wild Raspberry Ale","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.5,"address":"Cte Marie-Thrse 86","city":"Falmignoul","coordinates":[50.2024,4.8914],"country":"Belgium","ibu":38,"name":"Troublette","state":"Namur"},{"abv":14.018589636813136,"address":"871 Beatty Street","city":"Vancouver","coordinates":[49.2766,-123.115],"country":"Canada","ibu":25,"name":"Game Day","state":"British Columbia"},{"abv":1.4509139492798606,"address":"202 - 13018 80th Avenue","city":"Surrey","country":"Canada","ibu":9,"name":"Blonde Ale","state":"British Columbia"},{"abv":5.0999999046,"address":"Oberdorferstrae 9","city":"Dornbirn","coordinates":[47.4097,9.7514],"country":"Austria","ibu":6,"name":"Naturtrubes"},{"abv":8.31542346441924,"address":"1313 NW Marshall Street","category":"North American Ale","city":"Portland","coordinates":[45.5311,-122.685],"country":"United States","ibu":42,"name":"Beer Town Brown","state":"Oregon","website":"http://www.bridgeportbrew.com/"},{"abv":5.1999998093,"address":"5945 Prather Road","category":"North American Ale","city":"Centralia","coordinates":[46.7713,-123.007],"country":"United States","ibu":62,"name":"Danger Ale","state":"Washington"},{"abv":10.238915946312774,"category":"German Lager","city":"Munich","coordinates":[48.1391,11.5802],"country":"Germany","ibu":118,"name":"Hacker-Pschorr Original Oktoberfest","website":"http://www.paulaner.com/"},{"abv":4.648398704976322,"category":"North American Ale","city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":11,"name":"Stout","state":"Wisconsin"},{"abv":0.5075496900479737,"category":"North American Lager","city":"New York","coordinates":[40.7323,-73.9874],"country":"United States","ibu":13,"name":"Harvest Wheat Beer","state":"New York","website":"http://www.heartlandbrewery.com/"},{"abv":1.465968022348455,"address":"26 West Industrial Drive","city":"O'Fallon","coordinates":[38.8058,-90.7532],"country":"United States","ibu":80,"name":"Griesendiech Pilsner","state":"Missouri"},{"abv":5.006710242066364,"address":"2400 State Highway 69","category":"North American Ale","city":"New Glarus","coordinates":[42.8171,-89.6306],"country":"United States","ibu":0,"name":"Imperial Stout","state":"Wisconsin","website":"http://www.newglarusbrewing.com/"},{"abv":8.75,"address":"901 SW Simpson Avenue","category":"North American Ale","city":"Bend","coordinates":[44.0474,-121.323],"country":"United States","description":"HOP HENGE IMPERIAL IPA – The Ultimate in Hop Innovation \n\n\nHop Henge Imperial IPA returns to the Bond Street Series line-up this April in extreme fashion. Staying true to the experimental nature of the series and the “never settle” philosophy of Deschutes, our brewers went back to the drawing board to create an amplified version of last year’s monument to hops.\n\n\nHead Brewer Brett Porter says, “This is a truly exciting and groundbreaking beer. We reformulated everything about the hop recipe to give Hop Henge an extraordinary aroma and flavor similar to a fresh hop beer.” In addition to the Cascade and Centennial hops, Deschutes Brewery is experimenting with a hop variety so new that it has yet to be named.\n\n\nThe team here at Bend Public House recommends Hop Henge as the perfect accompaniment for a variety of spicy foods, so be sure to have a bottle handy next time you make a batch of hot wings and go for the five alarm award. The high-octane hoppiness is a wildly refreshing antidote to a wide array of hot foods.\n\n\nLimited Availability April through June.\n\n\nDon’t miss this amazing hop experiment that is sure to leave your taste buds begging for more.\n\n\n-http://www.deschutesbrewery.com/Brews/Bond+Street+Series/default.aspx\n\n\nAvailable April through June.\n\n\nHop Henge I.P.A. was first brewed in 2006 as an agressive West Coast style I.P.A. In 2007, Hop Henge is going Imperial! Several pounds of Centennial, Cascade and Northern Brewer hops are in each barrel with a heavy dry-hop presence to top it off. A blend of crystal, pale and caraston malts creates an overall biscuity characteristic that is dense and muscular, building the alcohol base to support the monstrous hop profile.\n\n\nLike the rest of the Bond Street Series, Hop Henge highlights the creativity and curiosity of our brewers. Bolder than its English ancestors, with huge hops and a bitter finish, this IPA is no wallflower.\n\n\nAlcohol By Volume: 8.1%\n\n\t\n\n\nIBU 95\n\n\nWhen one of our brewers suggested we name our new IPA Hop Henge, he also came up with the idea of actually recreating Stonehenge, only with hop bales. We were up for the challenge and even though the weather did not want to cooperate, we pulled it off and threw a party afterwards.\n\n\t\n\n\n\nphoto: chris mather\n\nRatings, Awards & Notables\n\n\nWorld's Best Strong Pale Ale (Imperial IPA)\n\n2007 World Beer Awards\n\n\nWorld's 50 Best Beers\n\n2006 International Beer Challenge\n\n\nGold Medal, 92 Points\n\n2006 World Beer Championships\n\n\nSilver Medal, India Pale Ale Category\n\n2006 Australian International Beer Awards\n\n\nModern Brewery Age, February 12, 2007\n\n5 out 5 stars \n\nHop Henge started its life as an India Pale Ale, but this year it was bumped up to “Imperial IPA” status, with a hefty dose of additional hops.\n\n“This one is lovely,” said taster Tom Conti. “They got it just right.”\n\nIt pours out a deep amber, with an appealing rocky head, and rich hop aroma wafting from the glass. “They sure dosed it with a lot of hops...[there’s] a lot of hop bitterness in the taste,” one taster observed.\n\nIn addition to the Imperial-level hopping, Hop Henge also boasts Imperial-level alcohol content, with 8.1% a.b.v.\n\nThis was the top-rated beer during its tasting session, and tasters had to dig deep for new superlatives to describe it. “This is a beautiful beer,” concluded taster Gregg Glaser. “Full of flavor and hops and malt and hops again.”\n\n“Not for the timid,” said taster Robert Lachman.\n\n\n-http://www.deschutesbrewery.com/BrewPub/OnTap/125352.aspx","ibu":80,"name":"Hop Henge Imperial IPA","state":"Oregon","website":"http://www.deschutesbrewery.com/"},{"abv":12.7325923393775,"address":"375 Water Street","category":"German Ale","city":"Vancouver","coordinates":[49.2849,-123.11],"country":"Canada","description":"Our Hefeweizen is a faithful version of the traditional Bavarian wheat beer. Hefe is the German word for 'yeast' and weizen means 'wheat'. This beer is made with 40% wheat malt and is brewed with a special yeast that tends to stay in suspension, giving the beer its cloudy appearance. Bavarians are so convinced of the healthful qualities of this yeasty brew that doctors there are known to prescribe two Hefeweizens a day to feeble patients. The yeast used for this brew also imparts its unique spicy, clovey flavour. Some people even detect a light banana flavour. All of these wacky flavours are the natural 'signature' left by this specific yeast strain during its fermentation of the beer and no additional spices are added.","ibu":96,"name":"Skinny Tire Hefeweizen","state":"British Columbia","website":"http://www.steamworks.com/gastown_index.htm"},{"abv":5.5999999046,"address":"910 Montreal Circle","category":"Irish Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","ibu":9,"name":"Great Northern Porter","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":4.9000000954,"address":"Bergstrae 4","category":"German Lager","city":"Steinberg/Sachsen","country":"Germany","ibu":10,"name":"Pils Legende","state":"Sachsen","website":"http://www.wernesgruener.de/"},{"abv":8.13715058169956,"address":"30 Germania Street","category":"Irish Ale","city":"Boston","coordinates":[42.3144,-71.1034],"country":"United States","description":"A dark, full flavored English porter with Scottish heather honey. Samuel Adams® Honey Porter is a full-flavored, full-bodied English porter with a substantial roasted malt character, offering a smooth, rounded finish. This beer is brewed with traditional English Ale hops and is dry-hopped with East Kent Goldings, known for their spicy aroma and distinctive, earthy flavor. We brew Honey Porter with Scottish heather honey which balances the spiciness of the hops.\n\n\nThis brew is the perfect complement to glazed ham, spicy chili, and roasted vegetables like beets and carrots, which bring out the herbal notes found in the hops and the sweetness of the honey. Samuel Adams® Honey Porter also pairs well with rich desserts such as baklava and molasses cookies.","ibu":8,"name":"Samuel Adams Honey Porter","state":"Massachusetts","website":"http://www.samueladams.com/"},{"abv":6,"address":"1340 East Eighth Street #103","category":"North American Ale","city":"Tempe","coordinates":[33.4194,-111.916],"country":"United States","description":"Our Hop Knot IPA is made only from American malt and lots of American hops, which produce a big, broad-shouldered, hoppy beer backed up by a character as warm as, well, Mom and apple pie… \n\n\nHop Knot IPA get its peculiar name from the weaving of four different hops added at four separate times during the brewing process. Including our cavernous hop-back, which gets so stuffed with whole leaf hops that we feel genuine guilt for its excess. Hop Knot is an ale that is to be enjoyed with friends, spicy food or any time you need a good hop fix without the harsh bitterness. We hope you enjoy this pioneering beer made in the bold spirit of Americans everywhere. \n\n\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)","ibu":41,"name":"Hop Knot IPA","state":"Arizona","website":"http://www.fourpeaks.com/"},{"abv":6.5,"address":"514 South Eleventh Street","category":"British Ale","city":"Omaha","coordinates":[41.2553,-95.9306],"country":"United States","description":"Our Dundee Scotch Ale begins with a traditional \n\nsweetness and finishes with a full, malty flavor. Don’t be fooled by the dark color—this beer is delicious and surprisingly easy to drink.","ibu":64,"name":"Dundee Scotch Ale","state":"Nebraska","website":"http://www.upstreambrewing.com/"},{"abv":5.5,"address":"IP18 6JW","category":"British Ale","city":"Southwold","coordinates":[52.3277,1.6802000000000001],"country":"United Kingdom","description":"A golden bitter suffused with the aromas of a grapefruit grove. The massive citrus attack will burst on your palate allowing all the flavours of the imported New World hops to deliver their fruity bitterness.","ibu":108,"name":"Adnams Explorer","state":"Suffolk","website":"http://www.adnams.co.uk"},{"abv":2.0819346118539794,"address":"1872 North Commerce Street","city":"Milwaukee","coordinates":[43.0547,-87.9053],"country":"United States","ibu":118,"name":"Broke Spoke Pilsner","state":"Wisconsin","website":"http://www.lakefrontbrewery.com/index.html"},{"abv":13.526328911702183,"category":"North American Ale","city":"New York Mills","coordinates":[46.518,-95.3761],"country":"United States","ibu":75,"name":"Red","state":"Minnesota"},{"abv":6.5,"address":"120 Wilkinson Street","category":"North American Ale","city":"Syracuse","coordinates":[43.0508,-76.1617],"country":"United States","description":"A complex and artistically balanced multi-layered IPA (India Pale Ale) with an intense finish of cascade hops.","ibu":76,"name":"Im Paled Ale","state":"New York","website":"http://www.middleagesbrewing.com/"},{"abv":8.271753464540627,"category":"North American Ale","city":"Grand Island","coordinates":[47.9454,-122.304],"country":"United States","ibu":116,"name":"Copper Wheat","state":"Nebraska"},{"abv":3.5224974081062985,"address":"18 East 21st Street","category":"German Lager","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":107,"name":"Autumn Strong Lager","state":"Nebraska"},{"abv":12.893327601168698,"address":"1501 Arboretum Drive","category":"North American Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":63,"name":"IPA","state":"Wisconsin"},{"abv":10.399999619,"address":"1093 Highview Drive","category":"North American Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"Take an India Pale Ale and feed it steroids! Although open to the same interpretation as its sister styles, you should expect something robust, malty, alcoholic and with a hop profile that might rip your tongue out. The Imperial usage comes from Russian Imperial stout, a style of strong stout originally brewed in England for the Russian Imperial Court of the late 1700s; though Double IPA is often the preferred name.","ibu":26,"name":"Russian Imperial Stout","state":"Michigan","website":"http://www.michiganbrewing.com/"},{"abv":10,"address":"155 Mata Way Suite 104","category":"North American Ale","city":"San Marcos","coordinates":[33.1406,-117.15],"country":"United States","description":"First brewed in 2002 to celebrate the 15th Anniversary of the Pizza Port in Solana Beach, Hop 15 was imagined and designed by Tomme Arthur and Jeff Bagby. It was to be a celebration of 15 years of \"Good Beer Brings Good Cheer.\" So there are 15 different hop varieties that are added to the beer every 15 minutes. Over the years, Hop 15 has racked up numerous accolades. It has won two silver medals at the Great American Beer Festival. It also was named Alpha King in 2004 and received a first place award at the Bistro Double IPA beer festival in Hayward, CA. Hop 15 remains won of the stickiest most resinous beers we have ever tasted and for that, we are thankful it is on tap at our brewery each and every day.\n\n\nMalts- Two Row and English Light Crystal\n\nHops- We use 15 Different Varieties on a strictly don't ask don't tell policy\n\nYeast- White Labs California Ale and Proprietary Yeast Strains\n\n\nOriginal Gravity- 1.086\n\nTerminal Gravity- 1.014\n\n9.7 % ABV\n\n\nDraft- Available in Southern California 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold.","ibu":16,"name":"Hop 15 Ale","state":"California","website":"http://www.portbrewing.com/"},{"abv":5,"address":"2800 North Reading Road","category":"British Ale","city":"Adamstown","coordinates":[40.2369,-76.072],"country":"United States","description":"This English-style ale is brewed with Marris Otter and Caramel malts for a rich, reddish-copper color and smooth malty palate. The use of bittering and aroma addition hops balances the regal, sweet maltiness and imparts a softly perfumed aroma","ibu":89,"name":"Scarlet Lady Ale","state":"Pennsylvania","website":"http://www.stoudtsbeer.com/brewery.html"},{"abv":4,"address":"800 Vinial St.","category":"German Ale","city":"Pittsburgh","coordinates":[40.4569,-79.9915],"country":"United States","description":"Authentic wheat beer, brewed in the Southern German tradition, won the Silver Medal in 1997 and the Gold Medal at the 2000 in Denver, Colorado. Penn Weizen is top-fermented, cask-conditioned, and very effervescent with a slight hint of tangy clove flavor.","ibu":76,"name":"Penn Weizen","state":"Pennsylvania","website":"http://www.pennbrew.com/"},{"abv":3.961846461075722,"category":"North American Ale","city":"Vail","coordinates":[39.6403,-106.374],"country":"United States","ibu":90,"name":"Pale Ale","state":"Colorado"},{"abv":0.22860437531795674,"category":"German Lager","city":"Hradec Krlov","coordinates":[50.2094,15.8326],"country":"Czech Republic","ibu":69,"name":"Lion Lev Export Lager Beer Double Bock"},{"abv":6.21180740233335,"address":"901 Gilman Street","category":"North American Ale","city":"Berkeley","coordinates":[47.5917,-122.335],"country":"United States","ibu":10,"name":"IPA","state":"California"},{"abv":7.698880257879033,"address":"107 North Lincoln Avenue","category":"North American Ale","city":"Hastings","coordinates":[40.5843,-98.3912],"country":"United States","ibu":7,"name":"Red Ale","state":"Nebraska"},{"abv":10.236541062921688,"address":"519 Seabright Avenue #107","city":"Santa Cruz","coordinates":[36.9676,-122.008],"country":"United States","ibu":61,"name":"Red Nose","state":"California"},{"abv":8.75,"address":"30 Bridge St","category":"Other Style","city":"Millers Falls","country":"United States","description":"American Black Ale. Aromas of an American IPA, dark toffee and chocolate flavors without roasted bitterness.","ibu":65,"name":"Dark Element","state":"MA","website":"http://www.elementbeer.com"},{"abv":11.730270323441362,"address":"511 S. Kalamazoo Ave.","category":"British Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"Number one in a series of five stouts produced to help ease you through the cold and grey midwestern winters. This beer is full bodied with hints of chocolate, roasted barley, coffee flavors and a nice creamy head.","ibu":93,"name":"One Oatmeal Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":5.6999998093,"address":"910 Montreal Circle","category":"North American Ale","city":"Saint Paul","coordinates":[44.9139,-93.1396],"country":"United States","description":"A richer shade of Red. Summit has artfully crossed the boundaries of traditional IPA and Amber styles to create a brew all our own. Featuring an aromatic blend of Horizon, Amarillo and Cascade hops with nicely balanced malts for a flavor you’ll enjoy to the fullest.","ibu":44,"name":"Horizon Red Ale","state":"Minnesota","website":"http://www.summitbrewing.com/"},{"abv":5.1999998093,"address":"307 Oliphant Lane","category":"North American Ale","city":"Middletown","coordinates":[41.537,-71.2796],"country":"United States","description":"The first offering from the Coastal Extreme Brewing Company blends some of the world's finest ingredients into a delightful beer. In producing our amber ale, we selected the highest quality European and American malts and hops. This ale has a malt character which is delicately balanced with its hop profile so that consumers of all levels enjoy drinking it. Hurricane Amber Ale is a full flavored beer which clearly has more taste than other domestic and imported light beers while at the same time does not overpower the drinker with heavy body or excessive bitterness. So find yourself a cold 'Hurricane' and ENJOY!","ibu":98,"name":"Newport Storm Hurricane Amber Ale","state":"Rhode Island","website":"http://www.newportstorm.com/"},{"abv":5.5,"address":"1950 W. Fremont St.","category":"North American Ale","city":"Stockton","coordinates":[37.9551,-121.322],"country":"United States","description":"Hitman Gold is an American Pale Ale. The flavor is smooth but aggressively hopped with Simcoe Hops. The beer is best described as a “mini-IPA”. The beer is inspired by the famous wrestler Bret The Hitman Hart, who also is the artist who designed and drew the logo.","ibu":50,"name":"Hitman Gold","state":"California","website":"http://www.valleybrew.com/"},{"abv":5,"address":"461 South Road","category":"North American Lager","city":"Regency Park","coordinates":[-34.8727,138.573],"country":"Australia","description":"Coopers Premium Lager is quite different to the famous Coopers ales. This lager produces a refreshing flavour with a good balance of malt and hop characters and is brewed using no sugar. With its subtle fruity esters and light golden colour, combined with a judicious blend of Pride of Ringwood and Saaz hops. This produces a Lager with a crisp malty full flavour.","ibu":94,"name":"Coopers Premium Lager","state":"South Australia","website":"http://www.coopers.com.au/"},{"abv":9.5,"address":"2201 Arapahoe Street","category":"North American Ale","city":"Denver","coordinates":[39.7539,-104.989],"country":"United States","description":"Traditionally, Imperial Stouts, the biggest and boldest of all stouts, were brewed with massive amounts of roasted malts and hops, resulting in a velvety smooth but robust beer characterized by high alcohol content and extremely high hop bitterness. Meeting the challenge of this aggressive, challenging beer style, Great Divide’s Yeti Imperial Stout is an onslaught of the senses. An almost viscous, inky-black brew, Yeti opens with a massive, roasty, chocolate, coffee malt flavor that eventually gives way to rich toffee and burnt caramel notes. Packed with an enormous quantity of American hops, Yeti’s hop profile reveals a slightly citrusy, piney, and wonderfully dry hoppy finish.","ibu":80,"name":"Yeti Imperial Stout","state":"Colorado","website":"http://www.greatdivide.com/"},{"abv":5.1999998093,"address":"Neumarkt 1","category":"German Ale","city":"Schwelm","coordinates":[51.2847,7.2936],"country":"Germany","ibu":44,"name":"Hefe-Weizen","state":"Nordrhein-Westfalen"},{"abv":5.751276911116206,"address":"54 East Fourth Avenue","category":"North American Ale","city":"Vancouver","coordinates":[49.2673,-123.103],"country":"Canada","ibu":10,"name":"Pale Ale","state":"British Columbia"},{"abv":3.358331670441964,"address":"13450 - 102 Avenue","category":"North American Lager","city":"Surrey","coordinates":[49.1873,-122.85],"country":"Canada","ibu":50,"name":"Springboard Lager","state":"British Columbia","website":"http://www.centralcitybrewing.com/"},{"abv":12.641760803229204,"address":"2804 13th Street","city":"Columbus","coordinates":[41.4295,-97.3623],"country":"United States","ibu":106,"name":"Fire in the Hole!","state":"Nebraska"},{"abv":7.0999999046,"address":"Brauhausplatz 1","category":"Irish Ale","city":"Neuzelle","coordinates":[52.091,14.6509],"country":"Germany","ibu":79,"name":"Porter","state":"Brandenburg"},{"abv":9.208081230985053,"address":"3015-D Hopyard Road","city":"Pleasanton","coordinates":[37.677,-121.898],"country":"United States","ibu":55,"name":"Golden Ale","state":"California"},{"abv":2.071460585340855,"address":"9750 Indiana Parkway","category":"British Ale","city":"Munster","coordinates":[41.5354,-87.5158],"country":"United States","ibu":3,"name":"Pride & Joy Mild Ale","state":"Indiana","website":"http://www.threefloydspub.com/"},{"abv":4.5,"address":"279 Springfield Avenue","category":"North American Ale","city":"Berkeley Heights","coordinates":[40.6892,-74.4349],"country":"United States","ibu":31,"name":"Yorkshire Stout","state":"New Jersey"},{"abv":6.5999999046,"address":"Rue du Village 32","city":"Houffalize-Achouffe","coordinates":[50.1507,5.7442],"country":"Belgium","ibu":40,"name":"Chouffe-Bok","state":"Luxembourg"},{"abv":14.113421012015971,"address":"61 US Highway 1 South","category":"Irish Ale","city":"Metuchen","coordinates":[37.2283,-77.3903],"country":"United States","ibu":89,"name":"Gust-N-Gale Porter","state":"New Jersey"},{"abv":5,"address":"Mhlweg 18","city":"Reckendorf","coordinates":[50.0224,10.83],"country":"Germany","ibu":93,"name":"Kellerbier","state":"Bayern"},{"abv":3.5058763622420552,"address":"18 East 21st Street","category":"North American Ale","city":"Kearney","coordinates":[40.6966,-99.0815],"country":"United States","ibu":101,"name":"Amber Ale","state":"Nebraska"},{"abv":3.0700340757626665,"address":"1080 West San Marcos Boulevard","category":"North American Ale","city":"San Marcos","coordinates":[33.1345,-117.191],"country":"United States","ibu":53,"name":"Amber Ale","state":"California"},{"abv":7.5,"address":"781 Old Highway 8 SW","city":"New Brighton","coordinates":[45.036,-93.1984],"country":"United States","ibu":96,"name":"Wild Brunette","state":"Minnesota"},{"abv":6.1999998093,"address":"1001 16th Street #A-100","city":"Denver","coordinates":[39.7472,-104.995],"country":"United States","ibu":19,"name":"Purple Nightie","state":"Colorado"},{"abv":4.8000001907000005,"address":"4939 Pan American Freeway NE","category":"North American Lager","city":"Albuquerque","coordinates":[35.14,-106.6],"country":"United States","ibu":76,"name":"Rye On","state":"New Mexico"},{"abv":5.921815965508821,"address":"402 Seventh Street","category":"North American Lager","city":"Glenwood Springs","coordinates":[39.5476,-107.323],"country":"United States","ibu":31,"name":"Dos Rios Vienna Lager","state":"Colorado"},{"abv":7.543376561217736,"address":"717 East Butterfield Road","category":"Irish Ale","city":"Lombard","coordinates":[41.8358,-88.0091],"country":"United States","ibu":108,"name":"Palpitations Porter","state":"Illinois"},{"abv":1.6285668945880627,"address":"200 Dousman Street","category":"North American Lager","city":"Green Bay","coordinates":[44.52,-88.0173],"country":"United States","ibu":2,"name":"Old Broadway Cream Ale","state":"Wisconsin"},{"abv":7.3000001907,"address":"420 Acorn Lane","category":"German Lager","city":"Downingtown","coordinates":[40.0061,-75.6942],"country":"United States","description":"A full-bodied lager beer of exuberant and robust character. It’s muscle-man body comes from decocted German malts and noble German hops. Lagered long and cold to refine its strong temperament, St. Boisterous emerges smooth and seductive, with a malty sweet charm. This classic rendition of the German ‘maibock' style will warm your heart.","ibu":60,"name":"St. Boisterous Hellerbock","state":"Pennsylvania","website":"http://www.victorybeer.com"},{"abv":5.4000000954,"address":"800 Paxton Street","category":"North American Ale","city":"Harrisburg","coordinates":[40.2559,-76.8715],"country":"United States","description":"A Tröegs Brewery classic, our Pale Ale is copper colored with generous amounts of Cascade hops to create a floral, aromatic pale ale that smells as delicious as it tastes.","ibu":46,"name":"Troegs Pale Ale","state":"Pennsylvania","website":"http://www.troegs.com/"},{"abv":5,"address":"175 Bloor Street East","category":"North American Ale","city":"Toronto","coordinates":[43.6706,-79.3824],"country":"Canada","ibu":12,"name":"Red Jack","state":"Ontario"},{"abv":3.795314587296954,"address":"856 10th Street","city":"Arcata","coordinates":[40.87,-124.087],"country":"United States","ibu":72,"name":"Summer Nectar Wheat Ale","state":"California","website":"http://www.humboldtbrews.com/"},{"abv":7.5,"address":"1280 North McDowell Boulevard","category":"North American Ale","city":"Petaluma","coordinates":[38.2724,-122.662],"country":"United States","ibu":4,"name":"Maximus","state":"California","website":"http://www.lagunitas.com/"},{"abv":5.3000001907,"address":"675 Merrimon Avenue","category":"North American Ale","city":"Asheville","coordinates":[35.6221,-82.5536],"country":"United States","description":"A generous portion of American hops create a crisp citrus nose combined with a light, sweet finish – a well balanced beer that destroys the paradigm of an IPA.","ibu":31,"name":"Shiva IPA","state":"North Carolina","website":"http://www.ashevillepizza.com/"},{"abv":5.5999999046,"address":"1938 Pacific Avenue","category":"British Ale","city":"Tacoma","coordinates":[47.2436,-122.437],"country":"United States","description":"This E.S.B. is definately the house favorite. Exclusively hopped with Fuggles, this full bodied amber ale finishes smooth and clean. 5.6% ABV","ibu":118,"name":"Brown's Point ESB","state":"Washington","website":"http://harmon.harmonbrewingco.com/"},{"abv":4.8000001907000005,"address":"491 Ontario Street","category":"North American Ale","city":"Buffalo","coordinates":[42.9561,-78.8966],"country":"United States","description":"Our American Pale Ale. Made with American pale malt for a brilliant straw gold color, American hops (Cascade) for a refreshing citrusy hop character, and our signature ale yeast for a clean smooth finish. Available on draft, and seasonally in our Mixed","ibu":64,"name":"Barnstormer Pale Ale","state":"New York","website":"http://www.flyingbisonbrewing.com"},{"abv":12,"address":"8111 Dimond Hook Drive","category":"Other Style","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"SPECIAL COMMEMORATIVE BEER\n\n\nFormer brewer Ken Pajak teamed up with MSBC to create a very special beer to celebrate the 10 years that he and wife Shauna have owned Café Amsterdam. Since taking over this mid-town establishment, the Pajaks added a “beer & wine license” and subsequently transformed the European-style café into a beer-centric place to grab breakfast, lunch, dinner and all beers during, around and between these fabulous meals. \n\n\nThe cafe's beer menu is extensive and all-encompassing. The staff is knowledgeable and enthusiastic. And the beer pour is always right— temperature, glass, presentation. \n\n\n“No hops were harmed in the brewing of this beer.” \n\n\nGruit is an old style—one that incorporates spices, herbs and fruit but no hops. The latter detail makes this style very rare in modern times. Café Amsterdam’s Gruit is dark, strong and interesting. This combination of pale and dark malts, sage, thyme, cinnamon, black peppercorn and fresh orange peel composes distinctive, substantial flavors that meld together wonderfully. And at 12% ABV, this cellar-friendly ale is ready to lay you down! Thoroughly enjoy this old-world beer now but stash some away for later dwelvings. \n\n\nAvailability: \n\nAK - 22-oz bottles (limited release begins 05/29/2009)","ibu":33,"name":"Cafe Amsterdam's 10th Anniversary Gruit","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"89 Main Street West","category":"North American Lager","city":"Saint John","coordinates":[45.2567,-66.096],"country":"Canada","ibu":112,"name":"Moosehead Lager","state":"New Brunswick"},{"abv":5,"address":"310 Perry Street","category":"German Lager","city":"LaPorte","coordinates":[41.6124,-86.7268],"country":"United States","description":"A classic pilsner.","ibu":42,"name":"Millennium Lager","state":"Indiana","website":"http://www.backroadbrewery.com/"},{"abv":4.5,"address":"2050 Yavapai Dr","category":"German Ale","city":"Sedona","coordinates":[34.8661,-111.796],"country":"United States","ibu":93,"name":"Horseshoe Hefeweizen","state":"Arizona","website":"http://oakcreekbrew.com/"},{"abv":5.7300000191,"address":"701 West Glendale Avenue","category":"North American Ale","city":"Glendale","coordinates":[43.1,-87.9198],"country":"United States","description":"This tribute to St. Patrick's Day is smooth and creamy, with distinctive flavors and aromas reminiscent of bitter-sweet chocolate and dark coffee. Just one precious batch of this robust, ebony colored stout is brewed each year.","ibu":23,"name":"Sprecher Irish Stout","state":"Wisconsin","website":"http://www.sprecherbrewery.com/"},{"abv":13.417413786359022,"category":"North American Lager","city":"Mexico City","coordinates":[19.427,-99.1276],"country":"Mexico","description":"Handcrafted with all-natural ingredients, Modelo Especial has built a solid reputation as a classic, thirst-quenching beer. The brand represents the can-package of Grupo Modelo's portfolio and is also available in non-returnable bottles.\n\n\nModelo Especial is a must for those looking to capture the flavor of Mexico. Modelo Especial has 145 calories per 12 ounce serving.","ibu":53,"name":"Modelo especial","website":"http://www.gmodelo.com.mx/"},{"abv":13.600000381000001,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"From their website:\n\n\"Have you read the description for the regular Crooked Tree yet? Well this beer is almost the same just double. We actually took the Crooked Tree recipe and doubled all of the ingredients except the water, just the way a DOUBLE should be made. Big hops balanced with tons of malt give this beer a huge body. Although this beer is as cool as \"the Fonz\" when first purchased, it gets really mellow and smooth with some age. After a year or two stored in a cool dark place you'll notice the heavy caramel and malt flavors are trying to sneak past the hops, they’re just not fast enough. This beer is hugely delicious so it will need your undivided attention (the chores can wait....trust us).\";\"0","ibu":82,"name":"Double Crooked Tree I.P.A.","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":6,"address":"1800 West Fulton Street","category":"British Ale","city":"Chicago","coordinates":[41.8871,-87.6721],"country":"United States","ibu":21,"name":"Stockyard Oatmeal Stout","state":"Illinois"},{"abv":4.8000001907000005,"address":"8938 Krum Ave.","category":"North American Ale","city":"Galesburg","coordinates":[42.2843,-85.4538],"country":"United States","description":"A golden beer brewed with pale malts. Large American hop additions contribute a crisp refreshing bitterness. A tribute to the Great Lakes, T.C.B. is a truly quaffable beer.","ibu":4,"name":"Third Coast Beer","state":"Michigan","website":"http://www.bellsbeer.com/"},{"abv":5.1999998093,"address":"814 W Hamilton St","category":"Belgian and French Ale","city":"Allentown","coordinates":[40.6016,-75.474],"country":"United States","description":"Unfiltered Belgian Style beer is brewed with special yeast that lends a unique refreshing flavor to the beer. Brewed with Chamomile, Curacao Orange peel and Coriander to create a smooth citrus finish. Usually enjoyed with a slice of lemon.","ibu":81,"name":"Steelgaarden Wit","state":"Pennsylvania","website":"http://www.thebrewworks.com/allentown-brewworks/"},{"abv":1.8993766424689706,"address":"210 Swanson Avenue","category":"German Ale","city":"Lake Havasu City","coordinates":[34.4686,-114.341],"country":"United States","description":"70% Wheat Malt Makes This A Light & Refreshing Ale For A Hot Day!","ibu":107,"name":"Dry Heat Hefeweizen","state":"Arizona","website":"http://www.mudsharkbrewingco.com/"},{"abv":9,"address":"Doornzelestraat 20","city":"Lochristi-Hijfte","coordinates":[51.1159,3.8158000000000003],"country":"Belgium","ibu":4,"name":"Flemish Primitive Wild Ale (Surly Bird)","state":"Oost-Vlaanderen"},{"abv":4.3000001907,"address":"104 North Lewis Street","category":"North American Lager","city":"Monroe","coordinates":[47.8559,-121.971],"country":"United States","ibu":15,"name":"Weissbier","state":"Washington"},{"abv":9.6000003815,"address":"1075 East 20th Street","city":"Chico","coordinates":[39.7246,-121.816],"country":"United States","ibu":30,"name":"Bigfoot 2003","state":"California","website":"http://www.sierranevada.com/"},{"abv":11.440217677340708,"category":"Irish Ale","city":"De Pere","coordinates":[44.4489,-88.0604],"country":"United States","ibu":111,"name":"Princess of Darkness Porter","state":"Wisconsin"},{"abv":8.805982571019888,"address":"40 Bowden Square","city":"Southampton","coordinates":[40.8903,-72.3927],"country":"United States","ibu":25,"name":"English Pale Ale","state":"New York","website":"http://southamptonbrewery.com"},{"abv":4.144282787472898,"category":"Irish Ale","city":"Denver","coordinates":[39.7392,-104.985],"country":"United States","ibu":27,"name":"Porcupine Porter","state":"Colorado"},{"abv":4.633546955873985,"address":"3101 North Tenaya Way","category":"North American Ale","city":"Las Vegas","coordinates":[36.2154,-115.251],"country":"United States","ibu":36,"name":"India Pale Ale","state":"Nevada"},{"abv":8.11729354163248,"address":"1300 Central Avenue","city":"McKinleyville","coordinates":[40.9491,-124.102],"country":"United States","ibu":39,"name":"Fat Bastard Barleywine (discontinued)","state":"California","website":"http://www.sixriversbrewery.com/"},{"abv":0.3888124624825484,"address":"842 East 65th Street","city":"Indianapolis","coordinates":[39.8735,-86.1427],"country":"United States","ibu":28,"name":"Extra Special Bitter","state":"Indiana"},{"abv":7,"address":"Vesterflledvej 100","category":"German Lager","city":"Kbenhavn","coordinates":[55.6667,12.5393],"country":"Denmark","ibu":59,"name":"47 Bryg"},{"abv":3.3046636277380648,"address":"1501 Arboretum Drive","category":"German Ale","city":"Oshkosh","coordinates":[44.0342,-88.5608],"country":"United States","ibu":73,"name":"Winnebago Wheat","state":"Wisconsin"},{"abv":11.077627938895164,"category":"North American Lager","city":"Saint Cloud","coordinates":[45.5539,-94.1703],"country":"United States","ibu":5,"name":"Golden Honey Wheat","state":"Minnesota"},{"abv":10.100000381,"address":"302 N. Plum St.","category":"North American Ale","city":"Lancaster","coordinates":[40.0438,-76.2984],"country":"United States","ibu":97,"name":"Boss Hog Double IPA","state":"Pennsylvania","website":"http://www.lancasterbrewing.com/index.html"},{"abv":7.51117720153699,"address":"600 East Superior Street","city":"Duluth","coordinates":[46.7926,-92.0909],"country":"United States","ibu":111,"name":"9½ Wheats","state":"Minnesota"},{"abv":5.3000001907,"address":"2401 Blake St.","category":"German Lager","city":"Denver","coordinates":[39.7582,-104.99],"country":"United States","description":"Dogtoberfest are shrouded in mystery, but scholars think it has everything to do with an insane German king and a crazed Oompah band. You can read the full historical record of Dogtoberfest at FlyingDogAles.com. Dogtoberfest is deep mahogany in color with an intriguing caramel finish and brewed with 100% imported German ingredients for a true German flavor.","ibu":40,"name":"Dogtoberfest Octoberfest","state":"Colorado","website":"http://www.flyingdogales.com/"},{"abv":8.41537938866453,"address":"2151 Salvio Street","category":"German Lager","city":"Concord","coordinates":[37.978,-122.034],"country":"United States","ibu":71,"name":"Marzen","state":"California"},{"abv":5.1999998093,"address":"24 North Pleasant Street","category":"German Lager","city":"Amherst","coordinates":[42.3763,-72.5199],"country":"United States","description":"Crisp light lager, slightly malty with subtle hints of wildflower honey. Finished with Hallertau and Saaz hops","ibu":43,"name":"Honey Pilsner","state":"Massachusetts","website":"http://www.amherstbrewing.com/"},{"abv":3.9155693492345502,"address":"2320 SE OSU Drive","city":"Newport","coordinates":[44.6202,-124.052],"country":"United States","ibu":4,"name":"Old Crustacean Barleywine 1993","state":"Oregon","website":"http://www.rogue.com"},{"abv":7.8000001907000005,"address":"345 Healdsburg Avenue","category":"North American Ale","city":"Healdsburg","coordinates":[38.6112,-122.871],"country":"United States","description":"This bold winter ale follows English brewing traditions, but with our California twist. Bold hops, but balanced ... It's a double IPA!","ibu":74,"name":"Racer X","state":"California","website":"http://www.bearrepublic.com/"},{"abv":1.7039175316771815,"address":"123 East Doty Street","category":"Irish Ale","city":"Madison","coordinates":[43.0745,-89.3802],"country":"United States","ibu":28,"name":"Black Earth Porter","state":"Wisconsin"},{"abv":3.456991238108167,"address":"600 East Gregory Street","city":"Pensacola","coordinates":[30.4181,-87.2024],"country":"United States","ibu":86,"name":"What the Gent on the Floor is Having 1997","state":"Florida"},{"abv":3.6111215327223944,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":67,"name":"Hopfenteufel Alt Bier","state":"Wisconsin"},{"abv":9.598139507313453,"address":"740 North Plankinton Avenue","category":"North American Ale","city":"Milwaukee","coordinates":[43.0399,-87.9117],"country":"United States","ibu":25,"name":"Honey Creek Pale Ale","state":"Wisconsin"},{"abv":14.290734896860828,"address":"3832 Hillside Drive","category":"North American Ale","city":"Delafield","coordinates":[43.0481,-88.3553],"country":"United States","ibu":115,"name":"Oats and Barley Stout","state":"Wisconsin"},{"abv":13.59116412041353,"category":"North American Lager","city":"Lincoln","coordinates":[40.8069,-96.6817],"country":"United States","ibu":95,"name":"Weizen","state":"Nebraska"},{"abv":12.184793681905822,"address":"205 North Broadway","category":"North American Ale","city":"Aurora","coordinates":[41.7605,-88.309],"country":"United States","ibu":80,"name":"Aurora Amber Ale","state":"Illinois"},{"abv":5.8000001907000005,"address":"445 St.Paul Street","category":"North American Ale","city":"Rochester","coordinates":[43.1646,-77.6155],"country":"United States","ibu":106,"name":"Dundee Stout","state":"New York"},{"abv":12,"address":"511 S. Kalamazoo Ave.","category":"North American Ale","city":"Marshall","coordinates":[42.2667,-84.9641],"country":"United States","description":"It's big and full bodied with lots of roasted malts and balanced with heavy hops to put this imperial in a league of its own.","ibu":66,"name":"Plead the 5th Imperial Stout","state":"Michigan","website":"http://www.darkhorsebrewery.com/"},{"abv":5,"address":"600 Elmira Road","city":"Ithaca","coordinates":[42.4145,-76.5315],"country":"United States","description":"Brewed with New York State Blueberries and Brettanomyces, Le Bleu is a blend of barrels filled in 2007, 2008, and 2009. It's finished in the bottle with Champagne yeast. \n\n\nEnjoy the dusty rose appearance, mouthwatering aroma of ripe berries, piquant flavor and quick finish.","ibu":118,"name":"LeBleu","state":"New York"},{"abv":6.5,"address":"87 Doe Run Rd","category":"North American Ale","city":"Manheim","coordinates":[40.1707,-76.3838],"country":"United States","description":"This is our offering to the hop heads! A decidedly hoppy, bitter, and moderately strong American IPA. We use a generous amount of whole leaf Cascade, Centennial and Citra hops to showcase the freshness and earthy flavors that only hops can provide.","ibu":4,"name":"JoBoy's IPA","state":"Pennsylvania","website":"http://www.joboysbrewpub.com/"},{"abv":8,"address":"AB43 8UE","category":"North American Ale","city":"Fraserburgh","coordinates":[57.683,-2.003],"country":"United Kingdom","description":"A strong, silky smooth imperial stout with a deep, dark ruby appearance. Mocha, bitter chocolate, liquorice and dark cherry flavours prevail, before the balanced, warming and encapsulating finish.\n\n\nA contemporary Scottish take on an age old Russian classic style originally brewed for the Tsars. Our interpretation brings together hops from both sides of the Atlantic, amazing flavoured malts and dark sugars.\n\n\nLike the original BrewDog, this beer would never bite you but would much rather give you a lick on the face. Look Out!\n\n\nServing Suggestion: Enjoy with an air of aristocratic nonchalance","ibu":111,"name":"Rip Tide","website":"http://brewdog.com/"},{"abv":16,"address":"8111 Dimond Hook Drive","category":"Belgian and French Ale","city":"Anchorage","coordinates":[61.1473,-149.844],"country":"United States","description":"Venus—goddess of love and beauty—exudes grace and voluptuousness. Indulgent with lush dark malts and sensuous star anise, VENUS is decadent and divine in body and spirit. Leisure lounging in French oak Cabernet Sauvignon wine casks results in a lovely liquid feast of fabulously luxurious flavors.","ibu":10,"name":"Venus - Belgian-style Quadrupel","state":"Alaska","website":"http://www.midnightsunbrewing.com/"},{"abv":5,"address":"127 Elm St., Unit C","category":"North American Ale","city":"Milford","coordinates":[42.8368,-71.6626],"country":"United States","ibu":102,"name":"Engine 5","state":"New Hampshire","website":"http://www.pennichuckbrewing.com/"},{"abv":5.5,"address":"811 Edward Street","category":"British Ale","city":"Utica","coordinates":[43.1045,-75.2452],"country":"United States","description":"We use 100% Scottish Maris Otter Malt. Traditionally used in the distilling industry. The combination of the Scottish Malt and slow aging process produces a unique brew as distinctive as single malt whiskey with a flavor than any other beer.","ibu":80,"name":"Saranac Single Malt","state":"New York","website":"http://www.saranac.com"},{"abv":5.3000001907,"address":"357 Salmon Brook Street","category":"North American Ale","city":"Granby","coordinates":[41.9658,-72.793],"country":"United States","description":"Our Stout is brewed with English malt, hops and oats to produce a smooth coffee-like richness with a pleasant bittersweet finish.","ibu":31,"name":"Three Steve Stout","state":"Connecticut","website":"http://www.cambridgebrewhouse.com/"},{"abv":9.5,"address":"11197 Brockway Road","category":"North American Ale","city":"Truckee","coordinates":[39.322,-120.163],"country":"United States","ibu":63,"name":"Imperial Eclipse Stout","state":"California","website":"http://www.fiftyfiftybrewing.com/"},{"abv":5.9000000954,"address":"336 Ruth Carney Drive","category":"North American Ale","city":"Windsor","coordinates":[43.513,-72.4015],"country":"United States","description":"From their site:\n\n\n\"Harpoon IPA is an interpretation of the classic English style using hops and malt grown in the United States.","ibu":105,"name":"Harpoon IPA","state":"Vermont","website":"http://www.harpoonbrewery.com/"},{"abv":4.6999998093,"address":"1 Jefferson Avenue","category":"Other Style","city":"Chippewa Falls","coordinates":[44.9449,-91.3968],"country":"United States","ibu":118,"name":"Leinenkugel's Berry Weiss","state":"Wisconsin","website":"http://www.leinie.com/welcome.html"},{"abv":11.401517014234884,"city":"Watertown","coordinates":[43.1947,-88.729],"country":"United States","ibu":34,"name":"Dunkle","state":"Wisconsin"},{"abv":5.5,"address":"500 Linden Street","category":"Belgian and French Ale","city":"Fort Collins","coordinates":[40.5929,-105.07],"country":"United States","description":"Born of a flood and centuries-old Belgian text, 1554 Enlightened Black Ale uses a light lager yeast strain and dark chocolaty malts to redefine what dark beer can be. In 1997, a Fort Collins flood destroyed the original recipe our researcher, Phil Benstein, found in the library. So Phil and brewmaster, Peter Bouckaert, traveled to Belgium to retrieve this unique style lost to the ages. Their first challenge was deciphering antiquated script and outdated units of measurement, but trial and error (and many months of in-house sampling) culminated in 1554, a highly quaffable dark beer with a moderate body and mouthfeel.","ibu":16,"name":"1554 Enlightened Black Ale","state":"Colorado","website":"http://www.newbelgium.com/"},{"abv":3.36844144504986,"address":"61 Bridge Street","category":"North American Lager","city":"Milford","coordinates":[40.5684,-75.0954],"country":"United States","ibu":107,"name":"Golden Wheat Light","state":"New Jersey"},{"abv":14.38566614137682,"address":"23 White Deer Plaza","category":"North American Ale","city":"Sparta","coordinates":[41.0323,-74.6407],"country":"United States","ibu":40,"name":"Log Cabin Nut Brown","state":"New Jersey"},{"abv":4.9000000954,"address":"Hildesheimer Strae 132","city":"Hannover","coordinates":[52.3544,9.7532],"country":"Germany","ibu":65,"name":"Ratskeller","state":"Niedersachsen"},{"abv":5.083091659693132,"category":"North American Ale","city":"Boulder","coordinates":[40.015,-105.271],"country":"United States","ibu":26,"name":"Pale Ale","state":"Colorado"},{"abv":1.3732714020106074,"address":"800 East Lincoln Avenue","city":"Fort Collins","coordinates":[40.5894,-105.063],"country":"United States","ibu":34,"name":"Bobby","state":"Colorado"},{"abv":10.5,"address":"6 Chapel Close","city":"South Stoke","coordinates":[51.5462,-1.1355],"country":"United Kingdom","ibu":24,"name":"Criminally Bad Elf","state":"Oxford"},{"abv":7.193003785353468,"address":"5417 Trumpeter Way","city":"Missoula","coordinates":[46.9223,-114.073],"country":"United States","ibu":5,"name":"Crystal Ale","state":"Montana"},{"abv":2.266448683073988,"address":"7474 Towne Center Parkway #101","city":"Papillion","coordinates":[41.1339,-96.0307],"country":"United States","ibu":76,"name":"Belgian Wit","state":"Nebraska"},{"abv":5.859518626645643,"address":"113 North Broadway","category":"North American Ale","city":"Billings","coordinates":[45.7822,-108.506],"country":"United States","ibu":7,"name":"Fat Belly Amber","state":"Montana"},{"abv":3.2000000477,"address":"550 South Wisconsin Avenue","category":"North American Lager","city":"Gaylord","coordinates":[45.0223,-84.6826],"country":"United States","description":"An American-style \"light beer\". Formulated to appeal to those who prefer a lighter tasting brew.","ibu":85,"name":"Buck Naked","state":"Michigan","website":"http://www.bigbuck.com/gaylord.html"},{"abv":3.9000000954000003,"address":"1093 Highview Drive","category":"Belgian and French Ale","city":"Webberville","coordinates":[42.6616,-84.1946],"country":"United States","description":"An authentic Belgian fruit flavored and spiced ale with a pronounced raspberry flavor and aroma, accented by orange peel and coriander. Clear and bright golden color with a raspberry tint.","ibu":109,"name":"Celis Raspberry","state":"Michigan","website":"http://www.michiganbrewing.com/"}] \ No newline at end of file From 80a915c1687958ebe9f34d14071d88761a5a18db Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:08:41 -0300 Subject: [PATCH 06/16] Dockernize backend --- backend/.gitignore | 2 +- backend/Dockerfile | 20 ++++++++++++++++++++ backend/database/database.go | 4 ++-- backend/docker-compose.yml | 35 +++++++++++++++++++++++++++++++++++ backend/main.go | 12 ++++++++++++ 5 files changed, 70 insertions(+), 3 deletions(-) create mode 100644 backend/Dockerfile create mode 100644 backend/docker-compose.yml diff --git a/backend/.gitignore b/backend/.gitignore index 2eea525d..4c49bd78 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -1 +1 @@ -.env \ No newline at end of file +.env diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 00000000..aab134f4 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,20 @@ +FROM golang:1.19-alpine + +WORKDIR /app + + +COPY go.mod ./ +COPY go.sum ./ + + +RUN go mod download + +COPY . . + +RUN go build -o app + +EXPOSE 5000 + +RUN chmod +x ./app + +CMD [ "./app" ] \ No newline at end of file diff --git a/backend/database/database.go b/backend/database/database.go index 8343cec1..30b95e18 100644 --- a/backend/database/database.go +++ b/backend/database/database.go @@ -23,13 +23,13 @@ var ( DB_USER string = readEnvs("DB_USER") DB_PASSWORD string = readEnvs("DB_PASSWORD") DB_HOST string = readEnvs("DB_HOST") - DB_DATABASE string = readEnvs("DB_DATABASE") + DB_NAME string = readEnvs("DB_NAME") DB_POST string = readEnvs("DB_POST") ) func StartDB() { url := fmt.Sprintf("host=%s user=%s password=%s dbname=%s port=%s sslmode=disable TimeZone=America/Sao_Paulo", - DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE, DB_POST) + DB_HOST, DB_USER, DB_PASSWORD, DB_NAME, DB_POST) database, err := gorm.Open(postgres.Open(url), &gorm.Config{SkipDefaultTransaction: true}) if err != nil { log.Fatal("error :", err) diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml new file mode 100644 index 00000000..5b46b8e5 --- /dev/null +++ b/backend/docker-compose.yml @@ -0,0 +1,35 @@ +version: '3' + + +services: + app: + restart: on-failure + depends_on: + - fullstack-postgres + build: . + ports: + - "5000:5000" + networks: + - fullstack + + fullstack-postgres: + image: postgres:latest + container_name: full_db_postgres + environment: + - POSTGRES_USER=${DB_USER} + - POSTGRES_PASSWORD=${DB_PASSWORD} + - POSTGRES_DB=${DB_NAME} + - DATABASE_HOST=${DB_HOST} + ports: + - '5432:5432' + volumes: + - database_postgres:/var/lib/postgresql/data + networks: + - fullstack + +volumes: + database_postgres: + +networks: + fullstack: + driver: bridge \ No newline at end of file diff --git a/backend/main.go b/backend/main.go index 06ab7d0f..3d79a1c2 100644 --- a/backend/main.go +++ b/backend/main.go @@ -1 +1,13 @@ package main + +import ( + "github.com/ronanzindev/backend-test-two/database" + "github.com/ronanzindev/backend-test-two/server" +) + +func main() { + database.StartDB() + database.PopulateDB() + server := server.NewServer() + server.Run() +} From 8a2723182a8b3a812fd2a1b9cf110de124410bff Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:17:22 -0300 Subject: [PATCH 07/16] Setup frontend --- frontend/.dockerignore | 1 + frontend/.gitignore | 23 + frontend/README.md | 46 + frontend/package-lock.json | 28817 ++++++++++++++++++++++++++++++ frontend/package.json | 43 + frontend/public/favicon.ico | Bin 0 -> 3870 bytes frontend/public/index.html | 43 + frontend/public/logo192.png | Bin 0 -> 5347 bytes frontend/public/logo512.png | Bin 0 -> 9664 bytes frontend/public/manifest.json | 25 + frontend/public/robots.txt | 3 + frontend/src/App.css | 38 + frontend/src/App.tsx | 26 + frontend/src/index.css | 13 + frontend/src/index.tsx | 19 + frontend/src/react-app-env.d.ts | 1 + frontend/src/reportWebVitals.ts | 15 + frontend/tsconfig.json | 26 + 18 files changed, 29139 insertions(+) create mode 100644 frontend/.dockerignore create mode 100644 frontend/.gitignore create mode 100644 frontend/README.md create mode 100644 frontend/package-lock.json create mode 100644 frontend/package.json create mode 100644 frontend/public/favicon.ico create mode 100644 frontend/public/index.html create mode 100644 frontend/public/logo192.png create mode 100644 frontend/public/logo512.png create mode 100644 frontend/public/manifest.json create mode 100644 frontend/public/robots.txt create mode 100644 frontend/src/App.css create mode 100644 frontend/src/App.tsx create mode 100644 frontend/src/index.css create mode 100644 frontend/src/index.tsx create mode 100644 frontend/src/react-app-env.d.ts create mode 100644 frontend/src/reportWebVitals.ts create mode 100644 frontend/tsconfig.json diff --git a/frontend/.dockerignore b/frontend/.dockerignore new file mode 100644 index 00000000..b512c09d --- /dev/null +++ b/frontend/.dockerignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 00000000..4d29575d --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 00000000..b87cb004 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,46 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.\ +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.\ +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 00000000..e080cac1 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,28817 @@ +{ + "name": "frontend", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.1.0", + "dependencies": { + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "@types/jest": "^27.5.2", + "@types/node": "^16.18.12", + "@types/react": "^18.0.27", + "@types/react-dom": "^18.0.10", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "typescript": "^4.9.5", + "web-vitals": "^2.1.4" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.1.0.tgz", + "integrity": "sha512-mMVJ/j/GbZ/De4ZHWbQAQO1J6iVnjtZLc9WEdkUQb8S/Bu2cAF2bETXUgMAdvMG3/ngtKmcNBe+Zms9bg6jnQQ==" + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", + "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", + "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", + "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "dependencies": { + "@babel/types": "^7.20.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.2.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "dependencies": { + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dependencies": { + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "dependencies": { + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", + "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", + "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.13.tgz", + "integrity": "sha512-7T6BKHa9Cpd7lCueHBBzP0nkXNina+h5giOZw+a8ZpMfPFY19VjJAjIxyFHuWkhCWgL6QMqRiY/wB1fLXzm6Mw==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.20.12", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz", + "integrity": "sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", + "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", + "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", + "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", + "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-flow": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.20.2.tgz", + "integrity": "sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", + "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz", + "integrity": "sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.20.12", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-typescript": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "dependencies": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", + "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-typescript": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", + "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", + "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz", + "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4", + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <4.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", + "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.16.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz", + "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/@testing-library/jest-dom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.21.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.0.tgz", + "integrity": "sha512-35EhHNOXgxnUgh4XCJsGhE7zdlDhYDN/aMG6UbkByCFFNgQ7b3U+uVoqBpicFydR8JEfgdjCF7SJ7MiJfzuiTA==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "27.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", + "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", + "dependencies": { + "jest-matcher-utils": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" + }, + "node_modules/@types/node": { + "version": "16.18.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", + "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "node_modules/@types/react": { + "version": "18.0.27", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz", + "integrity": "sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.0.10", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz", + "integrity": "sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.5", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz", + "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + }, + "node_modules/@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.51.0.tgz", + "integrity": "sha512-wcAwhEWm1RgNd7dxD/o+nnLW8oH+6RK1OGnmbmkj/GGoDPV1WWMVP0FXYQBivKHdwM1pwii3bt//RC62EriIUQ==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/type-utils": "5.51.0", + "@typescript-eslint/utils": "5.51.0", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.51.0.tgz", + "integrity": "sha512-8/3+ZyBENl2aog1/QB3S39ptkZ2oRhDB+sJt15UWXBE3skgwL1C8BN9RjpOyhTejwR2hVrvqEjcYcNY6qtZ7nw==", + "dependencies": { + "@typescript-eslint/utils": "5.51.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz", + "integrity": "sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/typescript-estree": "5.51.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", + "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", + "dependencies": { + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.51.0.tgz", + "integrity": "sha512-QHC5KKyfV8sNSyHqfNa0UbTbJ6caB8uhcx2hYcWVvJAZYJRBo5HyyZfzMdRx8nvS+GyMg56fugMzzWnojREuQQ==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.51.0", + "@typescript-eslint/utils": "5.51.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", + "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", + "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", + "dependencies": { + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.51.0.tgz", + "integrity": "sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/typescript-estree": "5.51.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", + "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", + "dependencies": { + "@typescript-eslint/types": "5.51.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bonjour-service": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz", + "integrity": "sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001451", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", + "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", + "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz", + "integrity": "sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz", + "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.2.tgz", + "integrity": "sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==", + "dependencies": { + "browserslist": "^4.21.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssdb": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz", + "integrity": "sha512-0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.14", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", + "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", + "dependencies": { + "cssnano-preset-default": "^5.2.13", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.13", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", + "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.3", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.1", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/deep-equal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "dependencies": { + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/defined": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/detective": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "dependencies": { + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "node_modules/dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.295", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.295.tgz", + "integrity": "sha512-lEO94zqf1bDA3aepxwnWoHUjA8sZ+2owgcSZjYQy0+uOSEclJX0VieZC+r+wLpSxUHRd6gG32znTWmr+5iGzFw==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.34.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", + "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", + "dependencies": { + "@eslint/eslintrc": "^1.4.1", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.1.tgz", + "integrity": "sha512-GRy87AqUi2Ij69pe0YnOXm3oGBCgnFwfIv+Hu9q/kT3jL0pX1cXA7aO+oJnvdpbJy2+riOPqGsa3iAkL888NLg==", + "dependencies": { + "@typescript-eslint/utils": "^5.43.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", + "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", + "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", + "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.22", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", + "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", + "dependencies": { + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz", + "integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", + "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", + "dependencies": { + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.1.tgz", + "integrity": "sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss": { + "version": "8.4.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", + "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", + "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", + "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", + "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", + "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz", + "integrity": "sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/tailwindcss": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.6.tgz", + "integrity": "sha512-BfgQWZrtqowOQMC2bwaSNe7xcIjdDEgixWGYOd6AL0CbKHJlvhfdbINeAW76l1sO+1ov/MJ93ODJ9yluRituIw==", + "dependencies": { + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.1", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.6", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.0.9", + "postcss-import": "^14.1.0", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "6.0.0", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/tailwindcss/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.16.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.3.tgz", + "integrity": "sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==", + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.75.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", + "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", + "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz", + "integrity": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz", + "integrity": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-build": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.4.tgz", + "integrity": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.4", + "workbox-broadcast-update": "6.5.4", + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-google-analytics": "6.5.4", + "workbox-navigation-preload": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-range-requests": "6.5.4", + "workbox-recipes": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4", + "workbox-streams": "6.5.4", + "workbox-sw": "6.5.4", + "workbox-window": "6.5.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz", + "integrity": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-core": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.4.tgz", + "integrity": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==" + }, + "node_modules/workbox-expiration": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.4.tgz", + "integrity": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz", + "integrity": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==", + "dependencies": { + "workbox-background-sync": "6.5.4", + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz", + "integrity": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-precaching": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.4.tgz", + "integrity": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==", + "dependencies": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz", + "integrity": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-recipes": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.4.tgz", + "integrity": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==", + "dependencies": { + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-routing": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.4.tgz", + "integrity": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-strategies": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.4.tgz", + "integrity": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==", + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-streams": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.4.tgz", + "integrity": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==", + "dependencies": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4" + } + }, + "node_modules/workbox-sw": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.4.tgz", + "integrity": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz", + "integrity": "sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.4" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.4.tgz", + "integrity": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.4" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@adobe/css-tools": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.1.0.tgz", + "integrity": "sha512-mMVJ/j/GbZ/De4ZHWbQAQO1J6iVnjtZLc9WEdkUQb8S/Bu2cAF2bETXUgMAdvMG3/ngtKmcNBe+Zms9bg6jnQQ==" + }, + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", + "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==" + }, + "@babel/core": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", + "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/eslint-parser": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", + "requires": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/generator": { + "version": "7.20.14", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", + "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "requires": { + "@babel/types": "^7.20.7", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.20.12", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", + "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/helper-split-export-declaration": "^7.18.6" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", + "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.2.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", + "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "requires": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "requires": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", + "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "requires": { + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", + "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + } + }, + "@babel/helper-replace-supers": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", + "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "requires": { + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", + "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "requires": { + "@babel/types": "^7.20.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" + }, + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + }, + "@babel/helper-wrap-function": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", + "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "requires": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + } + }, + "@babel/helpers": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", + "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "requires": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", + "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", + "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.7" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", + "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.13.tgz", + "integrity": "sha512-7T6BKHa9Cpd7lCueHBBzP0nkXNina+h5giOZw+a8ZpMfPFY19VjJAjIxyFHuWkhCWgL6QMqRiY/wB1fLXzm6Mw==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.20.12", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.19.0" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", + "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", + "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz", + "integrity": "sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", + "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-import-assertions": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", + "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", + "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", + "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", + "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.20.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", + "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", + "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", + "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/template": "^7.20.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", + "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", + "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "requires": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-flow": "^7.18.6" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "requires": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", + "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "requires": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", + "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "requires": { + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.20.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", + "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "requires": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-identifier": "^7.19.1" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "requires": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", + "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.20.5", + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", + "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.20.2.tgz", + "integrity": "sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", + "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.20.7" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", + "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "regenerator-transform": "^0.15.1" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.19.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz", + "integrity": "sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==", + "requires": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", + "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "requires": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz", + "integrity": "sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.20.12", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-typescript": "^7.20.0" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.9" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/preset-env": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", + "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "requires": { + "@babel/compat-data": "^7.20.1", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.20.1", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.2", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.20.2", + "@babel/plugin-transform-classes": "^7.20.2", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.20.2", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.19.6", + "@babel/plugin-transform-modules-commonjs": "^7.19.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.6", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.20.1", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.20.2", + "babel-plugin-polyfill-corejs2": "^0.3.3", + "babel-plugin-polyfill-corejs3": "^0.6.0", + "babel-plugin-polyfill-regenerator": "^0.4.1", + "core-js-compat": "^3.25.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + } + }, + "@babel/preset-typescript": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", + "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-typescript": "^7.18.6" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "@babel/runtime": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", + "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", + "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.7", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", + "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" + }, + "@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "requires": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + } + }, + "@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "requires": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + } + }, + "@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "requires": {} + }, + "@csstools/selector-specificity": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz", + "integrity": "sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==", + "requires": {} + }, + "@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + }, + "@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + } + }, + "@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "requires": { + "@sinclair/typebox": "^0.24.1" + } + }, + "@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "requires": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "requires": { + "eslint-scope": "5.1.1" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "requires": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + } + }, + "@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + } + }, + "@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + } + }, + "@rushstack/eslint-patch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", + "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" + }, + "@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "requires": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@testing-library/dom": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.16.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz", + "integrity": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==", + "requires": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + } + }, + "@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "requires": { + "@babel/runtime": "^7.12.5" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + }, + "@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==" + }, + "@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/eslint": { + "version": "8.21.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.0.tgz", + "integrity": "sha512-35EhHNOXgxnUgh4XCJsGhE7zdlDhYDN/aMG6UbkByCFFNgQ7b3U+uVoqBpicFydR8JEfgdjCF7SJ7MiJfzuiTA==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" + }, + "@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "requires": { + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "27.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", + "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", + "requires": { + "jest-matcher-utils": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" + }, + "@types/node": { + "version": "16.18.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", + "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "@types/react": { + "version": "18.0.27", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz", + "integrity": "sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.0.10", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz", + "integrity": "sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==", + "requires": { + "@types/react": "*" + } + }, + "@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "requires": { + "@types/node": "*" + } + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "requires": { + "@types/express": "*" + } + }, + "@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "requires": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "requires": { + "@types/node": "*" + } + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + }, + "@types/testing-library__jest-dom": { + "version": "5.14.5", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz", + "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==", + "requires": { + "@types/jest": "*" + } + }, + "@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + }, + "@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "requires": { + "@types/node": "*" + } + }, + "@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.51.0.tgz", + "integrity": "sha512-wcAwhEWm1RgNd7dxD/o+nnLW8oH+6RK1OGnmbmkj/GGoDPV1WWMVP0FXYQBivKHdwM1pwii3bt//RC62EriIUQ==", + "requires": { + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/type-utils": "5.51.0", + "@typescript-eslint/utils": "5.51.0", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.51.0.tgz", + "integrity": "sha512-8/3+ZyBENl2aog1/QB3S39ptkZ2oRhDB+sJt15UWXBE3skgwL1C8BN9RjpOyhTejwR2hVrvqEjcYcNY6qtZ7nw==", + "requires": { + "@typescript-eslint/utils": "5.51.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz", + "integrity": "sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==", + "requires": { + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/typescript-estree": "5.51.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", + "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", + "requires": { + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.51.0.tgz", + "integrity": "sha512-QHC5KKyfV8sNSyHqfNa0UbTbJ6caB8uhcx2hYcWVvJAZYJRBo5HyyZfzMdRx8nvS+GyMg56fugMzzWnojREuQQ==", + "requires": { + "@typescript-eslint/typescript-estree": "5.51.0", + "@typescript-eslint/utils": "5.51.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", + "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", + "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", + "requires": { + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.51.0.tgz", + "integrity": "sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==", + "requires": { + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/typescript-estree": "5.51.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", + "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", + "requires": { + "@typescript-eslint/types": "5.51.0", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + } + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" + }, + "adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "requires": { + "debug": "4" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "requires": { + "deep-equal": "^2.0.5" + } + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + } + }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "axe-core": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==" + }, + "axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "requires": { + "deep-equal": "^2.0.5" + } + }, + "babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "requires": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "requires": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "requires": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + } + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "requires": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "bonjour-service": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz", + "integrity": "sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==", + "requires": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "requires": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001451", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", + "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==" + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + }, + "check-types": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", + "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==" + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + }, + "ci-info": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz", + "integrity": "sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==" + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + }, + "clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + }, + "connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "core-js": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz", + "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==" + }, + "core-js-compat": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.2.tgz", + "integrity": "sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==", + "requires": { + "browserslist": "^4.21.4" + } + }, + "core-js-pure": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, + "css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "css-declaration-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "requires": {} + }, + "css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + } + }, + "css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "requires": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "requires": {} + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "cssdb": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz", + "integrity": "sha512-0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "5.1.14", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", + "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", + "requires": { + "cssnano-preset-default": "^5.2.13", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + } + }, + "cssnano-preset-default": { + "version": "5.2.13", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", + "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", + "requires": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.3", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.1", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + } + }, + "cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "requires": {} + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "deep-equal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "requires": { + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "requires": { + "execa": "^5.0.0" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "defined": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "detective": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "requires": { + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + } + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "requires": { + "jake": "^10.8.5" + } + }, + "electron-to-chromium": { + "version": "1.4.295", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.295.tgz", + "integrity": "sha512-lEO94zqf1bDA3aepxwnWoHUjA8sZ+2owgcSZjYQy0+uOSEclJX0VieZC+r+wLpSxUHRd6gG32znTWmr+5iGzFw==" + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "enhanced-resolve": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "requires": { + "stackframe": "^1.3.4" + } + }, + "es-abstract": { + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" + } + }, + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "8.34.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", + "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", + "requires": { + "@eslint/eslintrc": "^1.4.1", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + } + }, + "eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "requires": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "requires": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^5.0.0" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "requires": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "5.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.1.tgz", + "integrity": "sha512-GRy87AqUi2Ij69pe0YnOXm3oGBCgnFwfIv+Hu9q/kT3jL0pX1cXA7aO+oJnvdpbJy2+riOPqGsa3iAkL888NLg==", + "requires": { + "@typescript-eslint/utils": "^5.43.0" + } + }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" + } + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==" + }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + } + }, + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "requires": { + "bser": "2.1.1" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + } + }, + "filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "requires": { + "minimatch": "^5.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", + "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "requires": { + "duplexer": "^0.1.2" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + } + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "requires": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "requires": {} + }, + "idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "immer": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", + "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-array-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", + "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "requires": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "requires": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + } + }, + "jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "requires": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + } + }, + "jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "requires": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "requires": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + } + }, + "jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "requires": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + } + }, + "jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "requires": {} + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==" + }, + "jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "requires": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + } + }, + "jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "requires": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "requires": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "dependencies": { + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + } + }, + "@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "requires": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "requires": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "17.0.22", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", + "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + } + }, + "jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==" + }, + "jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "requires": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "requires": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "dependencies": { + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "requires": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + }, + "string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "requires": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + } + }, + "strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "requires": { + "ansi-regex": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "requires": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==" + }, + "jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "requires": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + }, + "language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + }, + "loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==" + }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "requires": { + "tmpl": "1.0.5" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "memfs": { + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", + "requires": { + "fs-monkey": "^1.0.3" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + }, + "mini-css-extract-plugin": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz", + "integrity": "sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==", + "requires": { + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "requires": { + "minimist": "^1.2.6" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "requires": { + "boolbase": "^1.0.0" + } + }, + "nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", + "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", + "requires": { + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "requires": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.1.tgz", + "integrity": "sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==", + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "requires": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + } + }, + "postcss": { + "version": "8.4.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", + "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "requires": {} + }, + "postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "requires": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "requires": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "requires": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "requires": {} + }, + "postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "requires": {} + }, + "postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "requires": {} + }, + "postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "requires": {} + }, + "postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "requires": {} + }, + "postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "requires": { + "postcss-selector-parser": "^6.0.9" + } + }, + "postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "requires": {} + }, + "postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "requires": {} + }, + "postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "requires": {} + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "requires": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "requires": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + } + }, + "postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + } + }, + "postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "requires": {} + }, + "postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "requires": {} + }, + "postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "requires": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + } + }, + "postcss-merge-rules": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", + "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "requires": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "requires": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-nested": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", + "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "requires": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "requires": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + } + }, + "postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "requires": {} + }, + "postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "requires": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "requires": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "requires": {} + }, + "postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "requires": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "requires": {} + }, + "postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "requires": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-reduce-initial": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", + "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "requires": { + "postcss-value-parser": "^4.2.0" + } + }, + "postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "requires": {} + }, + "postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "requires": { + "postcss-selector-parser": "^6.0.10" + } + }, + "postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "requires": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "dependencies": { + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + } + } + }, + "postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "requires": { + "postcss-selector-parser": "^6.0.5" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "requires": { + "asap": "~2.0.6" + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "requires": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + } + }, + "react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "requires": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + }, + "react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "requires": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "fsevents": "^2.3.2", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + } + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "requires": { + "pify": "^2.3.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "requires": { + "minimatch": "^3.0.5" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", + "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regenerator-transform": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", + "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + }, + "regexpu-core": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", + "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "requires": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" + }, + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, + "resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "requires": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==" + }, + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "requires": { + "fsevents": "~2.3.2" + } + }, + "rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "requires": { + "node-forge": "^1" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.0.tgz", + "integrity": "sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "requires": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + } + }, + "stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "requires": { + "internal-slot": "^1.0.4" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, + "string.prototype.matchall": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "string.prototype.trimstart": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + }, + "strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "style-loader": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "requires": {} + }, + "stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "requires": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + }, + "dependencies": { + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + } + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "tailwindcss": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.6.tgz", + "integrity": "sha512-BfgQWZrtqowOQMC2bwaSNe7xcIjdDEgixWGYOd6AL0CbKHJlvhfdbINeAW76l1sO+1ov/MJ93ODJ9yluRituIw==", + "requires": { + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.1", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.12", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.6", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.0.9", + "postcss-import": "^14.1.0", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "6.0.0", + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.1" + }, + "dependencies": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + }, + "tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "requires": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "5.16.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.3.tgz", + "integrity": "sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==", + "requires": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "terser-webpack-plugin": { + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "requires": { + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "dependencies": { + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "requires": { + "punycode": "^2.1.1" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + } + }, + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==" + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, + "v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "requires": { + "makeerror": "1.0.12" + } + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-vitals": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", + "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + }, + "webpack": { + "version": "5.75.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", + "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + } + }, + "webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + } + } + }, + "webpack-dev-server": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "requires": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + } + }, + "ws": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", + "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", + "requires": {} + } + } + }, + "webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "requires": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "requires": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + } + } + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + }, + "dependencies": { + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } + } + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "requires": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + } + }, + "which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + }, + "workbox-background-sync": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz", + "integrity": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==", + "requires": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "workbox-broadcast-update": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz", + "integrity": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-build": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.4.tgz", + "integrity": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==", + "requires": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.4", + "workbox-broadcast-update": "6.5.4", + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-google-analytics": "6.5.4", + "workbox-navigation-preload": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-range-requests": "6.5.4", + "workbox-recipes": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4", + "workbox-streams": "6.5.4", + "workbox-sw": "6.5.4", + "workbox-window": "6.5.4" + }, + "dependencies": { + "@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "requires": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + } + }, + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "requires": { + "whatwg-url": "^7.0.0" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "requires": { + "punycode": "^2.1.0" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + } + } + }, + "workbox-cacheable-response": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz", + "integrity": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-core": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.4.tgz", + "integrity": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==" + }, + "workbox-expiration": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.4.tgz", + "integrity": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==", + "requires": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "workbox-google-analytics": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz", + "integrity": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==", + "requires": { + "workbox-background-sync": "6.5.4", + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "workbox-navigation-preload": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz", + "integrity": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-precaching": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.4.tgz", + "integrity": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==", + "requires": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "workbox-range-requests": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz", + "integrity": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-recipes": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.4.tgz", + "integrity": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==", + "requires": { + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "workbox-routing": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.4.tgz", + "integrity": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-strategies": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.4.tgz", + "integrity": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==", + "requires": { + "workbox-core": "6.5.4" + } + }, + "workbox-streams": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.4.tgz", + "integrity": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==", + "requires": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4" + } + }, + "workbox-sw": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.4.tgz", + "integrity": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==" + }, + "workbox-webpack-plugin": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz", + "integrity": "sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==", + "requires": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.4" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + } + } + }, + "workbox-window": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.4.tgz", + "integrity": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==", + "requires": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.4" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "requires": {} + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 00000000..b0e80746 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,43 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^5.16.5", + "@testing-library/react": "^13.4.0", + "@testing-library/user-event": "^13.5.0", + "@types/jest": "^27.5.2", + "@types/node": "^16.18.12", + "@types/react": "^18.0.27", + "@types/react-dom": "^18.0.10", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "typescript": "^4.9.5", + "web-vitals": "^2.1.4" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a11777cc471a4344702741ab1c8a588998b1311a GIT binary patch literal 3870 zcma);c{J4h9>;%nil|2-o+rCuEF-(I%-F}ijC~o(k~HKAkr0)!FCj~d>`RtpD?8b; zXOC1OD!V*IsqUwzbMF1)-gEDD=A573Z-&G7^LoAC9|WO7Xc0Cx1g^Zu0u_SjAPB3vGa^W|sj)80f#V0@M_CAZTIO(t--xg= z!sii`1giyH7EKL_+Wi0ab<)&E_0KD!3Rp2^HNB*K2@PHCs4PWSA32*-^7d{9nH2_E zmC{C*N*)(vEF1_aMamw2A{ZH5aIDqiabnFdJ|y0%aS|64E$`s2ccV~3lR!u<){eS` z#^Mx6o(iP1Ix%4dv`t@!&Za-K@mTm#vadc{0aWDV*_%EiGK7qMC_(`exc>-$Gb9~W!w_^{*pYRm~G zBN{nA;cm^w$VWg1O^^<6vY`1XCD|s_zv*g*5&V#wv&s#h$xlUilPe4U@I&UXZbL z0)%9Uj&@yd03n;!7do+bfixH^FeZ-Ema}s;DQX2gY+7g0s(9;`8GyvPY1*vxiF&|w z>!vA~GA<~JUqH}d;DfBSi^IT*#lrzXl$fNpq0_T1tA+`A$1?(gLb?e#0>UELvljtQ zK+*74m0jn&)5yk8mLBv;=@}c{t0ztT<v;Avck$S6D`Z)^c0(jiwKhQsn|LDRY&w(Fmi91I7H6S;b0XM{e zXp0~(T@k_r-!jkLwd1_Vre^v$G4|kh4}=Gi?$AaJ)3I+^m|Zyj#*?Kp@w(lQdJZf4 z#|IJW5z+S^e9@(6hW6N~{pj8|NO*>1)E=%?nNUAkmv~OY&ZV;m-%?pQ_11)hAr0oAwILrlsGawpxx4D43J&K=n+p3WLnlDsQ$b(9+4 z?mO^hmV^F8MV{4Lx>(Q=aHhQ1){0d*(e&s%G=i5rq3;t{JC zmgbn5Nkl)t@fPH$v;af26lyhH!k+#}_&aBK4baYPbZy$5aFx4}ka&qxl z$=Rh$W;U)>-=S-0=?7FH9dUAd2(q#4TCAHky!$^~;Dz^j|8_wuKc*YzfdAht@Q&ror?91Dm!N03=4=O!a)I*0q~p0g$Fm$pmr$ zb;wD;STDIi$@M%y1>p&_>%?UP($15gou_ue1u0!4(%81;qcIW8NyxFEvXpiJ|H4wz z*mFT(qVx1FKufG11hByuX%lPk4t#WZ{>8ka2efjY`~;AL6vWyQKpJun2nRiZYDij$ zP>4jQXPaP$UC$yIVgGa)jDV;F0l^n(V=HMRB5)20V7&r$jmk{UUIe zVjKroK}JAbD>B`2cwNQ&GDLx8{pg`7hbA~grk|W6LgiZ`8y`{Iq0i>t!3p2}MS6S+ zO_ruKyAElt)rdS>CtF7j{&6rP-#c=7evGMt7B6`7HG|-(WL`bDUAjyn+k$mx$CH;q2Dz4x;cPP$hW=`pFfLO)!jaCL@V2+F)So3}vg|%O*^T1j>C2lx zsURO-zIJC$^$g2byVbRIo^w>UxK}74^TqUiRR#7s_X$e)$6iYG1(PcW7un-va-S&u zHk9-6Zn&>T==A)lM^D~bk{&rFzCi35>UR!ZjQkdSiNX*-;l4z9j*7|q`TBl~Au`5& z+c)*8?#-tgUR$Zd%Q3bs96w6k7q@#tUn`5rj+r@_sAVVLqco|6O{ILX&U-&-cbVa3 zY?ngHR@%l{;`ri%H*0EhBWrGjv!LE4db?HEWb5mu*t@{kv|XwK8?npOshmzf=vZA@ zVSN9sL~!sn?r(AK)Q7Jk2(|M67Uy3I{eRy z_l&Y@A>;vjkWN5I2xvFFTLX0i+`{qz7C_@bo`ZUzDugfq4+>a3?1v%)O+YTd6@Ul7 zAfLfm=nhZ`)P~&v90$&UcF+yXm9sq!qCx3^9gzIcO|Y(js^Fj)Rvq>nQAHI92ap=P z10A4@prk+AGWCb`2)dQYFuR$|H6iDE8p}9a?#nV2}LBCoCf(Xi2@szia7#gY>b|l!-U`c}@ zLdhvQjc!BdLJvYvzzzngnw51yRYCqh4}$oRCy-z|v3Hc*d|?^Wj=l~18*E~*cR_kU z{XsxM1i{V*4GujHQ3DBpl2w4FgFR48Nma@HPgnyKoIEY-MqmMeY=I<%oG~l!f<+FN z1ZY^;10j4M4#HYXP zw5eJpA_y(>uLQ~OucgxDLuf}fVs272FaMxhn4xnDGIyLXnw>Xsd^J8XhcWIwIoQ9} z%FoSJTAGW(SRGwJwb=@pY7r$uQRK3Zd~XbxU)ts!4XsJrCycrWSI?e!IqwqIR8+Jh zlRjZ`UO1I!BtJR_2~7AbkbSm%XQqxEPkz6BTGWx8e}nQ=w7bZ|eVP4?*Tb!$(R)iC z9)&%bS*u(lXqzitAN)Oo=&Ytn>%Hzjc<5liuPi>zC_nw;Z0AE3Y$Jao_Q90R-gl~5 z_xAb2J%eArrC1CN4G$}-zVvCqF1;H;abAu6G*+PDHSYFx@Tdbfox*uEd3}BUyYY-l zTfEsOqsi#f9^FoLO;ChK<554qkri&Av~SIM*{fEYRE?vH7pTAOmu2pz3X?Wn*!ROX ztd54huAk&mFBemMooL33RV-*1f0Q3_(7hl$<#*|WF9P!;r;4_+X~k~uKEqdzZ$5Al zV63XN@)j$FN#cCD;ek1R#l zv%pGrhB~KWgoCj%GT?%{@@o(AJGt*PG#l3i>lhmb_twKH^EYvacVY-6bsCl5*^~L0 zonm@lk2UvvTKr2RS%}T>^~EYqdL1q4nD%0n&Xqr^cK^`J5W;lRRB^R-O8b&HENO||mo0xaD+S=I8RTlIfVgqN@SXDr2&-)we--K7w= zJVU8?Z+7k9dy;s;^gDkQa`0nz6N{T?(A&Iz)2!DEecLyRa&FI!id#5Z7B*O2=PsR0 zEvc|8{NS^)!d)MDX(97Xw}m&kEO@5jqRaDZ!+%`wYOI<23q|&js`&o4xvjP7D_xv@ z5hEwpsp{HezI9!~6O{~)lLR@oF7?J7i>1|5a~UuoN=q&6N}EJPV_GD`&M*v8Y`^2j zKII*d_@Fi$+i*YEW+Hbzn{iQk~yP z>7N{S4)r*!NwQ`(qcN#8SRQsNK6>{)X12nbF`*7#ecO7I)Q$uZsV+xS4E7aUn+U(K baj7?x%VD!5Cxk2YbYLNVeiXvvpMCWYo=by@ literal 0 HcmV?d00001 diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 00000000..aa069f27 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/frontend/public/logo192.png b/frontend/public/logo192.png new file mode 100644 index 0000000000000000000000000000000000000000..fc44b0a3796c0e0a64c3d858ca038bd4570465d9 GIT binary patch literal 5347 zcmZWtbyO6NvR-oO24RV%BvuJ&=?+<7=`LvyB&A_#M7mSDYw1v6DJkiYl9XjT!%$dLEBTQ8R9|wd3008in6lFF3GV-6mLi?MoP_y~}QUnaDCHI#t z7w^m$@6DI)|C8_jrT?q=f8D?0AM?L)Z}xAo^e^W>t$*Y0KlT5=@bBjT9kxb%-KNdk zeOS1tKO#ChhG7%{ApNBzE2ZVNcxbrin#E1TiAw#BlUhXllzhN$qWez5l;h+t^q#Eav8PhR2|T}y5kkflaK`ba-eoE+Z2q@o6P$)=&` z+(8}+-McnNO>e#$Rr{32ngsZIAX>GH??tqgwUuUz6kjns|LjsB37zUEWd|(&O!)DY zQLrq%Y>)Y8G`yYbYCx&aVHi@-vZ3|ebG!f$sTQqMgi0hWRJ^Wc+Ibv!udh_r%2|U) zPi|E^PK?UE!>_4`f`1k4hqqj_$+d!EB_#IYt;f9)fBOumGNyglU(ofY`yHq4Y?B%- zp&G!MRY<~ajTgIHErMe(Z8JG*;D-PJhd@RX@QatggM7+G(Lz8eZ;73)72Hfx5KDOE zkT(m}i2;@X2AT5fW?qVp?@WgN$aT+f_6eo?IsLh;jscNRp|8H}Z9p_UBO^SJXpZew zEK8fz|0Th%(Wr|KZBGTM4yxkA5CFdAj8=QSrT$fKW#tweUFqr0TZ9D~a5lF{)%-tTGMK^2tz(y2v$i%V8XAxIywrZCp=)83p(zIk6@S5AWl|Oa2hF`~~^W zI;KeOSkw1O#TiQ8;U7OPXjZM|KrnN}9arP)m0v$c|L)lF`j_rpG(zW1Qjv$=^|p*f z>)Na{D&>n`jOWMwB^TM}slgTEcjxTlUby89j1)|6ydRfWERn3|7Zd2&e7?!K&5G$x z`5U3uFtn4~SZq|LjFVrz$3iln-+ucY4q$BC{CSm7Xe5c1J<=%Oagztj{ifpaZk_bQ z9Sb-LaQMKp-qJA*bP6DzgE3`}*i1o3GKmo2pn@dj0;He}F=BgINo};6gQF8!n0ULZ zL>kC0nPSFzlcB7p41doao2F7%6IUTi_+!L`MM4o*#Y#0v~WiO8uSeAUNp=vA2KaR&=jNR2iVwG>7t%sG2x_~yXzY)7K& zk3p+O0AFZ1eu^T3s};B%6TpJ6h-Y%B^*zT&SN7C=N;g|#dGIVMSOru3iv^SvO>h4M=t-N1GSLLDqVTcgurco6)3&XpU!FP6Hlrmj}f$ zp95;b)>M~`kxuZF3r~a!rMf4|&1=uMG$;h^g=Kl;H&Np-(pFT9FF@++MMEx3RBsK?AU0fPk-#mdR)Wdkj)`>ZMl#^<80kM87VvsI3r_c@_vX=fdQ`_9-d(xiI z4K;1y1TiPj_RPh*SpDI7U~^QQ?%0&!$Sh#?x_@;ag)P}ZkAik{_WPB4rHyW#%>|Gs zdbhyt=qQPA7`?h2_8T;-E6HI#im9K>au*(j4;kzwMSLgo6u*}-K`$_Gzgu&XE)udQ zmQ72^eZd|vzI)~!20JV-v-T|<4@7ruqrj|o4=JJPlybwMg;M$Ud7>h6g()CT@wXm` zbq=A(t;RJ^{Xxi*Ff~!|3!-l_PS{AyNAU~t{h;(N(PXMEf^R(B+ZVX3 z8y0;0A8hJYp@g+c*`>eTA|3Tgv9U8#BDTO9@a@gVMDxr(fVaEqL1tl?md{v^j8aUv zm&%PX4^|rX|?E4^CkplWWNv*OKM>DxPa z!RJ)U^0-WJMi)Ksc!^ixOtw^egoAZZ2Cg;X7(5xZG7yL_;UJ#yp*ZD-;I^Z9qkP`} zwCTs0*%rIVF1sgLervtnUo&brwz?6?PXRuOCS*JI-WL6GKy7-~yi0giTEMmDs_-UX zo=+nFrW_EfTg>oY72_4Z0*uG>MnXP=c0VpT&*|rvv1iStW;*^={rP1y?Hv+6R6bxFMkxpWkJ>m7Ba{>zc_q zEefC3jsXdyS5??Mz7IET$Kft|EMNJIv7Ny8ZOcKnzf`K5Cd)&`-fTY#W&jnV0l2vt z?Gqhic}l}mCv1yUEy$%DP}4AN;36$=7aNI^*AzV(eYGeJ(Px-j<^gSDp5dBAv2#?; zcMXv#aj>%;MiG^q^$0MSg-(uTl!xm49dH!{X0){Ew7ThWV~Gtj7h%ZD zVN-R-^7Cf0VH!8O)uUHPL2mO2tmE*cecwQv_5CzWeh)ykX8r5Hi`ehYo)d{Jnh&3p z9ndXT$OW51#H5cFKa76c<%nNkP~FU93b5h-|Cb}ScHs@4Q#|}byWg;KDMJ#|l zE=MKD*F@HDBcX@~QJH%56eh~jfPO-uKm}~t7VkHxHT;)4sd+?Wc4* z>CyR*{w@4(gnYRdFq=^(#-ytb^5ESD?x<0Skhb%Pt?npNW1m+Nv`tr9+qN<3H1f<% zZvNEqyK5FgPsQ`QIu9P0x_}wJR~^CotL|n zk?dn;tLRw9jJTur4uWoX6iMm914f0AJfB@C74a;_qRrAP4E7l890P&{v<}>_&GLrW z)klculcg`?zJO~4;BBAa=POU%aN|pmZJn2{hA!d!*lwO%YSIzv8bTJ}=nhC^n}g(ld^rn#kq9Z3)z`k9lvV>y#!F4e{5c$tnr9M{V)0m(Z< z#88vX6-AW7T2UUwW`g<;8I$Jb!R%z@rCcGT)-2k7&x9kZZT66}Ztid~6t0jKb&9mm zpa}LCb`bz`{MzpZR#E*QuBiZXI#<`5qxx=&LMr-UUf~@dRk}YI2hbMsAMWOmDzYtm zjof16D=mc`^B$+_bCG$$@R0t;e?~UkF?7<(vkb70*EQB1rfUWXh$j)R2)+dNAH5%R zEBs^?N;UMdy}V};59Gu#0$q53$}|+q7CIGg_w_WlvE}AdqoS<7DY1LWS9?TrfmcvT zaypmplwn=P4;a8-%l^e?f`OpGb}%(_mFsL&GywhyN(-VROj`4~V~9bGv%UhcA|YW% zs{;nh@aDX11y^HOFXB$a7#Sr3cEtNd4eLm@Y#fc&j)TGvbbMwze zXtekX_wJqxe4NhuW$r}cNy|L{V=t#$%SuWEW)YZTH|!iT79k#?632OFse{+BT_gau zJwQcbH{b}dzKO?^dV&3nTILYlGw{27UJ72ZN){BILd_HV_s$WfI2DC<9LIHFmtyw? zQ;?MuK7g%Ym+4e^W#5}WDLpko%jPOC=aN)3!=8)s#Rnercak&b3ESRX3z{xfKBF8L z5%CGkFmGO@x?_mPGlpEej!3!AMddChabyf~nJNZxx!D&{@xEb!TDyvqSj%Y5@A{}9 zRzoBn0?x}=krh{ok3Nn%e)#~uh;6jpezhA)ySb^b#E>73e*frBFu6IZ^D7Ii&rsiU z%jzygxT-n*joJpY4o&8UXr2s%j^Q{?e-voloX`4DQyEK+DmrZh8A$)iWL#NO9+Y@!sO2f@rI!@jN@>HOA< z?q2l{^%mY*PNx2FoX+A7X3N}(RV$B`g&N=e0uvAvEN1W^{*W?zT1i#fxuw10%~))J zjx#gxoVlXREWZf4hRkgdHx5V_S*;p-y%JtGgQ4}lnA~MBz-AFdxUxU1RIT$`sal|X zPB6sEVRjGbXIP0U+?rT|y5+ev&OMX*5C$n2SBPZr`jqzrmpVrNciR0e*Wm?fK6DY& zl(XQZ60yWXV-|Ps!A{EF;=_z(YAF=T(-MkJXUoX zI{UMQDAV2}Ya?EisdEW;@pE6dt;j0fg5oT2dxCi{wqWJ<)|SR6fxX~5CzblPGr8cb zUBVJ2CQd~3L?7yfTpLNbt)He1D>*KXI^GK%<`bq^cUq$Q@uJifG>p3LU(!H=C)aEL zenk7pVg}0{dKU}&l)Y2Y2eFMdS(JS0}oZUuVaf2+K*YFNGHB`^YGcIpnBlMhO7d4@vV zv(@N}(k#REdul8~fP+^F@ky*wt@~&|(&&meNO>rKDEnB{ykAZ}k>e@lad7to>Ao$B zz<1(L=#J*u4_LB=8w+*{KFK^u00NAmeNN7pr+Pf+N*Zl^dO{LM-hMHyP6N!~`24jd zXYP|Ze;dRXKdF2iJG$U{k=S86l@pytLx}$JFFs8e)*Vi?aVBtGJ3JZUj!~c{(rw5>vuRF$`^p!P8w1B=O!skwkO5yd4_XuG^QVF z`-r5K7(IPSiKQ2|U9+`@Js!g6sfJwAHVd|s?|mnC*q zp|B|z)(8+mxXyxQ{8Pg3F4|tdpgZZSoU4P&9I8)nHo1@)9_9u&NcT^FI)6|hsAZFk zZ+arl&@*>RXBf-OZxhZerOr&dN5LW9@gV=oGFbK*J+m#R-|e6(Loz(;g@T^*oO)0R zN`N=X46b{7yk5FZGr#5&n1!-@j@g02g|X>MOpF3#IjZ_4wg{dX+G9eqS+Es9@6nC7 zD9$NuVJI}6ZlwtUm5cCAiYv0(Yi{%eH+}t)!E^>^KxB5^L~a`4%1~5q6h>d;paC9c zTj0wTCKrhWf+F#5>EgX`sl%POl?oyCq0(w0xoL?L%)|Q7d|Hl92rUYAU#lc**I&^6p=4lNQPa0 znQ|A~i0ip@`B=FW-Q;zh?-wF;Wl5!+q3GXDu-x&}$gUO)NoO7^$BeEIrd~1Dh{Tr` z8s<(Bn@gZ(mkIGnmYh_ehXnq78QL$pNDi)|QcT*|GtS%nz1uKE+E{7jdEBp%h0}%r zD2|KmYGiPa4;md-t_m5YDz#c*oV_FqXd85d@eub?9N61QuYcb3CnVWpM(D-^|CmkL z(F}L&N7qhL2PCq)fRh}XO@U`Yn<?TNGR4L(mF7#4u29{i~@k;pLsgl({YW5`Mo+p=zZn3L*4{JU;++dG9 X@eDJUQo;Ye2mwlRs?y0|+_a0zY+Zo%Dkae}+MySoIppb75o?vUW_?)>@g{U2`ERQIXV zeY$JrWnMZ$QC<=ii4X|@0H8`si75jB(ElJb00HAB%>SlLR{!zO|C9P3zxw_U8?1d8uRZ=({Ga4shyN}3 zAK}WA(ds|``G4jA)9}Bt2Hy0+f3rV1E6b|@?hpGA=PI&r8)ah|)I2s(P5Ic*Ndhn^ z*T&j@gbCTv7+8rpYbR^Ty}1AY)YH;p!m948r#%7x^Z@_-w{pDl|1S4`EM3n_PaXvK z1JF)E3qy$qTj5Xs{jU9k=y%SQ0>8E$;x?p9ayU0bZZeo{5Z@&FKX>}s!0+^>C^D#z z>xsCPvxD3Z=dP}TTOSJhNTPyVt14VCQ9MQFN`rn!c&_p?&4<5_PGm4a;WS&1(!qKE z_H$;dDdiPQ!F_gsN`2>`X}$I=B;={R8%L~`>RyKcS$72ai$!2>d(YkciA^J0@X%G4 z4cu!%Ps~2JuJ8ex`&;Fa0NQOq_nDZ&X;^A=oc1&f#3P1(!5il>6?uK4QpEG8z0Rhu zvBJ+A9RV?z%v?!$=(vcH?*;vRs*+PPbOQ3cdPr5=tOcLqmfx@#hOqX0iN)wTTO21jH<>jpmwRIAGw7`a|sl?9y9zRBh>(_%| zF?h|P7}~RKj?HR+q|4U`CjRmV-$mLW>MScKnNXiv{vD3&2@*u)-6P@h0A`eeZ7}71 zK(w%@R<4lLt`O7fs1E)$5iGb~fPfJ?WxhY7c3Q>T-w#wT&zW522pH-B%r5v#5y^CF zcC30Se|`D2mY$hAlIULL%-PNXgbbpRHgn<&X3N9W!@BUk@9g*P5mz-YnZBb*-$zMM z7Qq}ic0mR8n{^L|=+diODdV}Q!gwr?y+2m=3HWwMq4z)DqYVg0J~^}-%7rMR@S1;9 z7GFj6K}i32X;3*$SmzB&HW{PJ55kT+EI#SsZf}bD7nW^Haf}_gXciYKX{QBxIPSx2Ma? zHQqgzZq!_{&zg{yxqv3xq8YV+`S}F6A>Gtl39_m;K4dA{pP$BW0oIXJ>jEQ!2V3A2 zdpoTxG&V=(?^q?ZTj2ZUpDUdMb)T?E$}CI>r@}PFPWD9@*%V6;4Ag>D#h>!s)=$0R zRXvdkZ%|c}ubej`jl?cS$onl9Tw52rBKT)kgyw~Xy%z62Lr%V6Y=f?2)J|bZJ5(Wx zmji`O;_B+*X@qe-#~`HFP<{8$w@z4@&`q^Q-Zk8JG3>WalhnW1cvnoVw>*R@c&|o8 zZ%w!{Z+MHeZ*OE4v*otkZqz11*s!#s^Gq>+o`8Z5 z^i-qzJLJh9!W-;SmFkR8HEZJWiXk$40i6)7 zZpr=k2lp}SasbM*Nbn3j$sn0;rUI;%EDbi7T1ZI4qL6PNNM2Y%6{LMIKW+FY_yF3) zSKQ2QSujzNMSL2r&bYs`|i2Dnn z=>}c0>a}>|uT!IiMOA~pVT~R@bGlm}Edf}Kq0?*Af6#mW9f9!}RjW7om0c9Qlp;yK z)=XQs(|6GCadQbWIhYF=rf{Y)sj%^Id-ARO0=O^Ad;Ph+ z0?$eE1xhH?{T$QI>0JP75`r)U_$#%K1^BQ8z#uciKf(C701&RyLQWBUp*Q7eyn76} z6JHpC9}R$J#(R0cDCkXoFSp;j6{x{b&0yE@P7{;pCEpKjS(+1RQy38`=&Yxo%F=3y zCPeefABp34U-s?WmU#JJw23dcC{sPPFc2#J$ZgEN%zod}J~8dLm*fx9f6SpO zn^Ww3bt9-r0XaT2a@Wpw;C23XM}7_14#%QpubrIw5aZtP+CqIFmsG4`Cm6rfxl9n5 z7=r2C-+lM2AB9X0T_`?EW&Byv&K?HS4QLoylJ|OAF z`8atBNTzJ&AQ!>sOo$?^0xj~D(;kS$`9zbEGd>f6r`NC3X`tX)sWgWUUOQ7w=$TO&*j;=u%25ay-%>3@81tGe^_z*C7pb9y*Ed^H3t$BIKH2o+olp#$q;)_ zfpjCb_^VFg5fU~K)nf*d*r@BCC>UZ!0&b?AGk_jTPXaSnCuW110wjHPPe^9R^;jo3 zwvzTl)C`Zl5}O2}3lec=hZ*$JnkW#7enKKc)(pM${_$9Hc=Sr_A9Biwe*Y=T?~1CK z6eZ9uPICjy-sMGbZl$yQmpB&`ouS8v{58__t0$JP%i3R&%QR3ianbZqDs<2#5FdN@n5bCn^ZtH992~5k(eA|8|@G9u`wdn7bnpg|@{m z^d6Y`*$Zf2Xr&|g%sai#5}Syvv(>Jnx&EM7-|Jr7!M~zdAyjt*xl;OLhvW-a%H1m0 z*x5*nb=R5u><7lyVpNAR?q@1U59 zO+)QWwL8t zyip?u_nI+K$uh{y)~}qj?(w0&=SE^8`_WMM zTybjG=999h38Yes7}-4*LJ7H)UE8{mE(6;8voE+TYY%33A>S6`G_95^5QHNTo_;Ao ztIQIZ_}49%{8|=O;isBZ?=7kfdF8_@azfoTd+hEJKWE!)$)N%HIe2cplaK`ry#=pV z0q{9w-`i0h@!R8K3GC{ivt{70IWG`EP|(1g7i_Q<>aEAT{5(yD z=!O?kq61VegV+st@XCw475j6vS)_z@efuqQgHQR1T4;|-#OLZNQJPV4k$AX1Uk8Lm z{N*b*ia=I+MB}kWpupJ~>!C@xEN#Wa7V+7{m4j8c?)ChV=D?o~sjT?0C_AQ7B-vxqX30s0I_`2$in86#`mAsT-w?j{&AL@B3$;P z31G4(lV|b}uSDCIrjk+M1R!X7s4Aabn<)zpgT}#gE|mIvV38^ODy@<&yflpCwS#fRf9ZX3lPV_?8@C5)A;T zqmouFLFk;qIs4rA=hh=GL~sCFsXHsqO6_y~*AFt939UYVBSx1s(=Kb&5;j7cSowdE;7()CC2|-i9Zz+_BIw8#ll~-tyH?F3{%`QCsYa*b#s*9iCc`1P1oC26?`g<9))EJ3%xz+O!B3 zZ7$j~To)C@PquR>a1+Dh>-a%IvH_Y7^ys|4o?E%3`I&ADXfC8++hAdZfzIT#%C+Jz z1lU~K_vAm0m8Qk}K$F>|>RPK%<1SI0(G+8q~H zAsjezyP+u!Se4q3GW)`h`NPSRlMoBjCzNPesWJwVTY!o@G8=(6I%4XHGaSiS3MEBK zhgGFv6Jc>L$4jVE!I?TQuwvz_%CyO!bLh94nqK11C2W$*aa2ueGopG8DnBICVUORP zgytv#)49fVXDaR$SukloYC3u7#5H)}1K21=?DKj^U)8G;MS)&Op)g^zR2($<>C*zW z;X7`hLxiIO#J`ANdyAOJle4V%ppa*(+0i3w;8i*BA_;u8gOO6)MY`ueq7stBMJTB; z-a0R>hT*}>z|Gg}@^zDL1MrH+2hsR8 zHc}*9IvuQC^Ju)^#Y{fOr(96rQNPNhxc;mH@W*m206>Lo<*SaaH?~8zg&f&%YiOEG zGiz?*CP>Bci}!WiS=zj#K5I}>DtpregpP_tfZtPa(N<%vo^#WCQ5BTv0vr%Z{)0q+ z)RbfHktUm|lg&U3YM%lMUM(fu}i#kjX9h>GYctkx9Mt_8{@s%!K_EI zScgwy6%_fR?CGJQtmgNAj^h9B#zmaMDWgH55pGuY1Gv7D z;8Psm(vEPiwn#MgJYu4Ty9D|h!?Rj0ddE|&L3S{IP%H4^N!m`60ZwZw^;eg4sk6K{ ziA^`Sbl_4~f&Oo%n;8Ye(tiAdlZKI!Z=|j$5hS|D$bDJ}p{gh$KN&JZYLUjv4h{NY zBJ>X9z!xfDGY z+oh_Z&_e#Q(-}>ssZfm=j$D&4W4FNy&-kAO1~#3Im;F)Nwe{(*75(p=P^VI?X0GFakfh+X-px4a%Uw@fSbmp9hM1_~R>?Z8+ ziy|e9>8V*`OP}4x5JjdWp}7eX;lVxp5qS}0YZek;SNmm7tEeSF*-dI)6U-A%m6YvCgM(}_=k#a6o^%-K4{`B1+}O4x zztDT%hVb;v#?j`lTvlFQ3aV#zkX=7;YFLS$uIzb0E3lozs5`Xy zi~vF+%{z9uLjKvKPhP%x5f~7-Gj+%5N`%^=yk*Qn{`> z;xj&ROY6g`iy2a@{O)V(jk&8#hHACVDXey5a+KDod_Z&}kHM}xt7}Md@pil{2x7E~ zL$k^d2@Ec2XskjrN+IILw;#7((abu;OJii&v3?60x>d_Ma(onIPtcVnX@ELF0aL?T zSmWiL3(dOFkt!x=1O!_0n(cAzZW+3nHJ{2S>tgSK?~cFha^y(l@-Mr2W$%MN{#af8J;V*>hdq!gx=d0h$T7l}>91Wh07)9CTX zh2_ZdQCyFOQ)l(}gft0UZG`Sh2`x-w`5vC2UD}lZs*5 zG76$akzn}Xi))L3oGJ75#pcN=cX3!=57$Ha=hQ2^lwdyU#a}4JJOz6ddR%zae%#4& za)bFj)z=YQela(F#Y|Q#dp}PJghITwXouVaMq$BM?K%cXn9^Y@g43$=O)F&ZlOUom zJiad#dea;-eywBA@e&D6Pdso1?2^(pXiN91?jvcaUyYoKUmvl5G9e$W!okWe*@a<^ z8cQQ6cNSf+UPDx%?_G4aIiybZHHagF{;IcD(dPO!#=u zWfqLcPc^+7Uu#l(Bpxft{*4lv#*u7X9AOzDO z1D9?^jIo}?%iz(_dwLa{ex#T}76ZfN_Z-hwpus9y+4xaUu9cX}&P{XrZVWE{1^0yw zO;YhLEW!pJcbCt3L8~a7>jsaN{V3>tz6_7`&pi%GxZ=V3?3K^U+*ryLSb)8^IblJ0 zSRLNDvIxt)S}g30?s_3NX>F?NKIGrG_zB9@Z>uSW3k2es_H2kU;Rnn%j5qP)!XHKE zPB2mHP~tLCg4K_vH$xv`HbRsJwbZMUV(t=ez;Ec(vyHH)FbfLg`c61I$W_uBB>i^r z&{_P;369-&>23R%qNIULe=1~T$(DA`ev*EWZ6j(B$(te}x1WvmIll21zvygkS%vwG zzkR6Z#RKA2!z!C%M!O>!=Gr0(J0FP=-MN=5t-Ir)of50y10W}j`GtRCsXBakrKtG& zazmITDJMA0C51&BnLY)SY9r)NVTMs);1<=oosS9g31l{4ztjD3#+2H7u_|66b|_*O z;Qk6nalpqdHOjx|K&vUS_6ITgGll;TdaN*ta=M_YtyC)I9Tmr~VaPrH2qb6sd~=AcIxV+%z{E&0@y=DPArw zdV7z(G1hBx7hd{>(cr43^WF%4Y@PXZ?wPpj{OQ#tvc$pABJbvPGvdR`cAtHn)cSEV zrpu}1tJwQ3y!mSmH*uz*x0o|CS<^w%&KJzsj~DU0cLQUxk5B!hWE>aBkjJle8z~;s z-!A=($+}Jq_BTK5^B!`R>!MulZN)F=iXXeUd0w5lUsE5VP*H*oCy(;?S$p*TVvTxwAeWFB$jHyb0593)$zqalVlDX=GcCN1gU0 zlgU)I$LcXZ8Oyc2TZYTPu@-;7<4YYB-``Qa;IDcvydIA$%kHhJKV^m*-zxcvU4viy&Kr5GVM{IT>WRywKQ9;>SEiQD*NqplK-KK4YR`p0@JW)n_{TU3bt0 zim%;(m1=#v2}zTps=?fU5w^(*y)xT%1vtQH&}50ZF!9YxW=&7*W($2kgKyz1mUgfs zfV<*XVVIFnohW=|j+@Kfo!#liQR^x>2yQdrG;2o8WZR+XzU_nG=Ed2rK?ntA;K5B{ z>M8+*A4!Jm^Bg}aW?R?6;@QG@uQ8&oJ{hFixcfEnJ4QH?A4>P=q29oDGW;L;= z9-a0;g%c`C+Ai!UmK$NC*4#;Jp<1=TioL=t^YM)<<%u#hnnfSS`nq63QKGO1L8RzX z@MFDqs1z ztYmxDl@LU)5acvHk)~Z`RW7=aJ_nGD!mOSYD>5Odjn@TK#LY{jf?+piB5AM-CAoT_ z?S-*q7}wyLJzK>N%eMPuFgN)Q_otKP;aqy=D5f!7<=n(lNkYRXVpkB{TAYLYg{|(jtRqYmg$xH zjmq?B(RE4 zQx^~Pt}gxC2~l=K$$-sYy_r$CO(d=+b3H1MB*y_5g6WLaWTXn+TKQ|hNY^>Mp6k*$ zwkovomhu776vQATqT4blf~g;TY(MWCrf^^yfWJvSAB$p5l;jm@o#=!lqw+Lqfq>X= z$6~kxfm7`3q4zUEB;u4qa#BdJxO!;xGm)wwuisj{0y2x{R(IGMrsIzDY9LW>m!Y`= z04sx3IjnYvL<4JqxQ8f7qYd0s2Ig%`ytYPEMKI)s(LD}D@EY>x`VFtqvnADNBdeao zC96X+MxnwKmjpg{U&gP3HE}1=s!lv&D{6(g_lzyF3A`7Jn*&d_kL<;dAFx!UZ>hB8 z5A*%LsAn;VLp>3${0>M?PSQ)9s3}|h2e?TG4_F{}{Cs>#3Q*t$(CUc}M)I}8cPF6% z=+h(Kh^8)}gj(0}#e7O^FQ6`~fd1#8#!}LMuo3A0bN`o}PYsm!Y}sdOz$+Tegc=qT z8x`PH$7lvnhJp{kHWb22l;@7B7|4yL4UOOVM0MP_>P%S1Lnid)+k9{+3D+JFa#Pyf zhVc#&df87APl4W9X)F3pGS>@etfl=_E5tBcVoOfrD4hmVeTY-cj((pkn%n@EgN{0f zwb_^Rk0I#iZuHK!l*lN`ceJn(sI{$Fq6nN& zE<-=0_2WN}m+*ivmIOxB@#~Q-cZ>l136w{#TIJe478`KE7@=a{>SzPHsKLzYAyBQO zAtuuF$-JSDy_S@6GW0MOE~R)b;+0f%_NMrW(+V#c_d&U8Z9+ec4=HmOHw?gdjF(Lu zzra83M_BoO-1b3;9`%&DHfuUY)6YDV21P$C!Rc?mv&{lx#f8oc6?0?x zK08{WP65?#>(vPfA-c=MCY|%*1_<3D4NX zeVTi-JGl2uP_2@0F{G({pxQOXt_d{g_CV6b?jNpfUG9;8yle-^4KHRvZs-_2siata zt+d_T@U$&t*xaD22(fH(W1r$Mo?3dc%Tncm=C6{V9y{v&VT#^1L04vDrLM9qBoZ4@ z6DBN#m57hX7$C(=#$Y5$bJmwA$T8jKD8+6A!-IJwA{WOfs%s}yxUw^?MRZjF$n_KN z6`_bGXcmE#5e4Ym)aQJ)xg3Pg0@k`iGuHe?f(5LtuzSq=nS^5z>vqU0EuZ&75V%Z{ zYyhRLN^)$c6Ds{f7*FBpE;n5iglx5PkHfWrj3`x^j^t z7ntuV`g!9Xg#^3!x)l*}IW=(Tz3>Y5l4uGaB&lz{GDjm2D5S$CExLT`I1#n^lBH7Y zDgpMag@`iETKAI=p<5E#LTkwzVR@=yY|uBVI1HG|8h+d;G-qfuj}-ZR6fN>EfCCW z9~wRQoAPEa#aO?3h?x{YvV*d+NtPkf&4V0k4|L=uj!U{L+oLa(z#&iuhJr3-PjO3R z5s?=nn_5^*^Rawr>>Nr@K(jwkB#JK-=+HqwfdO<+P5byeim)wvqGlP-P|~Nse8=XF zz`?RYB|D6SwS}C+YQv+;}k6$-%D(@+t14BL@vM z2q%q?f6D-A5s$_WY3{^G0F131bbh|g!}#BKw=HQ7mx;Dzg4Z*bTLQSfo{ed{4}NZW zfrRm^Ca$rlE{Ue~uYv>R9{3smwATcdM_6+yWIO z*ZRH~uXE@#p$XTbCt5j7j2=86e{9>HIB6xDzV+vAo&B?KUiMP|ttOElepnl%|DPqL b{|{}U^kRn2wo}j7|0ATu<;8xA7zX}7|B6mN literal 0 HcmV?d00001 diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 00000000..080d6c77 --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/frontend/public/robots.txt b/frontend/public/robots.txt new file mode 100644 index 00000000..e9e57dc4 --- /dev/null +++ b/frontend/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/frontend/src/App.css b/frontend/src/App.css new file mode 100644 index 00000000..74b5e053 --- /dev/null +++ b/frontend/src/App.css @@ -0,0 +1,38 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 00000000..a53698aa --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import logo from './logo.svg'; +import './App.css'; + +function App() { + return ( + + ); +} + +export default App; diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 00000000..ec2585e8 --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx new file mode 100644 index 00000000..032464fb --- /dev/null +++ b/frontend/src/index.tsx @@ -0,0 +1,19 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot( + document.getElementById('root') as HTMLElement +); +root.render( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); diff --git a/frontend/src/react-app-env.d.ts b/frontend/src/react-app-env.d.ts new file mode 100644 index 00000000..6431bc5f --- /dev/null +++ b/frontend/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/frontend/src/reportWebVitals.ts b/frontend/src/reportWebVitals.ts new file mode 100644 index 00000000..49a2a16e --- /dev/null +++ b/frontend/src/reportWebVitals.ts @@ -0,0 +1,15 @@ +import { ReportHandler } from 'web-vitals'; + +const reportWebVitals = (onPerfEntry?: ReportHandler) => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + getCLS(onPerfEntry); + getFID(onPerfEntry); + getFCP(onPerfEntry); + getLCP(onPerfEntry); + getTTFB(onPerfEntry); + }); + } +}; + +export default reportWebVitals; diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 00000000..a273b0cf --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": [ + "src" + ] +} From 9fab08d388385d3d8e4e28fa6a8feaa3bd7ef14c Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:18:35 -0300 Subject: [PATCH 08/16] setup frontend --- backend/.env.example | 8 ++++---- backend/docker-compose.yml | 1 - frontend/package.json | 3 +++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/backend/.env.example b/backend/.env.example index c883387e..c1ac4003 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -1,5 +1,5 @@ -DB_USER=postgres -DB_PASSWORD=root -DB_HOST=localhost +DB_USER=beeer +DB_PASSWORD=beeer123 +DB_HOST=fullstack-postgres DB_POST=5432 -DB_DATABASE=backend_beers \ No newline at end of file +DB_NAME=backend_beers \ No newline at end of file diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index 5b46b8e5..8eaef7bc 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -1,6 +1,5 @@ version: '3' - services: app: restart: on-failure diff --git a/frontend/package.json b/frontend/package.json index b0e80746..53218971 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -12,7 +12,10 @@ "@types/react-dom": "^18.0.10", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-router-dom": "^6.8.1", "react-scripts": "5.0.1", + "semantic-ui-css": "^2.5.0", + "semantic-ui-react": "^2.1.4", "typescript": "^4.9.5", "web-vitals": "^2.1.4" }, From 0997729ef298ac6d3472a0f7bff06e2664be276a Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:24:07 -0300 Subject: [PATCH 09/16] Front: Home Page --- frontend/package-lock.json | 325 ++++++++++++++++++++++++++++++++++++ frontend/src/App.css | 211 +++++++++++++++++++++++ frontend/src/App.tsx | 23 +-- frontend/src/index.tsx | 9 +- frontend/src/pages/Home.tsx | 10 ++ 5 files changed, 559 insertions(+), 19 deletions(-) create mode 100644 frontend/src/pages/Home.tsx diff --git a/frontend/package-lock.json b/frontend/package-lock.json index e080cac1..e363b069 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -17,7 +17,10 @@ "@types/react-dom": "^18.0.10", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-router-dom": "^6.8.1", "react-scripts": "5.0.1", + "semantic-ui-css": "^2.5.0", + "semantic-ui-react": "^2.1.4", "typescript": "^4.9.5", "web-vitals": "^2.1.4" } @@ -2197,6 +2200,36 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@fluentui/react-component-event-listener": { + "version": "0.63.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.63.1.tgz", + "integrity": "sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==", + "dependencies": { + "@babel/runtime": "^7.10.4" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/@fluentui/react-component-ref": { + "version": "0.63.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.63.1.tgz", + "integrity": "sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==", + "dependencies": { + "@babel/runtime": "^7.10.4", + "react-is": "^16.6.3" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, + "node_modules/@fluentui/react-component-ref/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.8", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", @@ -3068,6 +3101,23 @@ } } }, + "node_modules/@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@remix-run/router": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.3.2.tgz", + "integrity": "sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==", + "engines": { + "node": ">=14" + } + }, "node_modules/@rollup/plugin-babel": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", @@ -3147,6 +3197,19 @@ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" }, + "node_modules/@semantic-ui-react/event-stack": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@semantic-ui-react/event-stack/-/event-stack-3.1.3.tgz", + "integrity": "sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==", + "dependencies": { + "exenv": "^1.2.2", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/@sinclair/typebox": { "version": "0.24.51", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", @@ -5406,6 +5469,14 @@ "wrap-ansi": "^7.0.0" } }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -7460,6 +7531,11 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -11188,6 +11264,11 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/jquery": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", + "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==" + }, "node_modules/js-sdsl": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", @@ -11332,6 +11413,11 @@ "node": ">=4.0" } }, + "node_modules/keyboard-key": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keyboard-key/-/keyboard-key-1.1.0.tgz", + "integrity": "sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==" + }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -11442,6 +11528,11 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", @@ -13978,11 +14069,30 @@ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" }, + "node_modules/react-fast-compare": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, + "node_modules/react-popper": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", + "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", + "dependencies": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" + } + }, "node_modules/react-refresh": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", @@ -13991,6 +14101,36 @@ "node": ">=0.10.0" } }, + "node_modules/react-router": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.8.1.tgz", + "integrity": "sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==", + "dependencies": { + "@remix-run/router": "1.3.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.8.1.tgz", + "integrity": "sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==", + "dependencies": { + "@remix-run/router": "1.3.2", + "react-router": "6.8.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, "node_modules/react-scripts": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", @@ -14612,6 +14752,38 @@ "node": ">=10" } }, + "node_modules/semantic-ui-css": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/semantic-ui-css/-/semantic-ui-css-2.5.0.tgz", + "integrity": "sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==", + "dependencies": { + "jquery": "x.*" + } + }, + "node_modules/semantic-ui-react": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/semantic-ui-react/-/semantic-ui-react-2.1.4.tgz", + "integrity": "sha512-7CxjBoFUfH7fUvtn+SPkkIocthUD9kV3niF1mUMa9TbeyPAf2brtRCZBlT2OpHaXmkscFzGjEfhbJo9gKfotzQ==", + "dependencies": { + "@babel/runtime": "^7.10.5", + "@fluentui/react-component-event-listener": "~0.63.0", + "@fluentui/react-component-ref": "~0.63.0", + "@popperjs/core": "^2.6.0", + "@semantic-ui-react/event-stack": "^3.1.3", + "clsx": "^1.1.1", + "keyboard-key": "^1.1.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "prop-types": "^15.7.2", + "react-is": "^16.8.6 || ^17.0.0 || ^18.0.0", + "react-popper": "^2.3.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -14780,6 +14952,11 @@ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -15932,6 +16109,14 @@ "makeerror": "1.0.12" } }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", @@ -18270,6 +18455,30 @@ } } }, + "@fluentui/react-component-event-listener": { + "version": "0.63.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-event-listener/-/react-component-event-listener-0.63.1.tgz", + "integrity": "sha512-gSMdOh6tI3IJKZFqxfQwbTpskpME0CvxdxGM2tdglmf6ZPVDi0L4+KKIm+2dN8nzb8Ya1A8ZT+Ddq0KmZtwVQg==", + "requires": { + "@babel/runtime": "^7.10.4" + } + }, + "@fluentui/react-component-ref": { + "version": "0.63.1", + "resolved": "https://registry.npmjs.org/@fluentui/react-component-ref/-/react-component-ref-0.63.1.tgz", + "integrity": "sha512-8MkXX4+R3i80msdbD4rFpEB4WWq2UDvGwG386g3ckIWbekdvN9z2kWAd9OXhRGqB7QeOsoAGWocp6gAMCivRlw==", + "requires": { + "@babel/runtime": "^7.10.4", + "react-is": "^16.6.3" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, "@humanwhocodes/config-array": { "version": "0.11.8", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", @@ -18899,6 +19108,16 @@ "source-map": "^0.7.3" } }, + "@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==" + }, + "@remix-run/router": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.3.2.tgz", + "integrity": "sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==" + }, "@rollup/plugin-babel": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", @@ -18952,6 +19171,15 @@ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" }, + "@semantic-ui-react/event-stack": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@semantic-ui-react/event-stack/-/event-stack-3.1.3.tgz", + "integrity": "sha512-FdTmJyWvJaYinHrKRsMLDrz4tTMGdFfds299Qory53hBugiDvGC0tEJf+cHsi5igDwWb/CLOgOiChInHwq8URQ==", + "requires": { + "exenv": "^1.2.2", + "prop-types": "^15.6.2" + } + }, "@sinclair/typebox": { "version": "0.24.51", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", @@ -20644,6 +20872,11 @@ "wrap-ansi": "^7.0.0" } }, + "clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" + }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -22133,6 +22366,11 @@ "strip-final-newline": "^2.0.0" } }, + "exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -24820,6 +25058,11 @@ } } }, + "jquery": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.3.tgz", + "integrity": "sha512-bZ5Sy3YzKo9Fyc8wH2iIQK4JImJ6R0GWI9kL1/k7Z91ZBNgkRXE6U0JfHIizZbort8ZunhSI3jw9I6253ahKfg==" + }, "js-sdsl": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", @@ -24926,6 +25169,11 @@ "object.assign": "^4.1.3" } }, + "keyboard-key": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keyboard-key/-/keyboard-key-1.1.0.tgz", + "integrity": "sha512-qkBzPTi3rlAKvX7k0/ub44sqOfXeLc/jcnGGmj5c7BJpU8eDrEVPyhCvNYAaoubbsLm9uGWwQJO1ytQK1a9/dQ==" + }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -25006,6 +25254,11 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", @@ -26657,16 +26910,47 @@ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" }, + "react-fast-compare": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, + "react-popper": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", + "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", + "requires": { + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + } + }, "react-refresh": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" }, + "react-router": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.8.1.tgz", + "integrity": "sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==", + "requires": { + "@remix-run/router": "1.3.2" + } + }, + "react-router-dom": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.8.1.tgz", + "integrity": "sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==", + "requires": { + "@remix-run/router": "1.3.2", + "react-router": "6.8.1" + } + }, "react-scripts": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", @@ -27088,6 +27372,34 @@ "node-forge": "^1" } }, + "semantic-ui-css": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/semantic-ui-css/-/semantic-ui-css-2.5.0.tgz", + "integrity": "sha512-jIWn3WXXE2uSaWCcB+gVJVRG3masIKtTMNEP2X8Aw909H2rHpXGneYOxzO3hT8TpyvB5/dEEo9mBFCitGwoj1A==", + "requires": { + "jquery": "x.*" + } + }, + "semantic-ui-react": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/semantic-ui-react/-/semantic-ui-react-2.1.4.tgz", + "integrity": "sha512-7CxjBoFUfH7fUvtn+SPkkIocthUD9kV3niF1mUMa9TbeyPAf2brtRCZBlT2OpHaXmkscFzGjEfhbJo9gKfotzQ==", + "requires": { + "@babel/runtime": "^7.10.5", + "@fluentui/react-component-event-listener": "~0.63.0", + "@fluentui/react-component-ref": "~0.63.0", + "@popperjs/core": "^2.6.0", + "@semantic-ui-react/event-stack": "^3.1.3", + "clsx": "^1.1.1", + "keyboard-key": "^1.1.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "prop-types": "^15.7.2", + "react-is": "^16.8.6 || ^17.0.0 || ^18.0.0", + "react-popper": "^2.3.0", + "shallowequal": "^1.1.0" + } + }, "semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -27237,6 +27549,11 @@ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -28095,6 +28412,14 @@ "makeerror": "1.0.12" } }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, "watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", diff --git a/frontend/src/App.css b/frontend/src/App.css index 74b5e053..3d387d2c 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); + .App { text-align: center; } @@ -36,3 +38,212 @@ transform: rotate(360deg); } } + +.main{ + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #212121; + color: whitesmoke; + flex-direction: column; +} +.main-header{ + font-family: 'Montserrat', sans-serif; +} + +.create-form label{ + color: whitesmoke !important; + font-family: 'Montserrat', sans-serif; + font-size: 12px !important; + display: flex; + align-items: center; + justify-content: space-between; + padding: auto; + width: 20vw; + padding: 6px; +} +.create-form .form-field { + display:flex; + justify-content: space-around; +} + +.form-field { + /* width: 85%; */ + /* padding: 0 12px; */ +} + +.create-form .field { + padding: 0 20px; +} + +/* .form-field input { + width: 85%; +} */ +/* .create-form input { + width: 85%; + display: flex; + justify-content: center; + align-items: center; +} */ + +.btn-container { + padding: 0 20px; +} +.form-field-button { + /* margin: 0 20px !important; */ + width: 100%; +} + +.action-button { + border: none; + height: 20px; + display: flex; + align-items: center; + padding: 15px 32px; + /* text-decoration: none; */ + /* display: inline-block; */ + font-size: 2px; + color: white; + background-color: green; + border-radius: 20px; +} + +.action-button span { + font-family: 'Montserrat', sans-serif; + font-size: 10px; +} + +.delete-button { + height: 20px; + /* display: flex; */ + align-items: center; + padding: 15px 32px 15px; + /* text-decoration: none; */ + /* display: inline-block; */ + font-size: 15px; + color: white; + background-color: green; + border-radius: 20px; +} + +.update-button { + height: 20px; + /* display: flex; */ + align-items: center; + padding: 15px 32px 15px; + /* text-decoration: none; */ + /* display: inline-block; */ + font-size: 15px; + color: white; + background-color: blue; + border-radius: 20px; +} + +.ui-table { + margin-bottom: 40px !important; +} + + + +.home-button { + align-items: center; + background-image: linear-gradient(144deg,#9521e8, #5B42F3 50%,#00DDEB); + border: 0; + border-radius: 8px; + box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px; + box-sizing: border-box; + color: #FFFFFF; + display: flex; + font-family: Phantomsans, sans-serif; + font-size: 10px; + justify-content: center; + line-height: 1em; + max-width: 100%; + min-width: 140px; + padding: 19px 24px; + text-decoration: none; + user-select: none; + -webkit-user-select: none; + touch-action: manipulation; + white-space: nowrap; + cursor: pointer; + margin-top: 20px; + margin-left:30px; +} + +.home-button { + align-items: center; + background-image: linear-gradient(144deg,#9521e8, #5B42F3 50%,#00DDEB); + border: 0; + border-radius: 8px; + box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px; + box-sizing: border-box; + color: #FFFFFF; + display: flex; + font-family: Phantomsans, sans-serif; + font-size: 10px; + justify-content: center; + line-height: 1em; + max-width: 100%; + min-width: 140px; + padding: 19px 24px; + text-decoration: none; + user-select: none; + -webkit-user-select: none; + touch-action: manipulation; + white-space: nowrap; + cursor: pointer; + margin-top: 20px; + margin-left:30px; +} + +.home-button:active, +.home-button:hover { + outline: 0; +} + +@media (min-width: 768px) { + .home-button { + font-size: 20px; + min-width: 150px; + } +} + + + +/* create button */ + +/* CSS */ +.home-button-create { + background-color: initial; + background-image: linear-gradient(-180deg, #4f03e6, #4f03e6); + border-radius: 6px; + box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px; + color: #FFFFFF; + cursor: pointer; + display: inline-block; + font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif; + height: 40px; + line-height: 40px; + outline: 0; + overflow: hidden; + padding: 0 20px; + pointer-events: auto; + position: relative; + text-align: center; + touch-action: manipulation; + user-select: none; + -webkit-user-select: none; + vertical-align: top; + white-space: nowrap; + width: 100%; + z-index: 9; + border: 0; + transition: box-shadow .2s; + margin-top: 10px; +} + +.home-button-create:hover { + box-shadow: rgba(0, 198, 253, 0.5) 0 3px 8px; +} \ No newline at end of file diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index a53698aa..4dd1d94f 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,24 +1,15 @@ import React from 'react'; -import logo from './logo.svg'; + import './App.css'; +import { Route, Routes } from 'react-router-dom'; +import Home from './pages/Home'; function App() { return ( -
-
- logo -

- Edit src/App.tsx and save to reload. -

- - Learn React - -
+
+ + } /> +
); } diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 032464fb..92729dcd 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -3,14 +3,17 @@ import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; - +import 'semantic-ui-css/semantic.min.css' +import {BrowserRouter} from 'react-router-dom' const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( - - + + + +, ); // If you want to start measuring performance in your app, pass a function diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx new file mode 100644 index 00000000..8217b1d8 --- /dev/null +++ b/frontend/src/pages/Home.tsx @@ -0,0 +1,10 @@ +const Home = () => { + return ( +
+

Welcome to Beers

+ + +
+ ) +} +export default Home; \ No newline at end of file From 9210811ed4c6032aac34d39ed5ccf84669c6a71b Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:27:28 -0300 Subject: [PATCH 10/16] Front: Create form page --- frontend/src/App.tsx | 4 +- frontend/src/pages/create.tsx | 111 ++++++++++++++++++++++++++++++++++ 2 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 frontend/src/pages/create.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 4dd1d94f..58ab0d48 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3,12 +3,14 @@ import React from 'react'; import './App.css'; import { Route, Routes } from 'react-router-dom'; import Home from './pages/Home'; +import Create from './pages/create'; function App() { return (
- } /> + } /> + } />
); diff --git a/frontend/src/pages/create.tsx b/frontend/src/pages/create.tsx new file mode 100644 index 00000000..cfda9a1a --- /dev/null +++ b/frontend/src/pages/create.tsx @@ -0,0 +1,111 @@ +import React, { useState} from 'react' +import { Link } from 'react-router-dom'; + +import { Button, Form } from 'semantic-ui-react' + +const Create = () => { + const [abv, setAbv] = useState(0.0); + const [address, setAddres] = useState(''); + const [category, setCategory] = useState(''); + const [webSite, setWebSite] = useState(''); + const [city, setCity] = useState(''); + const [cordinateX, setCordinateX] = useState(0.0); + const [cordinateY, setCordinateY] = useState(0.0); + const [country, setCountry] = useState(''); + const [description, setDescription] = useState(''); + const [ibu, setIbu] = useState(0); + const [name, setName] = useState(''); + const [state, setState] = useState(''); + + const postData = () => { + let body = { + abv: abv, + address: address, + category: category, + webSite: webSite, + city: city, + coordinates: [cordinateX, cordinateY], + country: country, + description: description, + ibu: ibu, + name: name, + state: state + } + fetch("http://localhost:5000/api/v1/beer", {method: "POST", body: JSON.stringify(body)}).then(res =>res.json().then(r => r)) + } + return ( + <>
+

+ Beer form +

+
+
+ + + setAbv(parseFloat(e.target.value))} /> + + + + setAddres(e.target.value)} /> + +
+
+ + + setCategory(e.target.value)} /> + + + + setCity(e.target.value)} /> + +
+ +
+ + + setCordinateX(parseFloat(e.target.value))} /> + + + + setCordinateY(parseFloat(e.target.value))} /> + +
+
+ + + setCountry(e.target.value)} /> + + + + setDescription(e.target.value)} /> + +
+
+ + + setIbu(parseInt(e.target.value))} /> + + + + setName(e.target.value)} /> + +
+
+ + + setState(e.target.value)} /> + + + + setWebSite(e.target.value)} /> + +
+
+ SUBMIT + +
+
+ ) +} + +export default Create; \ No newline at end of file From e2397de82f05155b5b2c8548f4ebf0b9479c3681 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:30:02 -0300 Subject: [PATCH 11/16] Front: Create page to list all beers --- frontend/src/App.tsx | 2 + frontend/src/interfaces/IBeer.ts | 16 +++++++ frontend/src/pages/create.tsx | 2 +- frontend/src/pages/list.tsx | 77 ++++++++++++++++++++++++++++++++ 4 files changed, 96 insertions(+), 1 deletion(-) create mode 100644 frontend/src/interfaces/IBeer.ts create mode 100644 frontend/src/pages/list.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 58ab0d48..e93cf002 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4,6 +4,7 @@ import './App.css'; import { Route, Routes } from 'react-router-dom'; import Home from './pages/Home'; import Create from './pages/create'; +import List from './pages/list'; function App() { return ( @@ -11,6 +12,7 @@ function App() { } /> } /> + } />
); diff --git a/frontend/src/interfaces/IBeer.ts b/frontend/src/interfaces/IBeer.ts new file mode 100644 index 00000000..032f995d --- /dev/null +++ b/frontend/src/interfaces/IBeer.ts @@ -0,0 +1,16 @@ +export interface IBeer { + ID: number + abv: number + address: string + category: string + city: string + coordinates: number[] + country: string + description: string + ibu: number + name: string + state: string + website: string +} + +export default IBeer \ No newline at end of file diff --git a/frontend/src/pages/create.tsx b/frontend/src/pages/create.tsx index cfda9a1a..ba33a295 100644 --- a/frontend/src/pages/create.tsx +++ b/frontend/src/pages/create.tsx @@ -1,7 +1,7 @@ import React, { useState} from 'react' import { Link } from 'react-router-dom'; -import { Button, Form } from 'semantic-ui-react' +import { Form } from 'semantic-ui-react' const Create = () => { const [abv, setAbv] = useState(0.0); diff --git a/frontend/src/pages/list.tsx b/frontend/src/pages/list.tsx new file mode 100644 index 00000000..a0c2ec46 --- /dev/null +++ b/frontend/src/pages/list.tsx @@ -0,0 +1,77 @@ +import React, {useState, useEffect} from "react" +import {Pagination, Table} from "semantic-ui-react" +import IBeer from "../interfaces/IBeer" + + +const List = () => { + const [data, setData] = useState([]) + const [activePage, setActivePage] = useState(1) + const [apiUrl, setApiUrl] = useState("http://localhost:5000/api/v1/beers?page=1&page_size=10") + const [length, setLength] = useState(0) + + useEffect(() => { + fetch("http://localhost:5000/api/v1/beer").then((res) => res.json().then((r) => setLength(r.length))) + }, []) + useEffect(() => { + fetch(apiUrl).then((response) => { + response.json().then((r) => setData(r)) + }) + }, [apiUrl]) + + const onChange = (e: any, pageInfo: any) => { + setActivePage(pageInfo.activePage) + fetch("http://localhost:5000/api/v1/beers?page=" + pageInfo.activePage.toString() + "&page_size=10").then((res) => + res.json().then((r) => setData(r)), + ) + } + const moreDetailsRedirect = (id: number) => "/read/" + id + return ( +
+ + + + + Name + Category + Address + City + State + Country + Website + Details + + + + + {data?.map((beer: IBeer) => ( + + {beer.name} + {beer.category} + {beer.address} + {beer.city} + {beer.state} + {beer.country} + + {beer.website} + + + + More details + + + + ))} + +
+ + +
+ ) +} + +export default List From d219471d91c3d0efe68a6fbfd3afc4a60a0e5ddd Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:32:02 -0300 Subject: [PATCH 12/16] Front: Create read beer page --- frontend/src/App.tsx | 5 +- frontend/src/actions/delete.ts | 7 +++ frontend/src/pages/read.tsx | 87 ++++++++++++++++++++++++++++++++++ 3 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 frontend/src/actions/delete.ts create mode 100644 frontend/src/pages/read.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e93cf002..e2817a59 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -5,6 +5,7 @@ import { Route, Routes } from 'react-router-dom'; import Home from './pages/Home'; import Create from './pages/create'; import List from './pages/list'; +import Read from './pages/read'; function App() { return ( @@ -12,7 +13,9 @@ function App() { } /> } /> - } /> + } /> + } /> + ); diff --git a/frontend/src/actions/delete.ts b/frontend/src/actions/delete.ts new file mode 100644 index 00000000..9a287de5 --- /dev/null +++ b/frontend/src/actions/delete.ts @@ -0,0 +1,7 @@ +; + +const DeleteBeer = async (id: number | undefined) => { + await fetch("http://localhost:5000/api/v1/beer/" + id, { method: "DELETE" }).then(res => res.json().then(r => (r))) +} + +export default DeleteBeer; \ No newline at end of file diff --git a/frontend/src/pages/read.tsx b/frontend/src/pages/read.tsx new file mode 100644 index 00000000..0bfc6282 --- /dev/null +++ b/frontend/src/pages/read.tsx @@ -0,0 +1,87 @@ +import React, {useState, useEffect} from "react" +import {Link, useParams} from "react-router-dom" +import {Table} from "semantic-ui-react" +import DeleteBeer from "../actions/delete" + +import IBeer from "../interfaces/IBeer" +const Read = () => { + let {id} = useParams() + let [beer, setBeer] = useState() + useEffect(() => { + fetch("http://localhost:5000/api/v1/beer/" + id).then((res) => res.json().then((r) => setBeer(r))) + }, [id]) + + const setData = (data: any) => { + let {ID, abv, address, category, city, coordinates, country, description, ibu, name, state, website} = data + localStorage.setItem("ID", ID) + localStorage.setItem("Abv", abv) + localStorage.setItem("Address", address) + localStorage.setItem("Category", category) + localStorage.setItem("City", city) + localStorage.setItem("CoordinatesX", coordinates[0]) + localStorage.setItem("CoordinatesY", coordinates[1]) + + localStorage.setItem("Country", country) + + localStorage.setItem("Description", description) + + localStorage.setItem("Ibu", ibu) + + localStorage.setItem("Name", name) + + localStorage.setItem("State", state) + + localStorage.setItem("Website", website) + } + + return ( +
+ + Name + Category + Address + City + State + Coordinates + + Country + Description + ABV + Ibu + Website + + + {beer?.name} + + {beer?.category} + {beer?.address} + {beer?.city} + {beer?.state} + + {beer?.coordinates[0]} ; {beer?.coordinates[1]} + + {beer?.country} + {beer?.description} + {beer?.abv} + {beer?.ibu} + + {beer?.website} + + + +
+ + DeleteBeer(beer?.ID)}> + DELETE + + setData(beer)}> + UPDATE + + + BACK + +
+ ) +} + +export default Read From 72445c0eb7e95ab2a21955ebd9d054293fa52089 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:43:56 -0300 Subject: [PATCH 13/16] Front: Update page --- backend/utils/paginate/paginate.go | 2 - frontend/src/App.tsx | 4 +- frontend/src/actions/update.ts | 33 +++++++ frontend/src/pages/list.tsx | 2 +- frontend/src/pages/read.tsx | 2 +- frontend/src/pages/update.tsx | 152 +++++++++++++++++++++++++++++ 6 files changed, 190 insertions(+), 5 deletions(-) create mode 100644 frontend/src/actions/update.ts create mode 100644 frontend/src/pages/update.tsx diff --git a/backend/utils/paginate/paginate.go b/backend/utils/paginate/paginate.go index d9d097df..bfd2d4c0 100644 --- a/backend/utils/paginate/paginate.go +++ b/backend/utils/paginate/paginate.go @@ -1,7 +1,6 @@ package paginate import ( - "fmt" "strconv" "github.com/gin-gonic/gin" @@ -24,7 +23,6 @@ func Paginate(c *gin.Context) func(db *gorm.DB) *gorm.DB { } offset := (page - 1) * pageSize - fmt.Println(offset) return db.Offset(offset).Limit(pageSize) } } diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e2817a59..efbd255b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -6,6 +6,7 @@ import Home from './pages/Home'; import Create from './pages/create'; import List from './pages/list'; import Read from './pages/read'; +import Update from './pages/update'; function App() { return ( @@ -15,7 +16,8 @@ function App() { } /> } /> } /> - + } /> + ); diff --git a/frontend/src/actions/update.ts b/frontend/src/actions/update.ts new file mode 100644 index 00000000..90fa6eba --- /dev/null +++ b/frontend/src/actions/update.ts @@ -0,0 +1,33 @@ +const UpdateBeer = ( + id: number | undefined, + abv: number, + address: string | null, + category: string | null, + city: string | null, + coordinatesX: number, + coordinatesY: number, + country: string | null, + description: string | null, + ibu: number, + name: string | null, + state: string | null, + website: string | null, + ) => { + let body = { + abv: abv, + address: address, + category: category, + webSite: website, + city: city, + coordinates: [coordinatesX, coordinatesY], + country: country, + description: description, + ibu: ibu, + name: name, + state: state + } + fetch("http://localhost:5000/api/v1/beer/" +id, {method: "PUT", body: JSON.stringify(body)}).then(res => res.json().then(r => console.log(r))) + } + + export default UpdateBeer + \ No newline at end of file diff --git a/frontend/src/pages/list.tsx b/frontend/src/pages/list.tsx index a0c2ec46..4572e4ee 100644 --- a/frontend/src/pages/list.tsx +++ b/frontend/src/pages/list.tsx @@ -67,7 +67,7 @@ const List = () => { diff --git a/frontend/src/pages/read.tsx b/frontend/src/pages/read.tsx index 0bfc6282..b8f9360a 100644 --- a/frontend/src/pages/read.tsx +++ b/frontend/src/pages/read.tsx @@ -71,7 +71,7 @@ const Read = () => { - DeleteBeer(beer?.ID)}> + DeleteBeer(beer?.ID)}> DELETE setData(beer)}> diff --git a/frontend/src/pages/update.tsx b/frontend/src/pages/update.tsx new file mode 100644 index 00000000..f5c1d683 --- /dev/null +++ b/frontend/src/pages/update.tsx @@ -0,0 +1,152 @@ +import React, {useState, useEffect} from "react" +import {useParams} from "react-router-dom" +import {Button, Form} from "semantic-ui-react" +import UpdateBeer from "../actions/update" +import {Link} from "react-router-dom" +const Update = () => { + let {id} = useParams() + + const [abv, setAbv] = useState(0.0) + const [address, setAddres] = useState("") + const [category, setCategory] = useState("") + const [webSite, setWebSite] = useState("") + const [city, setCity] = useState("") + const [coordinateX, setCoordinateX] = useState(0.0) + const [coordinateY, setCoordinateY] = useState(0.0) + const [country, setCountry] = useState("") + const [description, setDescription] = useState("") + const [ibu, setIbu] = useState(0) + const [name, setName] = useState("") + const [state, setState] = useState("") + + useEffect(() => { + setAbv(parseFloat(localStorage.getItem("Abv")!)) + setAddres(localStorage.getItem("Address")) + setCategory(localStorage.getItem("Category")) + setCountry(localStorage.getItem("City")) + setCoordinateX(parseFloat(localStorage.getItem("CoordinatesX")!)) + setCoordinateY(parseFloat(localStorage.getItem("CoordinatesY")!)) + setCity(localStorage.getItem("Country")) + + setDescription(localStorage.getItem("Description")) + + setIbu(parseInt(localStorage.getItem("Ibu")!)) + setName(localStorage.getItem("Name")) + + setState(localStorage.getItem("State")) + + setWebSite(localStorage.getItem("Website")) + }, []) + + return ( + <> +
+

Update Beer form

+
+
+
+ + + setAbv(parseFloat(e.target.value))} /> + + + + setAddres(e.target.value)} /> + +
+
+ + + setCategory(e.target.value)} /> + + + + setCity(e.target.value)} /> + +
+ +
+ + + setCoordinateX(parseFloat(e.target.value))} + /> + + + + setCoordinateY(parseFloat(e.target.value))} + /> + +
+
+ + + setCountry(e.target.value)} /> + + + + setDescription(e.target.value)} /> + +
+
+ + + setIbu(parseInt(e.target.value))} /> + + + + setName(e.target.value)} /> + +
+
+ + + setState(e.target.value)} /> + + + + setWebSite(e.target.value)} /> + +
+
+ + UpdateBeer( + parseInt(id!), + abv, + address, + category, + city, + coordinateX, + coordinateY, + country, + description, + ibu, + name, + state, + webSite, + ) + } + type="submit" + > + UPDATE + + + BACK + +
+
+ + ) +} + +export default Update From d3357c6f7843a772a4559043172d8738e335ae02 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:56:38 -0300 Subject: [PATCH 14/16] Front --- frontend/Dockerfile | 11 +++++++++++ frontend/src/actions/update.ts | 2 +- frontend/src/pages/update.tsx | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 frontend/Dockerfile diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 00000000..8226fee0 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,11 @@ +FROM node:18.10.0-slim + +WORKDIR /app + +COPY . . + +RUN npm ci + +EXPOSE 3000 + +CMD ["npm", "start"] \ No newline at end of file diff --git a/frontend/src/actions/update.ts b/frontend/src/actions/update.ts index 90fa6eba..7d26e714 100644 --- a/frontend/src/actions/update.ts +++ b/frontend/src/actions/update.ts @@ -26,7 +26,7 @@ const UpdateBeer = ( name: name, state: state } - fetch("http://localhost:5000/api/v1/beer/" +id, {method: "PUT", body: JSON.stringify(body)}).then(res => res.json().then(r => console.log(r))) + fetch("http://localhost:5000/api/v1/beer/" +id, {method: "PUT", body: JSON.stringify(body)}).then(res => res.json().then(r => r)) } export default UpdateBeer diff --git a/frontend/src/pages/update.tsx b/frontend/src/pages/update.tsx index f5c1d683..f765c623 100644 --- a/frontend/src/pages/update.tsx +++ b/frontend/src/pages/update.tsx @@ -1,6 +1,6 @@ import React, {useState, useEffect} from "react" import {useParams} from "react-router-dom" -import {Button, Form} from "semantic-ui-react" +import { Form} from "semantic-ui-react" import UpdateBeer from "../actions/update" import {Link} from "react-router-dom" const Update = () => { From a01500dfc2b3d6dcd77cb534cf2aa00cf0cd23b8 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Fri, 10 Feb 2023 23:57:05 -0300 Subject: [PATCH 15/16] Implement docker --- backend/docker-compose.yml => docker-compose.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) rename backend/docker-compose.yml => docker-compose.yml (84%) diff --git a/backend/docker-compose.yml b/docker-compose.yml similarity index 84% rename from backend/docker-compose.yml rename to docker-compose.yml index 8eaef7bc..1123ff54 100644 --- a/backend/docker-compose.yml +++ b/docker-compose.yml @@ -5,12 +5,19 @@ services: restart: on-failure depends_on: - fullstack-postgres - build: . + build: ./backend ports: - "5000:5000" networks: - fullstack - + + front: + build: ./frontend + depends_on: + - app + ports: + - "3000:3000" + fullstack-postgres: image: postgres:latest container_name: full_db_postgres From 0f6dac12b7c4e5fc80490ef085b6bb7302aaa8e3 Mon Sep 17 00:00:00 2001 From: Gabriel Morelli Date: Sat, 11 Feb 2023 00:40:37 -0300 Subject: [PATCH 16/16] Adding postman collection --- backend/Beers API.postman_collection.json | 146 ++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 backend/Beers API.postman_collection.json diff --git a/backend/Beers API.postman_collection.json b/backend/Beers API.postman_collection.json new file mode 100644 index 00000000..912c1144 --- /dev/null +++ b/backend/Beers API.postman_collection.json @@ -0,0 +1,146 @@ +{ + "info": { + "_postman_id": "a78ce2b3-3a22-46f0-b815-b45536581268", + "name": "Beers API", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "12536647" + }, + "item": [ + { + "name": "Get All Beers", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "http://localhost:5000/api/v1/beer/", + "protocol": "http", + "host": [ + "localhost" + ], + "port": "5000", + "path": [ + "api", + "v1", + "beer", + "" + ] + } + }, + "response": [] + }, + { + "name": "Get All Bears with paginate", + "request": { + "method": "GET", + "header": [], + "url": { + "raw": "http://localhost:5000/api/v1/beers?page=1&page_size=10", + "protocol": "http", + "host": [ + "localhost" + ], + "port": "5000", + "path": [ + "api", + "v1", + "beers" + ], + "query": [ + { + "key": "page", + "value": "1" + }, + { + "key": "page_size", + "value": "10" + } + ] + } + }, + "response": [] + }, + { + "name": "Insert a new beer", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\r\n \"abv\": 8.4,\r\n \"address\": \"141 South Main Street\",\r\n \"category\": \"British Alexandre\",\r\n \"city\": \"Slippery Rock 2\",\r\n \"coordinates\": [\r\n 41.0638,\r\n -80.0556\r\n ],\r\n \"country\": \"United States\",\r\n \"description\": \"This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish.\",\r\n \"ibu\": 104,\r\n \"name\": \"Stone House Stout\",\r\n \"state\": \"Pennsylvania\",\r\n \"website\": \"http://www.northcountrybrewing.com\"\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "http://localhost:5000/api/v1/beer", + "protocol": "http", + "host": [ + "localhost" + ], + "port": "5000", + "path": [ + "api", + "v1", + "beer" + ] + } + }, + "response": [] + }, + { + "name": "Update a beer", + "request": { + "method": "PUT", + "header": [], + "body": { + "mode": "raw", + "raw": "{\r\n \"abv\": 8.4,\r\n \"address\": \"141 South Main Street\",\r\n \"category\": \"British Alexandre\",\r\n \"city\": \"Slippery Rock 2\",\r\n \"coordinates\": [\r\n 41.0638,\r\n -80.0556\r\n ],\r\n \"country\": \"United States\",\r\n \"description\": \"This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish.\",\r\n \"ibu\": 104,\r\n \"name\": \"Stone House Stout\",\r\n \"state\": \"Pennsylvania\",\r\n \"website\": \"http://www.northcountrybrewing.com\"\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "http://localhost:5000/api/v1/beer/19", + "protocol": "http", + "host": [ + "localhost" + ], + "port": "5000", + "path": [ + "api", + "v1", + "beer", + "19" + ] + } + }, + "response": [] + }, + { + "name": "Delete a beer", + "request": { + "method": "DELETE", + "header": [], + "url": { + "raw": "http://localhost:5000/api/v1/beer/20", + "protocol": "http", + "host": [ + "localhost" + ], + "port": "5000", + "path": [ + "api", + "v1", + "beer", + "20" + ] + } + }, + "response": [] + } + ] +} \ No newline at end of file